Use only one string for english

This commit is contained in:
twinaphex 2016-11-04 14:19:11 +01:00
parent ea46c4a532
commit a70b0942d5
2 changed files with 1 additions and 22 deletions

View File

@ -2988,7 +2988,7 @@ static const char *menu_hash_to_str_us_label_enum(enum msg_hash_enums msg)
}
#endif
#define MSG_HASH(Id, org, str) case Id: return str;
#define MSG_HASH(Id, str) case Id: return str;
const char *msg_hash_to_str_us(enum msg_hash_enums msg)
{

View File

@ -1,105 +1,84 @@
MSG_HASH(
MSG_DEVICE_DISCONNECTED_FROM_PORT,
"Device disconnected from port",
"Device disconnected from port"
)
MSG_HASH(
MSG_UNKNOWN_NETPLAY_COMMAND_RECEIVED,
"Unknown netplay command received",
"Unknown netplay command received"
)
MSG_HASH(
MSG_FILE_ALREADY_EXISTS_SAVING_TO_BACKUP_BUFFER,
"File already exists. Saving to backup buffer",
"File already exists. Saving to backup buffer"
)
MSG_HASH(
MSG_GOT_CONNECTION_FROM,
"Got connection from",
"Got connection from"
)
MSG_HASH(
MSG_NETPLAY_USERS_HAS_FLIPPED,
"Netplay users has flipped",
"Netplay users has flipped"
)
MSG_HASH(
MSG_SETTING_DISK_IN_TRAY,
"Setting disk in tray",
"Setting disk in tray"
)
MSG_HASH(
MSG_WAITING_FOR_CLIENT,
"Waiting for client ...",
"Waiting for client ..."
)
MSG_HASH(
MENU_ENUM_SUBLABEL_MENU_SETTINGS,
"Adjusts settings related to the appearance of the menu screen.",
"Adjusts settings related to the appearance of the menu screen."
)
MSG_HASH(
MENU_ENUM_SUBLABEL_VIDEO_HARD_SYNC,
"Hard-synchronize the CPU and GPU. Reduces latency at the cost of performance.",
"Hard-synchronize the CPU and GPU. Reduces latency at the cost of performance."
)
MSG_HASH(
MENU_ENUM_SUBLABEL_VIDEO_THREADED,
"Improves performance at the cost of latency and more video stuttering. Use only if you cannot obtain full speed otherwise.",
"Improves performance at the cost of latency and more video stuttering. Use only if you cannot obtain full speed otherwise."
)
MSG_HASH(
MSG_AUDIO_VOLUME,
"Audio volume",
"Audio volume"
)
MSG_HASH(
MSG_AUTODETECT,
"Autodetect",
"Autodetect"
)
MSG_HASH(
MSG_AUTOLOADING_SAVESTATE_FROM,
"Auto-loading savestate from",
"Auto-loading savestate from"
)
MSG_HASH(
MSG_CONNECTING_TO_NETPLAY_HOST,
"Connecting to netplay host",
"Connecting to netplay host"
)
MSG_HASH(
MSG_CONNECTING_TO_PORT,
"Connecting to port",
"Connecting to port"
)
MSG_HASH(
MSG_CONNECTION_SLOT,
"Connection slot",
"Connection slot"
)
MSG_HASH(
MSG_SORRY_UNIMPLEMENTED_CORES_DONT_DEMAND_CONTENT_NETPLAY,
"Sorry, unimplemented: cores that don't demand content cannot participate in netplay.",
"Sorry, unimplemented: cores that don't demand content cannot participate in netplay."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_ACCOUNTS_CHEEVOS_PASSWORD,
"Password",
"Password"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_ACCOUNTS_CHEEVOS_SETTINGS,
"Accounts Cheevos",
"Accounts Cheevos"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_ACCOUNTS_CHEEVOS_USERNAME,
"Username",
"Username"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_ACCOUNTS_LIST,
"Accounts",
"Accounts"
)