From 220f5e2913125ece077291dc49d8c4e94564af54 Mon Sep 17 00:00:00 2001 From: James Cole Date: Fri, 30 Mar 2018 22:48:00 +0200 Subject: [PATCH] Add support for Italian. --- config/firefly.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/firefly.php b/config/firefly.php index 61c225f612..a86c98116a 100644 --- a/config/firefly.php +++ b/config/firefly.php @@ -32,7 +32,7 @@ return [ 'single_user_mode' => true, 'is_demo_site' => false, ], - 'encryption' => is_null(env('USE_ENCRYPTION')) || env('USE_ENCRYPTION') === true, + 'encryption' => null === env('USE_ENCRYPTION') || env('USE_ENCRYPTION') === true, 'version' => '4.7.1.4', 'api_version' => '0.1', 'db_version' => 2, @@ -178,6 +178,7 @@ return [ 'de_DE' => ['name_locale' => 'Deutsch', 'name_english' => 'German'], 'fr_FR' => ['name_locale' => 'Français', 'name_english' => 'French'], 'id_ID' => ['name_locale' => 'Bahasa Indonesia', 'name_english' => 'Indonesian'], + 'it_IT' => ['name_locale' => 'Italiano', 'name_english' => 'Italian'], 'nl_NL' => ['name_locale' => 'Nederlands', 'name_english' => 'Dutch'], 'pl_PL' => ['name_locale' => 'Polski', 'name_english' => 'Polish '], 'pt_BR' => ['name_locale' => 'Português do Brasil', 'name_english' => 'Portuguese (Brazil)'],