From 568186828c86106cda35e17cf532d074329f85c0 Mon Sep 17 00:00:00 2001 From: Antonio Spinelli Date: Thu, 28 Apr 2016 14:40:59 -0300 Subject: [PATCH] add brazilian currency and translation fix #257 --- config/firefly.php | 2 +- database/seeds/TransactionCurrencySeeder.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/config/firefly.php b/config/firefly.php index 076e3396b7..393aa77c39 100644 --- a/config/firefly.php +++ b/config/firefly.php @@ -111,7 +111,7 @@ return [ 'languages' => [ 'en_US' => ['name_locale' => 'English', 'name_english' => 'English', 'complete' => true], 'nl_NL' => ['name_locale' => 'Nederlands', 'name_english' => 'Dutch', 'complete' => true], - 'pt_BR' => ['name_locale' => 'Português do Brasil', 'name_english' => 'Portugese (Brazil)', 'complete' => false], + 'pt_BR' => ['name_locale' => 'Português do Brasil', 'name_english' => 'Portuguese (Brazil)', 'complete' => true], 'fr_FR' => ['name_locale' => 'Français', 'name_english' => 'French', 'complete' => false], ], 'lang' => [ diff --git a/database/seeds/TransactionCurrencySeeder.php b/database/seeds/TransactionCurrencySeeder.php index 7b7486ce12..9260312c18 100644 --- a/database/seeds/TransactionCurrencySeeder.php +++ b/database/seeds/TransactionCurrencySeeder.php @@ -15,6 +15,7 @@ class TransactionCurrencySeeder extends Seeder TransactionCurrency::create(['code' => 'EUR', 'name' => 'Euro', 'symbol' => '€']); TransactionCurrency::create(['code' => 'USD', 'name' => 'US Dollar', 'symbol' => '$']); TransactionCurrency::create(['code' => 'HUF', 'name' => 'Hungarian forint', 'symbol' => 'Ft']); + TransactionCurrency::create(['code' => 'BRL', 'name' => 'Real', 'symbol' => 'R$']); } }