]> git.lyx.org Git - lyx.git/blobdiff - po/postats.sh
po remerge
[lyx.git] / po / postats.sh
index d803374c02e60438e570bc4be0028be3c3a93965..d37817c736d0006461ae4a924189e49d793dd0cf 100755 (executable)
@@ -5,7 +5,7 @@
 # This file is part of LyX, the document processor.
 # Licence details can be found in the file COPYING.
 #
-# author: Michael Schmitt, michael.schmitt@teststep.org
+# author: Michael Gerz, michael.gerz@teststep.org
 #
 # This script extracts some information from the po file headers (last
 # translator, revision date), generates the corresponding gmo files
 # and generates a PHP web page.
 #
 # Invocation:
-#    postats.sh po_files > "pathToWebPages"/i18n.php3
+#    postats.sh po_files > "pathToWebPages"/i18n.php
 
 # modifiy this when you change version
 # Note that an empty lyx_branch variable (ie cvs HEAD)
 # will "do the right thing".
-lyx_version=1.4.0cvs
+lyx_version=1.5.0svn
 lyx_branch=
 
 
@@ -99,14 +99,14 @@ run_msgfmt () {
        date=`grep 'Revision-Date' $pofile | sed 's/  */ /g' | cut -d ' ' -f 2`
 
        # Searching for a string of the form
-       # '"Last-Translator: Michael Schmitt <Michael.Schmitt@teststep.org>\n"'
+       # '"Last-Translator: Michael Gerz <Michael.Gerz@teststep.org>\n"'
        translator=
        email=
        input=`grep "Last-Translator" $pofile` && {
                input=`echo $input | sed 's/  */ /g' | cut -d ' ' -f 2-`
 
                translator=`echo $input | cut -d '<' -f 1 | sed 's/ *$//'`
-               email=`echo $input | cut -d '<' -f 2 | cut -d '>' -f 1`
+               email=`echo $input | cut -d '<' -f 2 | cut -d '>' -f 1 | sed -e 's/@/ () /' -e 's/\./ ! /g'`
        }
        unset input
 
@@ -161,12 +161,12 @@ cat <<EOF
        // What's the short name of the page in the navigation bar?
        \$item="i18n";
        // Who is the author?
-       \$author="Michael Schmitt";
+       \$author="Michael Gerz";
        // Full name of the file (relative path from LyX home page -- i.e., it should
-       // be "foo.php3" or "bar/foo.php3")
-       \$file_full="i18n.php3";
+       // be "foo.php" or "bar/foo.php")
+       \$file_full="devel/i18n.php";
 
-       include("start.php3");
+       include("start.php");
 
        error_reporting(E_ALL);
 ?>
@@ -181,9 +181,9 @@ EOF
 dump_tail () {
 
 test "$lyx_branch" = "" && {
-       branch_tag=""
+       branch_tag="trunk"
 } || {
-       branch_tag="?only_with_tag=$lyx_branch"
+       branch_tag="branches/$lyx_branch"
 }
 
 cat <<EOF
@@ -198,12 +198,15 @@ cat <<EOF
        'eu' => 'Basque',
        'fi' => 'Finnish',
        'fr' => 'French',
+       'gl' => 'Galician',
        'he' => 'Hebrew',
        'hu' => 'Hungarian',
        'it' => 'Italian',
+       'ja' => 'Japanese',
+       'ko' => 'Korean',
        'nl' => 'Dutch',
        'nn' => 'Nynorsk',
-       'no' => 'Norwegian',
+       'nb' => 'Norwegian',
        'pl' => 'Polish',
        'pt' => 'Portuguese',
        'ro' => 'Romanian',
@@ -212,7 +215,9 @@ cat <<EOF
        'sl' => 'Slovenian',
        'sv' => 'Swedish',
        'tr' => 'Turkish',
-       'wa' => 'Walloon'
+       'wa' => 'Walloon',
+       'zh_CN' => 'Simplified Chinese',
+       'zh_TW' => 'Traditional Chinese'
 );
 
 \$noOfMsg = \$podata[0]['msg_tr'] + \$podata[0]['msg_fu'] + \$podata[0]['msg_nt'];
@@ -229,7 +234,7 @@ usort (\$podata, "cmp");
 
 <p>
        The following table details the current state of the translations of the
-       LyX GUI for the LyX stable branch (currently $lyx_version).
+       LyX GUI for the LyX development branch (currently $lyx_version).
        Unfortunately, only a few languages are well-supported. The LyX team may,
        therefore, decide to exclude some of the translations from a formal
        release in order not to confuse the user with a strongly mixed-language
@@ -270,7 +275,7 @@ while (list(\$foo,\$info) = each(\$podata)) {
        }
        print "<td \$style>" ;
 
-       print "<a href=\"http://www.lyx.org/cgi-bin/viewcvs.cgi/lyx-devel/po/" . \$info['langcode'] . ".po$branch_tag\">" . \$lang[\$info['langcode']] . "</a></td>";
+       print "<a href=\"http://www.lyx.org/trac/browser/lyx-devel/$branch_tag/po/" . \$info['langcode'] . ".po?format=raw\">" . \$lang[\$info['langcode']] . "</a></td>";
 
        print "<td \$style align=\"right\">" . \$info['msg_tr'] . "</td>";
 
@@ -307,7 +312,7 @@ while (list(\$foo,\$info) = each(\$podata)) {
 </tbody>
 </table>
 <?
-include("end.php3");
+include("end.php");
 ?>
 EOF
 }