[8.2.8][i18n] mogo-core-data mogo-core-function-call mogo-core-function-network mogo-core-utils OCH/common 中文抽取

This commit is contained in:
xinfengkun
2025-11-27 16:13:53 +08:00
parent 64a4f00a73
commit 573ae14aa6
17 changed files with 197 additions and 73 deletions

View File

@@ -51,7 +51,7 @@ public class MarkerUserInfo implements Serializable {
char ageChar = ageChars[2];
// String ageString = "未设置";
String ageString = StringUtils.getString(R.string.module_core_age_unknown);
String ageString = StringUtils.getString(R.string.module_core_age_not_set);
switch (ageChar) {
case '0':
@@ -121,7 +121,7 @@ public class MarkerUserInfo implements Serializable {
public String getGender() {
if (TextUtils.isEmpty(gender)) {
// return "未设置";
return StringUtils.getString(R.string.module_core_gender_unknown);
return StringUtils.getString(R.string.module_core_age_not_set);
}
return gender;
}