commit
69694a2fab
|
@ -266,6 +266,7 @@ OBJ += intl/msg_hash_de.o \
|
|||
intl/msg_hash_fr.o \
|
||||
intl/msg_hash_it.o \
|
||||
intl/msg_hash_ja.o \
|
||||
intl/msg_hash_ko.o \
|
||||
intl/msg_hash_nl.o \
|
||||
intl/msg_hash_pl.o \
|
||||
intl/msg_hash_pt.o \
|
||||
|
|
|
@ -847,6 +847,7 @@ RETROARCH
|
|||
#include "../intl/msg_hash_fr.c"
|
||||
#include "../intl/msg_hash_it.c"
|
||||
#include "../intl/msg_hash_ja.c"
|
||||
#include "../intl/msg_hash_ko.c"
|
||||
#include "../intl/msg_hash_nl.c"
|
||||
#include "../intl/msg_hash_pt.c"
|
||||
#include "../intl/msg_hash_pl.c"
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -65,6 +65,9 @@ int menu_hash_get_help_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||
case RETRO_LANGUAGE_JAPANESE:
|
||||
ret = menu_hash_get_help_jp_enum(msg, s, len);
|
||||
break;
|
||||
case RETRO_LANGUAGE_KOREAN:
|
||||
ret = menu_hash_get_help_ko_enum(msg, s, len);
|
||||
break;
|
||||
case RETRO_LANGUAGE_VIETNAMESE:
|
||||
ret = menu_hash_get_help_vn_enum(msg, s, len);
|
||||
break;
|
||||
|
@ -124,6 +127,9 @@ const char *msg_hash_to_str(enum msg_hash_enums msg)
|
|||
case RETRO_LANGUAGE_JAPANESE:
|
||||
ret = msg_hash_to_str_jp(msg);
|
||||
break;
|
||||
case RETRO_LANGUAGE_KOREAN:
|
||||
ret = msg_hash_to_str_ko(msg);
|
||||
break;
|
||||
case RETRO_LANGUAGE_VIETNAMESE:
|
||||
ret = msg_hash_to_str_vn(msg);
|
||||
break;
|
||||
|
|
|
@ -1836,6 +1836,9 @@ int menu_hash_get_help_it_enum(enum msg_hash_enums msg, char *s, size_t len);
|
|||
const char *msg_hash_to_str_jp(enum msg_hash_enums msg);
|
||||
int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len);
|
||||
|
||||
const char *msg_hash_to_str_ko(enum msg_hash_enums msg);
|
||||
int menu_hash_get_help_ko_enum(enum msg_hash_enums msg, char *s, size_t len);
|
||||
|
||||
const char *msg_hash_to_str_pt(enum msg_hash_enums msg);
|
||||
int menu_hash_get_help_pt_enum(enum msg_hash_enums msg, char *s, size_t len);
|
||||
|
||||
|
|
Loading…
Reference in New Issue