UnStar -> Unstar, remove duplicate language strings
This commit is contained in:
parent
0891bfaba6
commit
8795b43db3
@ -334,23 +334,11 @@ const char* const g_strings[StrId_Max][16] =
|
||||
[StrId_Actions_Star] =
|
||||
{
|
||||
STR_EN("Star"),
|
||||
STR_FR("Star"),
|
||||
STR_DE("Star"),
|
||||
STR_ES("Star"),
|
||||
STR_JP("Star"),
|
||||
STR_KO("Star"),
|
||||
STR_TW("Star"),
|
||||
},
|
||||
|
||||
[StrId_Actions_UnStar] =
|
||||
[StrId_Actions_Unstar] =
|
||||
{
|
||||
STR_EN("UnStar"),
|
||||
STR_FR("UnStar"),
|
||||
STR_DE("UnStar"),
|
||||
STR_ES("UnStar"),
|
||||
STR_JP("UnStar"),
|
||||
STR_KO("UnStar"),
|
||||
STR_TW("UnStar"),
|
||||
STR_EN("Unstar"),
|
||||
},
|
||||
|
||||
[StrId_ThemeMenu] =
|
||||
|
@ -24,7 +24,7 @@ typedef enum
|
||||
StrId_Actions_Back,
|
||||
StrId_Actions_Apply,
|
||||
StrId_Actions_Star,
|
||||
StrId_Actions_UnStar,
|
||||
StrId_Actions_Unstar,
|
||||
|
||||
StrId_MsgBox_OK,
|
||||
|
||||
|
@ -725,10 +725,10 @@ void menuLoop(void) {
|
||||
drawButtons(menu, false, &menupath_x_endpos);
|
||||
|
||||
if(active_entry != NULL && active_entry->type != ENTRY_TYPE_THEME) {
|
||||
getX = GetTextXCoordinate(interuiregular18, menupath_x_endpos - 32, textGetString(StrId_Actions_UnStar), 'r');
|
||||
getX = GetTextXCoordinate(interuiregular18, menupath_x_endpos - 32, textGetString(StrId_Actions_Unstar), 'r');
|
||||
DrawText(fontscale7, getX - 36, 720 - 47 + 24, themeCurrent.textColor, themeCurrent.buttonXText);
|
||||
if (active_entry->starred) {
|
||||
DrawText(interuiregular18, getX, 720 - 47 + 24, themeCurrent.textColor, textGetString(StrId_Actions_UnStar));
|
||||
DrawText(interuiregular18, getX, 720 - 47 + 24, themeCurrent.textColor, textGetString(StrId_Actions_Unstar));
|
||||
} else {
|
||||
DrawText(interuiregular18, getX, 720 - 47 + 24, themeCurrent.textColor, textGetString(StrId_Actions_Star));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user