2009-05-01 17:05:12 +00:00
|
|
|
#!/usr/bin/php
|
|
|
|
<?php
|
|
|
|
|
2010-01-15 23:25:46 +00:00
|
|
|
// generate .po template for the BOINC web site.
|
2009-05-01 17:05:12 +00:00
|
|
|
//
|
|
|
|
// NOTE: after running this, move LANG_NAME_NATIVE and LANG_NAME_INTERNATIONAL
|
|
|
|
// to the top, and set their strings to "English"
|
|
|
|
// (should automate this)
|
|
|
|
|
|
|
|
$path = ".";
|
|
|
|
|
|
|
|
$date = strftime('%Y-%m-%d %H:%M %Z');
|
|
|
|
$header = <<<HDR
|
|
|
|
# BOINC web translation
|
2009-05-01 17:21:23 +00:00
|
|
|
# Copyright (C) 2008-2009 University of California
|
2009-05-01 17:05:12 +00:00
|
|
|
#
|
|
|
|
# This file is distributed under the same license as BOINC.
|
|
|
|
#
|
|
|
|
# FileID : \$Id\$
|
2009-05-14 20:30:13 +00:00
|
|
|
#
|
2009-05-01 17:05:12 +00:00
|
|
|
msgid ""
|
|
|
|
msgstr ""
|
|
|
|
"Project-Id-Version: BOINC \$Id\$\\n"
|
2009-05-01 17:21:23 +00:00
|
|
|
"Report-Msgid-Bugs-To: BOINC translation team <boinc_loc@ssl.berkeley.edu>\\n"
|
2009-05-01 17:05:12 +00:00
|
|
|
"POT-Creation-Date: $date\\n"
|
|
|
|
"Last-Translator: Generated automatically from source files\\n"
|
|
|
|
"MIME-Version: 1.0\\n"
|
|
|
|
"Content-Type: text/plain; charset=utf-8\\n"
|
|
|
|
"Content-Transfer-Encoding: 8bit\\n"
|
|
|
|
"X-Poedit-SourceCharset: utf-8\\n"
|
|
|
|
|
2009-05-14 20:30:13 +00:00
|
|
|
|
2009-05-01 17:05:12 +00:00
|
|
|
HDR;
|
|
|
|
|
|
|
|
$out = fopen("BOINC-Web.pot", "w");
|
|
|
|
fwrite($out, $header);
|
2009-05-05 20:40:54 +00:00
|
|
|
$pipe = popen("xgettext --omit-header -o - --keyword=tra -L PHP $path/*.inc $path/*.php", "r");
|
2009-05-01 17:05:12 +00:00
|
|
|
stream_copy_to_stream($pipe, $out);
|
|
|
|
fclose($pipe);
|
|
|
|
fclose($out);
|
|
|
|
|
|
|
|
echo "Created BOINC-Web.pot. Move it to ../locale/templates\n";
|
|
|
|
?>
|