2009-06-03 21:02:00 +00:00
|
|
|
#!/usr/bin/env php
|
2008-10-12 15:22:16 +00:00
|
|
|
<?php
|
2009-03-24 21:24:57 +00:00
|
|
|
// This file is part of BOINC.
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2008 University of California
|
|
|
|
//
|
|
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
|
|
// under the terms of the GNU Lesser General Public License
|
|
|
|
// as published by the Free Software Foundation,
|
|
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
// See the GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2009-10-02 18:32:40 +00:00
|
|
|
$cli_only = true;
|
2009-09-15 18:14:37 +00:00
|
|
|
require_once("../inc/util_ops.inc");
|
2009-10-02 18:32:40 +00:00
|
|
|
require_once("../inc/translation.inc");
|
2009-09-15 18:14:37 +00:00
|
|
|
|
2008-11-28 19:03:05 +00:00
|
|
|
error_reporting(E_ALL);
|
|
|
|
ini_set('display_errors', true);
|
|
|
|
ini_set('display_startup_errors', true);
|
2008-10-12 15:22:16 +00:00
|
|
|
|
2009-03-24 23:27:12 +00:00
|
|
|
system("rm -f $lang_language_dir/$lang_compiled_dir/*");
|
2009-05-11 16:45:33 +00:00
|
|
|
|
|
|
|
$lang_log_level = 0;
|
2009-06-11 17:25:01 +00:00
|
|
|
if ($argc >= 3 && $argv[1] == '-d') {
|
|
|
|
$lang_log_level = $argv[2];
|
|
|
|
}
|
2009-05-11 16:45:33 +00:00
|
|
|
|
|
|
|
// process the generic BOINC web site strings
|
|
|
|
//
|
2013-12-04 18:22:11 +00:00
|
|
|
build_translation_array_files(
|
|
|
|
$lang_language_dir, $lang_translations_dir, $lang_compiled_dir
|
|
|
|
);
|
2009-05-11 16:45:33 +00:00
|
|
|
|
|
|
|
// process the project-specific strings
|
|
|
|
//
|
2013-12-04 18:22:11 +00:00
|
|
|
build_translation_array_files(
|
|
|
|
$lang_language_dir, $lang_prj_translations_dir, $lang_compiled_dir
|
|
|
|
);
|
2009-05-11 16:45:33 +00:00
|
|
|
|
|
|
|
echo "update_translations finished\n";
|
2008-10-12 15:22:16 +00:00
|
|
|
|
2008-11-28 19:03:05 +00:00
|
|
|
?>
|