mirror of
https://github.com/libretro/RetroArch
synced 2025-04-01 04:20:27 +00:00
(Menu) Add French section
This commit is contained in:
parent
4ac997c28d
commit
a76e6c484d
@ -22,6 +22,17 @@
|
||||
|
||||
#include "../configuration.h"
|
||||
|
||||
static const char *menu_hash_to_str_french(uint32_t hash)
|
||||
{
|
||||
switch (hash)
|
||||
{
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return "null";
|
||||
}
|
||||
|
||||
static const char *menu_hash_to_str_dutch(uint32_t hash)
|
||||
{
|
||||
switch (hash)
|
||||
@ -300,6 +311,8 @@ const char *menu_hash_to_str(uint32_t hash)
|
||||
|
||||
switch (settings->user_language)
|
||||
{
|
||||
case RETRO_LANGUAGE_FRENCH:
|
||||
ret = menu_hash_to_str_french(hash);
|
||||
case RETRO_LANGUAGE_DUTCH:
|
||||
ret = menu_hash_to_str_dutch(hash);
|
||||
default:
|
||||
|
Loading…
x
Reference in New Issue
Block a user