Add MUR currency
This commit is contained in:
parent
500354c008
commit
48c516ee4f
2 changed files with 2 additions and 0 deletions
|
|
@ -96,6 +96,7 @@ class CurrenciesSeeder extends Seeder
|
|||
['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
|
||||
['name' => 'Mauritian Rupee', 'code' => 'MUR', 'symbol' => 'Rs', 'precision' => '2', 'thousand_separator' => ',', 'decimal_separator' => '.'],
|
||||
];
|
||||
|
||||
foreach ($currencies as $currency) {
|
||||
|
|
|
|||
|
|
@ -2448,6 +2448,7 @@ $LANG = array(
|
|||
'currency_zambian_kwacha' => 'Zambian Kwacha',
|
||||
'currency_nepalese_rupee' => 'Nepalese Rupee',
|
||||
'currency_cfp_franc' => 'CFP Franc',
|
||||
'currency_mauritian_rupee' => 'Mauritian Rupee',
|
||||
|
||||
'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