Skip to content

Commit

Permalink
New Greek translation by Nikos Papadopoylos.
Browse files Browse the repository at this point in the history
Closes #3703.
  • Loading branch information
cybersphinx committed Aug 30, 2012
1 parent 8299d11 commit 5ae125c
Show file tree
Hide file tree
Showing 4 changed files with 15,235 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/framework/i18n.cpp
Expand Up @@ -53,6 +53,7 @@
#define LANG_NAME_FRENCH "Français"
#define LANG_NAME_FRISIAN_NETHERLANDS "frysk"
#define LANG_NAME_GERMAN "Deutsch"
#define LANG_NAME_GREEK "Ελληνικά"
#define LANG_NAME_HUNGARIAN "magyar"
#define LANG_NAME_IRISH "Imruagadh"
#define LANG_NAME_ITALIAN "Italiano"
Expand Down Expand Up @@ -111,6 +112,7 @@ static const struct
*/
{ "fy", LANG_NAME_FRISIAN_NETHERLANDS, LANG_FRISIAN, SUBLANG_FRISIAN_NETHERLANDS },
{ "ga", LANG_NAME_IRISH, LANG_IRISH, SUBLANG_IRISH_IRELAND },
{ "el", LANG_NAME_GREEK, LANG_GREEK, SUBLANG_DEFAULT ),
{ "hr", LANG_NAME_CROATIAN, LANG_CROATIAN, SUBLANG_DEFAULT },
{ "hu", LANG_NAME_HUNGARIAN, LANG_HUNGARIAN, SUBLANG_DEFAULT },
{ "it", LANG_NAME_ITALIAN, LANG_ITALIAN, SUBLANG_ITALIAN },
Expand Down Expand Up @@ -156,6 +158,7 @@ static const struct
{ "cs_CZ", LANG_NAME_CZECH, "cs_CZ.UTF-8", "cs" },
{ "da", LANG_NAME_DANISH, "da_DK.UTF-8", "da_DK" },
{ "de", LANG_NAME_GERMAN, "de_DE.UTF-8", "de_DE" },
{ "el_GR", LANG_NAME_GREEK, "el_GR.UTF-8", "el" },
{ "en", LANG_NAME_ENGLISH, "en_US.UTF-8", "en_US" },
{ "en_GB", LANG_NAME_ENGLISH_UK, "en_GB.UTF-8", "en_GB" },
{ "es", LANG_NAME_SPANISH, "es_ES.UTF-8", "es_ES" },
Expand Down
7 changes: 7 additions & 0 deletions pkg/nsis/warzone2100.nsi
Expand Up @@ -353,6 +353,9 @@ Section "-NLS files" SecNLS_files
SetOutPath "$INSTDIR\locale\de\LC_MESSAGES"
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\de.gmo"

SetOutPath "$INSTDIR\locale\el\LC_MESSAGES"
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\el.gmo"

SetOutPath "$INSTDIR\locale\en_GB\LC_MESSAGES"
File "/oname=${PACKAGE}.mo" "${TOP_SRCDIR}\po\en_GB.gmo"

Expand Down Expand Up @@ -785,6 +788,10 @@ Section "Uninstall"
RMDir "$INSTDIR\locale\de\LC_MESSAGES"
RMDir "$INSTDIR\locale\de"

Delete "$INSTDIR\locale\el\LC_MESSAGES\${PACKAGE}.mo"
RMDir "$INSTDIR\locale\el\LC_MESSAGES"
RMDir "$INSTDIR\locale\el"

Delete "$INSTDIR\locale\en_GB\LC_MESSAGES\${PACKAGE}.mo"
RMDir "$INSTDIR\locale\en_GB\LC_MESSAGES"
RMDir "$INSTDIR\locale\en_GB"
Expand Down
1 change: 1 addition & 0 deletions po/LINGUAS
Expand Up @@ -2,6 +2,7 @@ ca_ES
cs
da
de
el
en_GB
es
et_EE
Expand Down

0 comments on commit 5ae125c

Please sign in to comment.