Added XPF currency
This commit is contained in:
parent
8641fc5b56
commit
74d5e4137a
2 changed files with 2 additions and 0 deletions
|
|
@ -95,6 +95,7 @@ class CurrenciesSeeder extends Seeder
|
|||
['name' => 'Haitian Gourde', 'code' => 'HTG', 'symbol' => 'G', 'precision' => '2', 'thousand_separator' => ',', 'decimal_separator' => '.'],
|
||||
['name' => 'Zambian Kwacha', 'code' => 'ZMW', 'symbol' => 'ZK', 'precision' => '2', 'thousand_separator' => ',', 'decimal_separator' => '.'],
|
||||
['name' => 'Nepalese Rupee', 'code' => 'NPR', 'symbol' => 'Rs. ', 'precision' => '2', 'thousand_separator' => ',', 'decimal_separator' => '.'],
|
||||
['name' => 'CFP Franc', 'code' => 'XPF', 'symbol' => '', 'precision' => '2', 'thousand_separator' => ',', 'decimal_separator' => '.'], // precision should be zero
|
||||
];
|
||||
|
||||
foreach ($currencies as $currency) {
|
||||
|
|
|
|||
|
|
@ -2447,6 +2447,7 @@ $LANG = array(
|
|||
'currency_haitian_gourde' => 'Haitian Gourde',
|
||||
'currency_zambian_kwacha' => 'Zambian Kwacha',
|
||||
'currency_nepalese_rupee' => 'Nepalese Rupee',
|
||||
'currency_cfp_franc' => 'CFP Franc',
|
||||
|
||||
'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