(Menu/intl) Add some more hashes

This commit is contained in:
twinaphex 2015-06-25 07:20:11 +02:00
parent 45e008d3b0
commit f1248eb690
4 changed files with 8 additions and 2 deletions

View File

@ -736,6 +736,8 @@ const char *menu_hash_to_str_nl(uint32_t hash)
return "Scherm Resolutie";
case MENU_VALUE_BACK:
return "TERUG";
case MENU_VALUE_DISABLED:
return "Uitgeschakeld";
default:
break;
}

View File

@ -1299,6 +1299,8 @@ const char *menu_hash_to_str_us(uint32_t hash)
return "BACK";
case MENU_LABEL_VALUE_SCREEN_RESOLUTION:
return "Screen Resolution";
case MENU_VALUE_DISABLED:
return "Disabled";
default:
break;
}

View File

@ -899,6 +899,8 @@ extern "C" {
#define MENU_LABEL_VALUE_NO 0x521b0c11U
#define MENU_VALUE_BACK 0x7c825df6U
#define MENU_VALUE_DISABLED 0xe326e01dU
const char *menu_hash_to_str_de(uint32_t hash);

View File

@ -2988,7 +2988,7 @@ int setting_get_description(const char *label, char *s,
return 0;
snprintf(s, len,
"-- No info on this item is available. --\n");
"-- No information is available. --\n");
return 0;
}
@ -3016,7 +3016,7 @@ static void get_string_representation_bind_device(void * data, char *s,
"%s (port #%u)", menu_hash_to_str(MENU_VALUE_NOT_AVAILABLE), map);
}
else
strlcpy(s, "Disabled", len);
strlcpy(s, menu_hash_to_str(MENU_VALUE_DISABLED), len);
}