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');