mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Add msg_hash_jp
This commit is contained in:
parent
be4e0aee1f
commit
ad3a4311ee
5 changed files with 4483 additions and 0 deletions
|
@ -229,6 +229,7 @@ OBJ += intl/msg_hash_de.o \
|
|||
intl/msg_hash_es.o \
|
||||
intl/msg_hash_fr.o \
|
||||
intl/msg_hash_it.o \
|
||||
intl/msg_hash_jp.o \
|
||||
intl/msg_hash_nl.o \
|
||||
intl/msg_hash_pl.o \
|
||||
intl/msg_hash_pt.o
|
||||
|
|
|
@ -794,6 +794,7 @@ RETROARCH
|
|||
#include "../intl/msg_hash_eo.c"
|
||||
#include "../intl/msg_hash_fr.c"
|
||||
#include "../intl/msg_hash_it.c"
|
||||
#include "../intl/msg_hash_jp.c"
|
||||
#include "../intl/msg_hash_nl.c"
|
||||
#include "../intl/msg_hash_pt.c"
|
||||
#include "../intl/msg_hash_pl.c"
|
||||
|
|
4472
intl/msg_hash_jp.c
Normal file
4472
intl/msg_hash_jp.c
Normal file
File diff suppressed because it is too large
Load diff
|
@ -57,6 +57,9 @@ int menu_hash_get_help_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||
case RETRO_LANGUAGE_POLISH:
|
||||
ret = menu_hash_get_help_pl_enum(msg, s, len);
|
||||
break;
|
||||
case RETRO_LANGUAGE_JAPANESE:
|
||||
ret = menu_hash_get_help_jp_enum(msg, s, len);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
@ -109,6 +112,9 @@ const char *msg_hash_to_str(enum msg_hash_enums msg)
|
|||
ret = msg_hash_to_str_ru(msg);
|
||||
#endif
|
||||
break;
|
||||
case RETRO_LANGUAGE_JAPANESE:
|
||||
ret = msg_hash_to_str_jp(msg);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -2054,6 +2054,9 @@ int menu_hash_get_help_eo_enum(enum msg_hash_enums msg, char *s, size_t len);
|
|||
const char *msg_hash_to_str_it(enum msg_hash_enums msg);
|
||||
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_pt(enum msg_hash_enums msg);
|
||||
int menu_hash_get_help_pt_enum(enum msg_hash_enums msg, char *s, size_t len);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue