summaryrefslogtreecommitdiff
path: root/locale/make.php
diff options
context:
space:
mode:
Diffstat (limited to 'locale/make.php')
-rwxr-xr-xlocale/make.php37
1 files changed, 0 insertions, 37 deletions
diff --git a/locale/make.php b/locale/make.php
deleted file mode 100755
index 2ffd5a0..0000000
--- a/locale/make.php
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/usr/bin/php -q
-<?
- $lang = array( "bg" => "bg_BG", "da" => "da_DK", "de" => "de_DE", "es" => "es_ES",
- "fr" => "fr_FR", "fi" => "fi_FI", "he" => "he_IL", "hr" => "hr_HR",
- "hu" => "hu_HU", "id" => "id_ID", "it" => "it_IT", "ja" => "ja_JP",
- "nl" => "nl_NL", "lv" => "lv_LV", "pt" => "pt_PT", "pt_BR" => "pt_BR",
- "ro" => "ro_RO", "ru" => "ru_RU", "fa" => "fa_IR", "sv" => "sv_SE",
- "tr" => "tr_TR", "zh_CN" => "zh_CN", "zh_TW" => "zh_TW", "ar" => "ar_SY",
- "el" => "el_GR", "tl" => "tl_PH", "pl" => "pl_PL", "cs" => "cs_CZ",
- "ka" => "ka_GE", "is" => "is_IS", "ko" => "ko_KR", "nb" => "nb_NO",
- "sl" => "sl_SI", "th" => "th_TH", "uk" => "uk_UA");
-
- if($argc > 1)
- {
- foreach($argv as $key)
- {
- $val = $lang[$key];
- if($val != "")
- {
- echo `mkdir -p $key/LC_MESSAGES/`;
- $do = `wget -O $key/messages.po "http://translingo.cacert.org/export2.php?pid=1&editlanguage=$val" 2>&1`;
-echo $do;
- $do = `msgfmt -o $key/LC_MESSAGES/messages.mo $key/messages.po 2>&1`;
-echo $do;
- }
- }
- } else {
- foreach($lang as $key => $val)
- {
- echo `mkdir -p $key/LC_MESSAGES/`;
- $do = `wget -O $key/messages.po "http://translingo.cacert.org/export2.php?pid=1&editlanguage=$val" 2>&1`;
-echo $do;
- $do = `msgfmt -o $key/LC_MESSAGES/messages.mo $key/messages.po 2>&1`;
-echo $do;
- }
- }
-?>