mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
Added seed data for Japanese
This commit is contained in:
parent
83e60c7188
commit
c736694860
@ -108,6 +108,10 @@ class CountriesSeeder extends Seeder {
|
||||
'swap_postal_code' => true,
|
||||
'swap_currency_symbol' => true,
|
||||
],
|
||||
'JP' => [ // Japan
|
||||
'swap_postal_code' => true,
|
||||
'swap_currency_symbol' => true,
|
||||
],
|
||||
'LT' => [ // Lithuania
|
||||
'swap_currency_symbol' => true,
|
||||
],
|
||||
|
@ -51,6 +51,7 @@ class CurrenciesSeeder extends Seeder
|
||||
['name' => 'Aruban Florin', 'code' => 'AWG', 'symbol' => 'Afl. ', 'precision' => '2', 'thousand_separator' => ' ', 'decimal_separator' => '.'],
|
||||
['name' => 'Turkish Lira', 'code' => 'TRY', 'symbol' => 'TL ', 'precision' => '2', 'thousand_separator' => '.', 'decimal_separator' => ','],
|
||||
['name' => 'Romanian New Leu', 'code' => 'RON', 'symbol' => '', 'precision' => '2', 'thousand_separator' => ',', 'decimal_separator' => '.'],
|
||||
['name' => 'Japanese Yen', 'code' => 'JPY', 'symbol' => '¥', 'precision' => '0', 'thousand_separator' => ',', 'decimal_separator' => '.'],
|
||||
];
|
||||
|
||||
foreach ($currencies as $currency) {
|
||||
|
Loading…
Reference in New Issue
Block a user