Add currency
This commit is contained in:
parent
80c1d589da
commit
6a5dcbd60e
2 changed files with 3 additions and 1 deletions
|
|
@ -91,6 +91,7 @@ class CurrenciesSeeder extends Seeder
|
|||
['name' => 'South Korean Won', 'code' => 'KRW', 'symbol' => 'W ', 'precision' => '2', 'thousand_separator' => '.', 'decimal_separator' => ','],
|
||||
['name' => 'Moroccan Dirham', 'code' => 'MAD', 'symbol' => 'MAD ', 'precision' => '2', 'thousand_separator' => ',', 'decimal_separator' => '.'],
|
||||
['name' => 'Jamaican Dollar', 'code' => 'JMD', 'symbol' => '$', 'precision' => '2', 'thousand_separator' => ',', 'decimal_separator' => '.'],
|
||||
['name' => 'Angolan Kwanza', 'code' => 'AOA', 'symbol' => 'Kz', 'precision' => '2', 'thousand_separator' => '.', 'decimal_separator' => ','],
|
||||
];
|
||||
|
||||
foreach ($currencies as $currency) {
|
||||
|
|
|
|||
|
|
@ -2441,7 +2441,8 @@ $LANG = array(
|
|||
'currency_venezuelan_bolivars' => 'Venezuelan Bolivars',
|
||||
'currency_south_korean_won' => 'South Korean Won',
|
||||
'currency_moroccan_dirham' => 'Moroccan Dirham',
|
||||
'currency_jamaican_Dollar' => 'Jamaican Dollar',
|
||||
'currency_jamaican_dollar' => 'Jamaican Dollar',
|
||||
'currency_angolan_kwanza' => 'Angolan Kwanza',
|
||||
|
||||
'review_app_help' => 'We hope you\'re enjoying using the app.<br/>If you\'d consider :link we\'d greatly appreciate it!',
|
||||
'writing_a_review' => 'writing a review',
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue