ppsspp/assets/lang
2023-09-07 13:57:49 +02:00
..
ar_AE.ini Even more translation strings 2023-09-01 15:45:13 +02:00
az_AZ.ini Even more translation strings 2023-09-01 15:45:13 +02:00
bg_BG.ini Even more translation strings 2023-09-01 15:45:13 +02:00
ca_ES.ini Even more translation strings 2023-09-01 15:45:13 +02:00
cz_CZ.ini Even more translation strings 2023-09-01 15:45:13 +02:00
da_DK.ini Even more translation strings 2023-09-01 15:45:13 +02:00
de_DE.ini Even more translation strings 2023-09-01 15:45:13 +02:00
dr_ID.ini Even more translation strings 2023-09-01 15:45:13 +02:00
en_US.ini Even more translation strings 2023-09-01 15:45:13 +02:00
es_ES.ini Even more translation strings 2023-09-01 15:45:13 +02:00
es_LA.ini Even more translation strings 2023-09-01 15:45:13 +02:00
fa_IR.ini Even more translation strings 2023-09-01 15:45:13 +02:00
fi_FI.ini Even more translation strings 2023-09-01 15:45:13 +02:00
fr_FR.ini Even more translation strings 2023-09-01 15:45:13 +02:00
gl_ES.ini Even more translation strings 2023-09-01 15:45:13 +02:00
gr_EL.ini Even more translation strings 2023-09-01 15:45:13 +02:00
he_IL_invert.ini Even more translation strings 2023-09-01 15:45:13 +02:00
he_IL.ini Even more translation strings 2023-09-01 15:45:13 +02:00
hr_HR.ini Even more translation strings 2023-09-01 15:45:13 +02:00
hu_HU.ini Even more translation strings 2023-09-01 15:45:13 +02:00
id_ID.ini Even more translation strings 2023-09-01 15:45:13 +02:00
it_IT.ini Even more translation strings 2023-09-01 15:45:13 +02:00
ja_JP.ini Even more translation strings 2023-09-01 15:45:13 +02:00
jv_ID.ini Even more translation strings 2023-09-01 15:45:13 +02:00
ko_KR.ini Even more translation strings 2023-09-01 15:45:13 +02:00
lo_LA.ini Even more translation strings 2023-09-01 15:45:13 +02:00
lt-LT.ini Even more translation strings 2023-09-01 15:45:13 +02:00
ms_MY.ini Even more translation strings 2023-09-01 15:45:13 +02:00
nl_NL.ini Even more translation strings 2023-09-01 15:45:13 +02:00
no_NO.ini Even more translation strings 2023-09-01 15:45:13 +02:00
pl_PL.ini Update pl_PL.ini 2023-09-02 20:05:58 +02:00
pt_BR.ini Updated brazilian portuguese translation 2023-09-02 10:24:03 -03:00
pt_PT.ini Even more translation strings 2023-09-01 15:45:13 +02:00
README.md Add contents of the assets/lang submodule to the main repo. 2021-07-17 16:46:48 +02:00
ro_RO.ini Even more translation strings 2023-09-01 15:45:13 +02:00
ru_RU.ini Update Russian translation 2023-09-02 00:29:14 +03:00
sv_SE.ini Update Swedish translation 2023-09-07 13:57:49 +02:00
tg_PH.ini Even more translation strings 2023-09-01 15:45:13 +02:00
th_TH.ini Update th_TH.ini 2023-09-01 17:41:38 +07:00
tr_TR.ini Even more translation strings 2023-09-01 15:45:13 +02:00
uk_UA.ini Even more translation strings 2023-09-01 15:45:13 +02:00
vi_VN.ini Even more translation strings 2023-09-01 15:45:13 +02:00
zh_CN.ini Update zh_CN.ini 2023-09-05 00:15:58 +08:00
zh_TW.ini Even more translation strings 2023-09-01 15:45:13 +02:00

lang

PPSSPP language ini repository

Thanks for your interest in translating PPSSPP!

  • Simply copy en_US.ini file to a new ini file with your language code, or use it to update an existing file with that name.
  • To see a list of codes, view this page.

Please note, while translating:

  • Ampersands & on the RIGHT side of an equals sign denote an underlined keyboard hotkey.
  • The hotkeys are only supported currently in the DesktopUI section, however.
  • Example: &File. This will make it so when you press ALT + F on Windows, it'll open the File menu.

Tools

  • To remove a translation, use the following (where KeyWord is the key):

    find . -type f -print0 | xargs -0 sed -i /^KeyWord/d

  • To change a translation key, use something like this:

    find . -type f -print0 | xargs -0 sed -i /^Key/NewKey

  • Before you commit, use git diff to check that you don't delete too much or some unrelated key with the same prefix.

Happy translating!