From 95f49c25534ce08148c729e901c30390369e3189 Mon Sep 17 00:00:00 2001 From: tctlrd <135671403+tctlrd@users.noreply.github.com> Date: Mon, 7 Aug 2023 18:58:51 -0500 Subject: [PATCH 1/2] Update CurrenciesSeeder.php Added two missing currencies. --- database/seeders/CurrenciesSeeder.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/database/seeders/CurrenciesSeeder.php b/database/seeders/CurrenciesSeeder.php index 49ecce7e9d43..65778f979b29 100644 --- a/database/seeders/CurrenciesSeeder.php +++ b/database/seeders/CurrenciesSeeder.php @@ -138,6 +138,8 @@ class CurrenciesSeeder extends Seeder ['id' => 113, 'name' => 'Swazi lilangeni', 'code' => 'SZL', 'symbol' => 'E', 'precision' => '2', 'thousand_separator' => ',', 'decimal_separator' => '.'], ['id' => 114, 'name' => 'BZ Dollar', 'code' => 'BZD', 'symbol' => '$', 'precision' => '2', 'thousand_separator' => ',', 'decimal_separator' => '.'], ['id' => 115, 'name' => 'Libyan Dinar', 'code' => 'LYD', 'symbol' => 'LD', 'precision' => '3', 'thousand_separator' => ',', 'decimal_separator' => '.'], + ['id' => 116, 'name' => 'Silver Troy Ounce', 'code' => 'XAG', 'symbol' => 'XAG', 'precision' => '2', 'thousand_separator' => ',', 'decimal_separator' => '.'], + ['id' => 117, 'name' => 'Gold Troy Ounce', 'code' => 'XAU', 'symbol' => 'XAU', 'precision' => '3', 'thousand_separator' => ',', 'decimal_separator' => '.'], ]; foreach ($currencies as $currency) { From 3d398ed9614267ad3b5382a9df001968117438cc Mon Sep 17 00:00:00 2001 From: tctlrd <135671403+tctlrd@users.noreply.github.com> Date: Mon, 7 Aug 2023 19:00:13 -0500 Subject: [PATCH 2/2] Update texts.php Added three missing currencies. --- lang/en/texts.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lang/en/texts.php b/lang/en/texts.php index fefb47bf3eb6..86a154fe67bb 100644 --- a/lang/en/texts.php +++ b/lang/en/texts.php @@ -2404,6 +2404,9 @@ $LANG = array( 'currency_cuban_peso' => 'Cuban Peso', 'currency_bz_dollar' => 'BZ Dollar', + 'currency_libyan_dinar' = 'Libyan Dinar', + 'currency_silver_troy_ounce' => 'Silver Troy Ounce', + 'currency_gold_troy_ounce' => 'Gold Troy Ounce', 'review_app_help' => 'We hope you\'re enjoying using the app.
If you\'d consider :link we\'d greatly appreciate it!', 'writing_a_review' => 'writing a review', @@ -5144,4 +5147,4 @@ $LANG = array( return $LANG; -?> \ No newline at end of file +?>