boinc/build_pos

38 lines
1.2 KiB
Plaintext
Raw Normal View History

#! /usr/bin/env php
<?php
// Generate translation templates from source code.
// Compare them with the current versions in trunk;
// if they differ, send email telling us to validate and commit
// the new versions.
$emails = "davea@ssl.berkeley.edu rwalton@ssl.berkeley.edu";
$tdir = "locale/templates";
2013-10-29 19:24:50 +00:00
system("cd doc; ./build_po.php");
system("tools/compare_pot doc/BOINC-Web.pot $tdir/BOINC-Web.pot $emails");
2013-10-29 19:24:50 +00:00
system("cd html/ops; ./build_po_boinc.php");
system("tools/compare_pot html/ops/BOINC-Project-Generic.pot $tdir/BOINC-Project-Generic.pot $emails");
2013-10-29 19:24:50 +00:00
system("cd client; ./build_po");
system("tools/compare_pot client/BOINC-Client.pot $tdir/BOINC-Client.pot $emails");
2013-10-29 19:24:50 +00:00
system("cd clientgui; ./build_po");
system("tools/compare_pot clientgui/BOINC-Manager.pot $tdir/BOINC-Manager.pot $emails");
2013-10-29 19:24:50 +00:00
system("cd mac_installer; ./build_po");
system("tools/compare_pot mac_installer/BOINC-Setup.pot $tdir/BOINC-Setup.pot $emails");
system("cd android; a2po export -v");
system("tools/compare_pot android/BOINC-Android.pot $tdir/BOINC-Android.pot $emails");
2013-10-22 05:22:01 +00:00
// generate translations for BOINC web site
//
2013-10-29 19:24:50 +00:00
system("cd doc; ./update_translations.php");
2013-10-22 05:22:01 +00:00
// copy generic web files to html/translations
//
2013-10-29 19:24:50 +00:00
system("cd locale; ./copy_files.php");
?>