]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - scripts/update_translations.php
Initial user doesn't need as strict checking on email
[quix0rs-gnu-social.git] / scripts / update_translations.php
index f145c1f0b67206081a60448e739400a33b1e4b5e..e204e747c8354d63c880afb29f76ccb9f270bf3b 100755 (executable)
@@ -25,13 +25,13 @@ if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) {
 }
 
 define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
-define('STATUSNET', true);
-define('LACONICA', true); // compatibility
+define('GNUSOCIAL', true);
+define('STATUSNET', true);  // compatibility
 
 require_once(INSTALLDIR . '/lib/common.php');
 
 // Master StatusNet .pot file location (created by update_pot.sh)
-$statusnet_pot = INSTALLDIR . '/locale/statusnet.po';
+$statusnet_pot = INSTALLDIR . '/locale/statusnet.pot';
 
 set_time_limit(60);
 
@@ -39,12 +39,47 @@ set_time_limit(60);
 $languages = get_all_languages();
 
 /* Update the languages */
+// Language code conversion for translatewiki.net (these are MediaWiki codes)
+$codeMap = array(
+       'nb'    => 'no',
+       'pt_BR' => 'pt-br',
+       'zh_CN' => 'zh-hans',
+       'zh_TW' => 'zh-hant'
+);
+
+$doneCodes = array();
 
 foreach ($languages as $language) {
+       $code = $language['lang'];
+
+       // Skip export of source language
+       // and duplicates
+       if( $code == 'en' || $code == 'no' ) {
+               continue;
+       }
+
+       // Do not export codes twice (happens for 'nb')
+       if( in_array( $code, $doneCodes ) ) {
+               continue;
+       } else {
+               $doneCodes[] = $code;
+       }
+
+       // Convert code if needed
+       if( isset( $codeMap[$code] ) ) {
+               $twnCode = $codeMap[$code];
+       } else {
+               $twnCode = str_replace('_', '-', strtolower($code)); // pt_BR -> pt-br
+       }
+
+    // Fetch updates from translatewiki.net...
+    $file_url = 'http://translatewiki.net/w/i.php?' .
+        http_build_query(array(
+            'title' => 'Special:Translate',
+            'task' => 'export-to-file',
+            'group' => 'out-statusnet-core',
+            'language' => $twnCode));
 
-    $code = $language['lang'];
-    $file_url = 'http://status.net/pootle/' . $code .
-        '/statusnet/LC_MESSAGES/statusnet.po';
     $lcdir = INSTALLDIR . '/locale/' . $code;
     $msgdir = "$lcdir/LC_MESSAGES";
     $pofile = "$msgdir/statusnet.po";
@@ -63,7 +98,7 @@ foreach ($languages as $language) {
     $new_file = curl_get_file($file_url);
 
     if ($new_file === FALSE) {
-        echo "Couldn't retrieve .po file for $code: $file_url\n";
+        echo "Could not retrieve .po file for $code: $file_url\n";
         continue;
     }
 
@@ -72,8 +107,12 @@ foreach ($languages as $language) {
     if (sha1($new_file) != $existingSHA1 || !file_exists($mofile)) {
         echo "Updating ".$code."\n";
         file_put_contents($pofile, $new_file);
-        system(sprintf('msgmerge -U %s %s', $pofile, $statusnet_pot));
-        system(sprintf('msgfmt -f -o %s %s', $mofile, $pofile));
+        // --backup=off is workaround for Mac OS X fail
+        system(sprintf('msgmerge -U --backup=off %s %s', $pofile, $statusnet_pot));
+        /* Do not rebuild/add .mo files by default
+         * FIXME: should be made a command line parameter.
+        system(sprintf('msgfmt -o %s %s', $mofile, $pofile));
+         */
     } else {
         echo "Unchanged - ".$code."\n";
     }