You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, the "female" and "male" values under the "gender" and "gender2" objects are not being generated, while the others are being generated without any issues. What could be causing this?
{
"msg": "{} are written in the {} language",
"msg_named": "Easy localization is written in the {lang} language",
"msg_mixed": "{} are written in the {lang} language",
"gender": {
"male": "Hi man ;) {}",
"female": "Hello girl :) {}",
"other": "Hello {}"
},
"gender2": {
"male": "Hi man ;) {}",
"female": "Hello girl :) {}",
"other": "Hello {}"
}
}
//.g file
// DO NOT EDIT. This is code generated via package:easy_localization/generate.dart
abstract class LocaleKeys {
static const msg = 'msg';
static const msg_named = 'msg_named';
static const msg_mixed = 'msg_mixed';
static const gender = 'gender';
static const gender2 = 'gender2';
}
The text was updated successfully, but these errors were encountered:
Hello, the "female" and "male" values under the "gender" and "gender2" objects are not being generated, while the others are being generated without any issues. What could be causing this?
The text was updated successfully, but these errors were encountered: