From a70b0942d5b42ba35f2ef94d64189ac97d58d578 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 4 Nov 2016 14:19:11 +0100 Subject: [PATCH] Use only one string for english --- intl/msg_hash_us.c | 2 +- intl/msg_hash_us.h | 21 --------------------- 2 files changed, 1 insertion(+), 22 deletions(-) diff --git a/intl/msg_hash_us.c b/intl/msg_hash_us.c index ef44ba5ee3..c465f15029 100644 --- a/intl/msg_hash_us.c +++ b/intl/msg_hash_us.c @@ -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) { diff --git a/intl/msg_hash_us.h b/intl/msg_hash_us.h index a0b3c00aae..29005772ee 100644 --- a/intl/msg_hash_us.h +++ b/intl/msg_hash_us.h @@ -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" )