From 6c8f4e38bf23e3f43332eed26a1f43f4e0d6d8b7 Mon Sep 17 00:00:00 2001 From: Christy Jacob Date: Thu, 29 Jul 2021 00:55:34 +0530 Subject: [PATCH] feat(locale): rename oriya translation file --- app/config/locale/codes.php | 2 +- app/config/locale/translations/{od.json => or.json} | 2 +- app/init.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename app/config/locale/translations/{od.json => or.json} (99%) diff --git a/app/config/locale/codes.php b/app/config/locale/codes.php index 68df5025a5..65214a665a 100644 --- a/app/config/locale/codes.php +++ b/app/config/locale/codes.php @@ -37,7 +37,7 @@ return [ 'nl', // Dutch 'no', // Norwegian 'ne', // Nepali - 'od', // Odia + 'or', // Odia 'ph', // Filipino 'pl', // Polish 'pt-br', // Portuguese - Brazil diff --git a/app/config/locale/translations/od.json b/app/config/locale/translations/or.json similarity index 99% rename from app/config/locale/translations/od.json rename to app/config/locale/translations/or.json index adb27f3f1e..79fd82d84d 100644 --- a/app/config/locale/translations/od.json +++ b/app/config/locale/translations/or.json @@ -1,6 +1,6 @@ { "settings.inspire": "\"ଜ୍ଞାନୀ ହେବାର କଳା ହେଉଛି କ’ଣ ଅଣଦେଖା କରାଯିବ ଜାଣିବାର କଳା |\"", - "settings.locale": "od", + "settings.locale": "or", "settings.direction": "ltr", "emails.sender": "%s ଟିମ", "emails.verification.subject": "", diff --git a/app/init.php b/app/init.php index 840524afd5..6c08f327fa 100644 --- a/app/init.php +++ b/app/init.php @@ -292,7 +292,7 @@ Locale::setLanguageFromJSON('ms', __DIR__.'/config/locale/translations/ms.json') Locale::setLanguageFromJSON('nl', __DIR__.'/config/locale/translations/nl.json'); Locale::setLanguageFromJSON('no', __DIR__.'/config/locale/translations/no.json'); Locale::setLanguageFromJSON('ne', __DIR__.'/config/locale/translations/ne.json'); -Locale::setLanguageFromJSON('od', __DIR__.'/config/locale/translations/od.json'); +Locale::setLanguageFromJSON('or', __DIR__.'/config/locale/translations/or.json'); Locale::setLanguageFromJSON('ph', __DIR__.'/config/locale/translations/ph.json'); Locale::setLanguageFromJSON('pl', __DIR__.'/config/locale/translations/pl.json'); Locale::setLanguageFromJSON('pt-br', __DIR__.'/config/locale/translations/pt-br.json');