X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=scripts%2Fupdate_translations.php;h=45fe460a04f614bcab968ec856272542ea801b6c;hb=6a6d88f0f4641f294a5c513c6aacba604e37222f;hp=c0919161a17b933ba0c0fd77d3c771174badffd1;hpb=8bc924224b96928e9d41a18a83f515e5e53ba4f7;p=quix0rs-gnu-social.git diff --git a/scripts/update_translations.php b/scripts/update_translations.php index c0919161a1..45fe460a04 100755 --- a/scripts/update_translations.php +++ b/scripts/update_translations.php @@ -1,8 +1,8 @@ #!/usr/bin/env php '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', + 'language' => $twnCode)); - $code = $language['lang']; - $file = 'http://laconi.ca/pootle/' . $code . - '/laconica/LC_MESSAGES/laconica.po'; $lcdir = INSTALLDIR . '/locale/' . $code; $msgdir = "$lcdir/LC_MESSAGES"; - $pofile = "$msgdir/laconica.po"; - $mofile = "$msgdir/laconica.mo"; + $pofile = "$msgdir/statusnet.po"; + $mofile = "$msgdir/statusnet.mo"; /* Check for an existing */ if (!is_dir($msgdir)) { @@ -59,23 +95,43 @@ foreach ($languages as $language) { } /* Get the remote one */ - $newFile = file_get_contents($file); + $new_file = curl_get_file($file_url); - if ($newfile === FALSE) { - echo "Couldn't retrieve .po file for $code: $file\n"; + if ($new_file === FALSE) { + echo "Couldn't retrieve .po file for $code: $file_url\n"; continue; } // Update if the local .po file is different to the one downloaded, or // if the .mo file is not present. - if (sha1($newFile) != $existingSHA1 || !file_exists($mofile)) { + if (sha1($new_file) != $existingSHA1 || !file_exists($mofile)) { echo "Updating ".$code."\n"; - file_put_contents($pofile, $newFile); - system(sprintf('msgmerge -U %s %s', $pofile, $laconica_pot)); - system(sprintf('msgfmt -f -o %s %s', $mofile, $pofile)); + file_put_contents($pofile, $new_file); + // --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"; } } echo "Finished\n"; + + +function curl_get_file($url) +{ + $c = curl_init(); + curl_setopt($c, CURLOPT_RETURNTRANSFER, 1); + curl_setopt($c, CURLOPT_URL, $url); + $contents = curl_exec($c); + curl_close($c); + + if (!empty($contents)) { + return $contents; + } + + return FALSE; +}