diff --git a/database/seeds/CurrenciesSeeder.php b/database/seeds/CurrenciesSeeder.php index 4bb806306ae2..f9e64c49352a 100644 --- a/database/seeds/CurrenciesSeeder.php +++ b/database/seeds/CurrenciesSeeder.php @@ -80,6 +80,7 @@ class CurrenciesSeeder extends Seeder ['name' => 'Botswana Pula', 'code' => 'BWP', 'symbol' => 'P', 'precision' => '2', 'thousand_separator' => ',', 'decimal_separator' => '.'], ['name' => 'Hungarian Forint', 'code' => 'HUF', 'symbol' => 'Ft', 'precision' => '0', 'thousand_separator' => '.', 'decimal_separator' => ',', 'swap_currency_symbol' => true], ['name' => 'Ugandan Shilling', 'code' => 'UGX', 'symbol' => 'USh ', 'precision' => '2', 'thousand_separator' => ',', 'decimal_separator' => '.'], + ['name' => 'Barbadian Dollar', 'code' => 'BBD', 'symbol' => '$', 'precision' => '2', 'thousand_separator' => ',', 'decimal_separator' => '.'], ]; foreach ($currencies as $currency) { diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index cdfb83b9c3b0..0f7a3837a4d5 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -2407,6 +2407,7 @@ $LANG = array( 'currency_botswana_pula' => 'Botswana Pula', 'currency_hungarian_forint' => 'Hungarian Forint', 'currency_ugandan_shilling' => 'Ugandan Shilling', + 'currency_barbadian_dollar' => 'Barbadian Dollar', 'review_app_help' => 'We hope you\'re enjoying using the app.
If you\'d consider writing a review we\'d greatly appreciate it!', 'use_english_version' => 'Make sure to use the English version of the files.
We use the column headers to match the fields.',