summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/am.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/am/am.h')
-rw-r--r--src/core/hle/service/am/am.h19
1 files changed, 17 insertions, 2 deletions
diff --git a/src/core/hle/service/am/am.h b/src/core/hle/service/am/am.h
index 5b3d416f3..dd6158eb2 100644
--- a/src/core/hle/service/am/am.h
+++ b/src/core/hle/service/am/am.h
@@ -18,10 +18,25 @@ class NVFlinger;
namespace AM {
-// TODO: Add more languages
enum SystemLanguage {
Japanese = 0,
- English = 1,
+ English = 1, // en-US
+ French = 2,
+ German = 3,
+ Italian = 4,
+ Spanish = 5,
+ Chinese = 6,
+ Korean = 7,
+ Dutch = 8,
+ Portuguese = 9,
+ Russian = 10,
+ Taiwanese = 11,
+ BritishEnglish = 12, // en-GB
+ CanadianFrench = 13,
+ LatinAmericanSpanish = 14, // es-419
+ // 4.0.0+
+ SimplifiedChinese = 15,
+ TraditionalChinese = 16,
};
class IWindowController final : public ServiceFramework<IWindowController> {