From 0b474b3d2627128ec13e93a920a8562e2afb7075 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 17 Jul 2016 00:52:56 +0200 Subject: [PATCH] Dehardcore 'more' string --- intl/msg_hash_us.c | 2 ++ menu/cbs/menu_cbs_get_value.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/intl/msg_hash_us.c b/intl/msg_hash_us.c index 52b37281dc..0af05ae2d2 100644 --- a/intl/msg_hash_us.c +++ b/intl/msg_hash_us.c @@ -2566,6 +2566,8 @@ const char *msg_hash_to_str_us(enum msg_hash_enums msg) return "Internal storage status"; case MENU_ENUM_LABEL_VALUE_PARENT_DIRECTORY: return "Parent directory"; + case MENU_ENUM_LABEL_VALUE_MORE: + return "..."; case MENU_ENUM_LABEL_VALUE_RUN: return "Run"; case MENU_ENUM_LABEL_VALUE_VIDEO_VIEWPORT_CUSTOM_X: diff --git a/menu/cbs/menu_cbs_get_value.c b/menu/cbs/menu_cbs_get_value.c index 83a9af9471..c2a658b97d 100644 --- a/menu/cbs/menu_cbs_get_value.c +++ b/menu/cbs/menu_cbs_get_value.c @@ -598,7 +598,7 @@ static void menu_action_setting_disp_set_label_menu_more( const char *path, char *s2, size_t len2) { - strlcpy(s, "...", len); + strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_MORE), len); *w = 19; strlcpy(s2, path, len2); }