React native project with expo-localization and i18n-js
问题 i am currently trying to implement localization depending on the system language of the device but something is not working as required. I followed the exact same code on expo documentation, for eg. for the button i have i keep getting [MISSING "EN-GB.LOGIN" TRANSLATION] instead of LOGIN . Here is my code: welcomeScreen.js import * as Localization from 'expo-localization'; import i18n from 'i18n-js'; i18n.translations = { en: { login: 'LOGIN'}, ar: { login: 'تسجيل الدخول'}, }; i18n.locale =