mirror of https://github.com/BOINC/boinc.git
46 lines
1.2 KiB
PHP
Executable File
46 lines
1.2 KiB
PHP
Executable File
#!/usr/bin/php
|
|
<?php
|
|
|
|
// generate .po template for the BOINC web site.
|
|
//
|
|
// 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
|
|
# Copyright (C) 2008-2009 University of California
|
|
#
|
|
# This file is distributed under the same license as BOINC.
|
|
#
|
|
# FileID : \$Id\$
|
|
#
|
|
msgid ""
|
|
msgstr ""
|
|
"Project-Id-Version: BOINC \$Id\$\\n"
|
|
"Report-Msgid-Bugs-To: BOINC translation team <boinc_loc@ssl.berkeley.edu>\\n"
|
|
"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"
|
|
|
|
|
|
HDR;
|
|
|
|
$out = fopen("BOINC-Web.pot", "w");
|
|
fwrite($out, $header);
|
|
|
|
$files = "docutil.php download.php help.php help_funcs.php index.php projects.inc ../html/inc/news.inc";
|
|
$pipe = popen("xgettext --omit-header -o - --keyword=tra -L PHP $files", "r");
|
|
stream_copy_to_stream($pipe, $out);
|
|
fclose($pipe);
|
|
fclose($out);
|
|
|
|
echo "Created BOINC-Web.pot. If it's OK, move it to ../locale/templates and commit\n";
|
|
?>
|