- Reorganized settings management

- Added localisation UI
- Added Greek localisation
- Message text refactoring


FossilOrigin-Name: 05f2cac387c4a3863197f794c68421f7e04fb28e
This commit is contained in:
kostas
2012-10-08 11:28:08 +00:00
parent d40b70d737
commit 0ed31413ca
11 changed files with 2713 additions and 147 deletions

1223
intl/el_GR.po Normal file

File diff suppressed because it is too large Load Diff

1199
intl/en_US.pot Normal file

File diff suppressed because it is too large Load Diff

14
intl/update.sh Executable file
View File

@ -0,0 +1,14 @@
#!/bin/sh
# Regenerate the the reference pot
lupdate ../fuel.pro -ts en_US.ts -source-language en.US -target-language en.US
lconvert en_US.ts -o en_US.pot
# Merge reference pot file with all languages
# Requires the gettext tool msgmerge
for i in *.po
do
echo "Merging $i"
msgmerge --update $i en_US.pot
done