From df6b9e37ac6635a869b29d9ec79ee124ffa43df8 Mon Sep 17 00:00:00 2001 From: Chris Kankiewicz Date: Sun, 3 May 2020 17:05:39 -0700 Subject: [PATCH] Reordered translation languages --- app/src/Factories/TranslationFactory.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/Factories/TranslationFactory.php b/app/src/Factories/TranslationFactory.php index 009c8dd..52c6c10 100644 --- a/app/src/Factories/TranslationFactory.php +++ b/app/src/Factories/TranslationFactory.php @@ -13,7 +13,8 @@ class TranslationFactory { /** @const Available translation languages */ protected const LANGUAGES = [ - 'de', 'en', 'es', 'fr', 'id', 'it', 'kr', 'pl', 'ro', 'ru', 'zh-CN', 'zh-TW', 'pt-BR' + 'de', 'en', 'es', 'fr', 'id', 'it', 'kr', 'pl', 'pt-BR', + 'ro', 'ru', 'zh-CN', 'zh-TW' ]; /** @var Container The applicaiton container */