Rianu

Results 6 comments of Rianu

Here you go ` scrollingCalendar: { name: "ja", config: { months: "1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split( "_" ), monthsShort: "1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split( "_" ), weekdays: "日曜日_月曜_火曜日_水曜日_木曜日_金曜日_土曜日".split("_"), weekdaysShort: "日曜日_月曜_火曜日_水曜日_木曜日_金曜日_土曜日".split( "_" ), weekdaysMin: "日曜日_月曜_火曜日_水曜日_木曜日_金曜日_土曜日".split( "_" ), longDateFormat: {...

"scrollingCalendar" is passed into the locale prop in calendar strip.

Thanks for the quick reply. I do believe I that is set in my app.js file. That’s how I localize for this app. I will post the code tomorrow to...

I import my moment modules as follows: import moment from "moment"; import "moment/locale/ja"; and call the moment.locale() method here as in the linked issue: let appLocale = NativeModules.SettingsManager.settings.AppleLocale || NativeModules.SettingsManager.settings.AppleLanguages[0];...

Here's what I have in my app.js pertaining to localization: import moment from "moment"; import "moment/locale/ja"; import "moment/locale/en"; let appLocale = NativeModules.SettingsManager.settings.AppleLocale || NativeModules.SettingsManager.settings.AppleLanguages[0]; // remove country portion of locale...

I didn't mean to reply to this issue, sorry. I went back to my main issue. Yes I did hardcode "ja" into there for testing (in production build) since I'm...