diff --git a/intl/msg_hash_us.c b/intl/msg_hash_us.c index 147b03dbac..c3b03a2ba0 100644 --- a/intl/msg_hash_us.c +++ b/intl/msg_hash_us.c @@ -1186,6 +1186,8 @@ static const char *menu_hash_to_str_us_label_enum(enum msg_hash_enums msg) return "collection"; case MENU_ENUM_LABEL_CORE_INFO_ENTRY: return "core_info_entry"; + case MENU_ENUM_LABEL_NETWORK_INFO_ENTRY: + return "network_info_entry"; case MENU_ENUM_LABEL_DEBUG_INFO_ENTRY: return "debug_info_entry"; case MENU_ENUM_LABEL_INPUT_USER_1_BINDS: diff --git a/menu/menu_displaylist.c b/menu/menu_displaylist.c index 922c7f755a..7cfce97746 100644 --- a/menu/menu_displaylist.c +++ b/menu/menu_displaylist.c @@ -617,7 +617,7 @@ static int menu_displaylist_parse_network_info(menu_displaylist_info_t *info) msg_hash_to_str(MSG_INTERFACE), list->entries[k].name, list->entries[k].host); menu_entries_add_enum(info->list, tmp, "", - MSG_UNKNOWN, MENU_SETTINGS_CORE_INFO_NONE, 0, 0); + MENU_ENUM_LABEL_NETWORK_INFO_ENTRY, MENU_SETTINGS_CORE_INFO_NONE, 0, 0); } net_ifinfo_free(list); diff --git a/msg_hash.h b/msg_hash.h index 8ae4f1ed43..9cb19c2f8d 100644 --- a/msg_hash.h +++ b/msg_hash.h @@ -283,6 +283,7 @@ enum msg_hash_enums MSG_NO_CONTENT_STARTING_DUMMY_CORE, MENU_ENUM_LABEL_DEBUG_INFO_ENTRY, + MENU_ENUM_LABEL_NETWORK_INFO_ENTRY, MENU_ENUM_LABEL_CORE_INFO_ENTRY, MENU_ENUM_LABEL_START_NET_RETROPAD, MENU_ENUM_LABEL_VALUE_START_NET_RETROPAD,