From 5a7078bf6df757aad2cde2944a5d45ccc36f8cf8 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 21 Jun 2015 20:20:04 +0200 Subject: [PATCH] (Portuguese) Change MENU_VALUE_OFF/MENU_VALUE_ON to 'ON'/'OFF' - need to figure out something for these labels as XMB tries to match the hash of 'ON'/'OFF' in order to determine if it needs to render an ON/OFF icon --- menu/menu_hash.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/menu/menu_hash.c b/menu/menu_hash.c index 5e0470be26..be21d6a5ce 100644 --- a/menu/menu_hash.c +++ b/menu/menu_hash.c @@ -1031,9 +1031,9 @@ static const char *menu_hash_to_str_portuguese(uint32_t hash) case MENU_VALUE_SECONDS: return "Segundos"; case MENU_VALUE_OFF: - return "DESATIVADO"; + return "OFF"; case MENU_VALUE_ON: - return "ATIVADO"; + return "ON"; default: break; }