mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 04:01:10 -04:00
Merge branch 'master' of https://github.com/bytefury/crater
This commit is contained in:
@ -43,6 +43,7 @@ return [
|
|||||||
["code" => "ja", "name" => "Japanese"],
|
["code" => "ja", "name" => "Japanese"],
|
||||||
["code" => "it", "name" => "Italian"],
|
["code" => "it", "name" => "Italian"],
|
||||||
["code" => "lv", "name" => "Latvian"],
|
["code" => "lv", "name" => "Latvian"],
|
||||||
|
["code" => "pl", "name" => "Polish"],
|
||||||
["code" => "pt_BR", "name" => "Portuguese (Brazilian)"],
|
["code" => "pt_BR", "name" => "Portuguese (Brazilian)"],
|
||||||
["code" => "sr", "name" => "Serbian Latin"],
|
["code" => "sr", "name" => "Serbian Latin"],
|
||||||
["code" => "ko", "name" => "Korean"],
|
["code" => "ko", "name" => "Korean"],
|
||||||
|
|||||||
@ -117,7 +117,7 @@ return [
|
|||||||
*
|
*
|
||||||
* @link http://www.pdflib.com
|
* @link http://www.pdflib.com
|
||||||
*
|
*
|
||||||
* If pdflib present in web server and auto or selected explicitely above,
|
* If pdflib present in web server and auto or selected explicitly above,
|
||||||
* a real license code must exist!
|
* a real license code must exist!
|
||||||
*/
|
*/
|
||||||
//"DOMPDF_PDFLIB_LICENSE" => "your license key here",
|
//"DOMPDF_PDFLIB_LICENSE" => "your license key here",
|
||||||
@ -155,7 +155,7 @@ return [
|
|||||||
* Image DPI setting
|
* Image DPI setting
|
||||||
*
|
*
|
||||||
* This setting determines the default DPI setting for images and fonts. The
|
* This setting determines the default DPI setting for images and fonts. The
|
||||||
* DPI may be overridden for inline images by explictly setting the
|
* DPI may be overridden for inline images by explicitly setting the
|
||||||
* image's width & height style attributes (i.e. if the image's native
|
* image's width & height style attributes (i.e. if the image's native
|
||||||
* width is 600 pixels and you specify the image's width as 72 points,
|
* width is 600 pixels and you specify the image's width as 72 points,
|
||||||
* the image will have a DPI of 600 in the rendered PDF. The DPI of
|
* the image will have a DPI of 600 in the rendered PDF. The DPI of
|
||||||
|
|||||||
@ -39,7 +39,7 @@ return [
|
|||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
|
||||||
| This is the default Laravel folders permissions, if your application
|
| This is the default Laravel folders permissions, if your application
|
||||||
| requires more permissions just add them to the array list bellow.
|
| requires more permissions just add them to the array list below.
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
'permissions' => [
|
'permissions' => [
|
||||||
|
|||||||
@ -439,7 +439,7 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
/**
|
/**
|
||||||
* Returns the internalValue in a way it can be emited to the parent
|
* Returns the internalValue in a way it can be emitted to the parent
|
||||||
* @returns {Object||Array||String||Integer}
|
* @returns {Object||Array||String||Integer}
|
||||||
*/
|
*/
|
||||||
getValue() {
|
getValue() {
|
||||||
|
|||||||
@ -6,6 +6,7 @@ import es from './es.json'
|
|||||||
import ar from './ar.json'
|
import ar from './ar.json'
|
||||||
import de from './de.json'
|
import de from './de.json'
|
||||||
import ja from './ja.json'
|
import ja from './ja.json'
|
||||||
|
import pl from './pl.json'
|
||||||
import pt_BR from './pt-br.json'
|
import pt_BR from './pt-br.json'
|
||||||
import pt from './pt.json'
|
import pt from './pt.json'
|
||||||
import it from './it.json'
|
import it from './it.json'
|
||||||
@ -29,6 +30,7 @@ const i18n = new VueI18n({
|
|||||||
ar,
|
ar,
|
||||||
de,
|
de,
|
||||||
ja,
|
ja,
|
||||||
|
pl,
|
||||||
pt_BR,
|
pt_BR,
|
||||||
pt,
|
pt,
|
||||||
it,
|
it,
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -20,7 +20,7 @@ import Register from './views/auth/Register.vue'
|
|||||||
|
|
||||||
import NotFoundPage from './views/errors/404.vue'
|
import NotFoundPage from './views/errors/404.vue'
|
||||||
|
|
||||||
// Dashbord
|
// Dashboard
|
||||||
import Dashboard from './views/dashboard/Dashboard.vue'
|
import Dashboard from './views/dashboard/Dashboard.vue'
|
||||||
|
|
||||||
// Customers
|
// Customers
|
||||||
|
|||||||
Reference in New Issue
Block a user