2013-10-15 18:19:59 +00:00
|
|
|
#! /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";
|
|
|
|
$tdir = "locale/templates";
|
|
|
|
|
|
|
|
system("cd doc; build_po.php");
|
|
|
|
system("tools/compare_pot doc/BOINC-Web.pot $tdir/BOINC-Web.pot $emails");
|
|
|
|
|
2013-10-16 05:46:18 +00:00
|
|
|
system("cd html/ops; build_po_boinc.php");
|
2013-10-15 18:19:59 +00:00
|
|
|
system("tools/compare_pot html/ops/BOINC-Project-Generic.pot $tdir/BOINC-Project-Generic.pot $emails");
|
|
|
|
|
|
|
|
system("cd client; build_po");
|
|
|
|
system("tools/compare_pot client/BOINC-Client.pot $tdir/BOINC-Client.pot $emails");
|
|
|
|
|
|
|
|
system("cd clientgui; build_po");
|
|
|
|
system("tools/compare_pot clientgui/BOINC-Manager.pot $tdir/BOINC-Manager.pot $emails");
|
|
|
|
|
|
|
|
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-16 05:46:18 +00:00
|
|
|
// as long as we're at it, generate translations for BOINC web site
|
|
|
|
system("cd doc; update_translations.php");
|
2013-10-15 18:19:59 +00:00
|
|
|
?>
|