mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
.. | ||
ar_AE.ini | ||
az_AZ.ini | ||
bg_BG.ini | ||
ca_ES.ini | ||
cz_CZ.ini | ||
da_DK.ini | ||
de_DE.ini | ||
dr_ID.ini | ||
en_US.ini | ||
es_ES.ini | ||
es_LA.ini | ||
fa_IR.ini | ||
fi_FI.ini | ||
fr_FR.ini | ||
gl_ES.ini | ||
gr_EL.ini | ||
he_IL_invert.ini | ||
he_IL.ini | ||
hr_HR.ini | ||
hu_HU.ini | ||
id_ID.ini | ||
it_IT.ini | ||
ja_JP.ini | ||
jv_ID.ini | ||
ko_KR.ini | ||
ku_SO.ini | ||
lo_LA.ini | ||
lt-LT.ini | ||
ms_MY.ini | ||
nl_NL.ini | ||
no_NO.ini | ||
pl_PL.ini | ||
pt_BR.ini | ||
pt_PT.ini | ||
README.md | ||
ro_RO.ini | ||
ru_RU.ini | ||
sv_SE.ini | ||
tg_PH.ini | ||
th_TH.ini | ||
tr_TR.ini | ||
uk_UA.ini | ||
vi_VN.ini | ||
zh_CN.ini | ||
zh_TW.ini |
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.