(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
This commit is contained in:
twinaphex 2015-06-21 20:20:04 +02:00
parent f0d90d84de
commit 5a7078bf6d

View File

@ -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;
}