* Copyright (C) 2005 James Grant * Copyright (C) 2024 AlgoLibre Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public * License as published by the Free Software Foundation, version 2. * * This program 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 * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ ?> 'committee_main.php', 'Administration' => 'admin/index.php'), 'translations_management'); // by default, we will edit the french translations if (get_value_from_array($_GET, 'translang')) $_SESSION['translang'] = $_GET['translang']; if (!get_value_from_array($_SESSION, 'translang')) $_SESSION['translang'] = 'fr'; $show = false; if (get_value_from_array($_GET, 'show')) $show = $_GET['show']; else if (get_value_from_array($_POST, 'show')) $show = $_POST['show']; if (!$show) $show = 'missing'; if (get_value_from_array($_POST, 'action') == 'save') { // first, delete anything thats supposed to eb deleted if (count(get_value_from_array($_POST, 'delete', []))) { foreach ($_POST['delete'] AS $del) { $stmt = $pdo->prepare("DELETE FROM translations WHERE lang=? AND strmd5=?"); $stmt->execute([$_SESSION['translang'],$del]); } echo happy(i18n('Translation(s) deleted')); } if ($_POST['changedFields']) { $changed = split(',', $_POST['changedFields']); foreach ($changed AS $ch) { $stmt = $pdo->prepare("UPDATE translations SET val=? WHERE strmd5=? AND lang=?"); $stmt->execute([stripslashes($_POST['val'][$ch]),$ch ,$_SESSION['translang']]); } echo happy(i18n('Translation(s) saved')); } } echo ''; echo ''; echo '
'; echo i18n('Choose a language to manage translations for'); echo ''; echo '
'; echo ''; echo '
'; echo '
'; if ($show == 'missing') { echo i18n('Show missing translations'); echo '  |  '; echo '' . i18n('Show all translations') . ''; } else { echo '' . i18n('Show missing translations') . ''; echo '  |  '; echo i18n('Show all translations'); } echo '
'; echo '
'; echo i18n('Instructions: Enter the translation below the string and click Save. Only one translation can be saved at a time. The terms %1, %2, etc get substituded with various arguments to the string, so they must appear in the translation if they are in the original string.'); echo '
'; echo '
'; if ($show == 'missing') $showquery = "AND ( val is null OR val='' )"; else $showquery = ''; $q = $pdo->prepare("SELECT * FROM translations WHERE lang=? $showquery ORDER BY str"); $q->execute([get_value_from_array($_SESSION, 'translang')]); $num = $q->rowCount(); echo i18n('Showing %1 translation strings', array($num), array('number of strings')); echo '
'; echo ""; echo ''; echo ''; ?> '; echo ''; echo '\n"; echo ''; global $translangname; echo '' . i18n('English') . ' / ' . $translangname . "\n"; while ($r = $q->fetch(PDO::FETCH_OBJ)) { echo ''; echo ''; echo "strmd5\">\n"; echo ''; echo htmlspecialchars($r->str); if ($r->argsdesc) echo '
' . i18n('Arguments:') . " $r->argsdesc "; echo ''; echo ''; echo ''; echo "strmd5}\" onchange=\"return doFocus('{$r->strmd5}');\" style=\"width: 95%\" type=\"text\" name=\"val[{$r->strmd5}]\" value=\"" . htmlspecialchars($r->val) . '" />'; echo ''; } echo ''; echo ''; echo "
\n"; send_footer(); ?>