]> git.sur5r.net Git - bacula/bacula/commitdiff
baculum: Tweak update language files
authorMarcin Haba <marcin.haba@bacula.pl>
Sun, 30 Nov 2014 23:06:51 +0000 (00:06 +0100)
committerMarcin Haba <marcin.haba@bacula.pl>
Sun, 30 Nov 2014 23:06:51 +0000 (00:06 +0100)
gui/baculum/protected/Lang/en/messages.mo
gui/baculum/protected/Lang/en/messages.po
gui/baculum/protected/Lang/pl/messages.mo
gui/baculum/protected/Lang/pl/messages.po
gui/baculum/protected/Portlets/JobConfiguration.php
gui/baculum/protected/Portlets/SlideWindow.php

index 5355f22bca6327f558d600b492ff33db975f684b..c3a9b2785a952007caa62474f55b1507f1d5e7b0 100755 (executable)
Binary files a/gui/baculum/protected/Lang/en/messages.mo and b/gui/baculum/protected/Lang/en/messages.mo differ
index 5408b7c0a2ba5b4698cd6f0ed0bcafdd042864c8..1ebb8283d90f2b3594df099c36477a10ec9b44bc 100755 (executable)
@@ -1,6 +1,6 @@
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2014-11-30 20:04:21\n"
+"PO-Revision-Date: 2014-11-30 22:43:34\n"
 "Project-Id-Version: \n"
 "POT-Creation-Date: \n"
 "Last-Translator: Marcin Haba <marcin.haba@bacula.pl>\n"
@@ -715,19 +715,6 @@ msgstr "Enable logging"
 msgid "clear bvfs cache"
 msgstr "clear bvfs cache"
 
-msgid "Output for selected job is not available yet or you do not have enabled logging job logs to catalog database.\n"
-"\n"
-"For watching job log there is need to add to the job Messages resource next directive:\n"
-"\n"
-"console = all, !skipped, !saved\n"
-""
-msgstr "Output for selected job is not available yet or you do not have enabled logging job logs to catalog database.\n"
-"\n"
-"For watching job log there is need to add to the job Messages resource next directive:\n"
-"\n"
-"console = all, !skipped, !saved\n"
-""
-
 msgid "Bconsole admin config file path:"
 msgstr "Bconsole admin config file path:"
 
@@ -899,3 +886,12 @@ msgstr "Enter"
 msgid "Clear"
 msgstr "Clear"
 
+msgid "select action"
+msgstr "select action"
+
+msgid "Delete"
+msgstr "Delete"
+
+msgid "Output for selected job is not available yet or you do not have enabled logging job logs to catalog database. For watching job log there is need to add to the job Messages resource next directive: console = all, !skipped, !saved"
+msgstr "Output for selected job is not available yet or you do not have enabled logging job logs to catalog database.\n\nFor watching job log there is need to add to the job Messages resource next directive:\n\nconsole = all, !skipped, !saved"
+
index 0a50396900999f02bc5d2ffc04023137c8b86083..db61661d1057f4ce97fe02bf82e974fbbd30d10b 100755 (executable)
Binary files a/gui/baculum/protected/Lang/pl/messages.mo and b/gui/baculum/protected/Lang/pl/messages.mo differ
index be977d1d55380152cfbc66f347909c30793bf81c..fdf3dbac8e87bc8599e15e5df93e4c5932d62cd2 100644 (file)
@@ -1,6 +1,6 @@
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2014-11-30 20:04:11\n"
+"PO-Revision-Date: 2014-11-30 22:45:33\n"
 "Project-Id-Version: \n"
 "POT-Creation-Date: \n"
 "Last-Translator: Marcin Haba <marcin.haba@bacula.pl>\n"
@@ -650,7 +650,7 @@ msgid "View mode:"
 msgstr "Widok:"
 
 msgid "Action:"
-msgstr "Akacja:"
+msgstr "Akcja:"
 
 msgid "unmark all and close"
 msgstr "Odznacz elementy i zamknij"
@@ -817,3 +817,12 @@ msgstr "Wykonaj"
 msgid "Clear"
 msgstr "Wyczyść"
 
+msgid "select action"
+msgstr "wybierz akcję"
+
+msgid "Delete"
+msgstr "Usuń"
+
+msgid "Output for selected job is not available yet or you do not have enabled logging job logs to catalog database. For watching job log there is need to add to the job Messages resource next directive: console = all, !skipped, !saved"
+msgstr "Listing dla wybranego zadania nie jest jeszcze dostępny lub nie masz włączonego logowania statusów zadań do bazy katalogowej.\n\nW celu oglądania listingów ze statusami zadań potrzeba włączyć w zasobie Messages następującą dyrektywę:\n\nconsole = all, !skipped, !saved."
+
index 34a1a071ab0412799b95b879e00cd62fcf7f2c32..e08869d22749111ff63bde11eba1c479c91bd12a 100644 (file)
@@ -30,7 +30,7 @@ class JobConfiguration extends Portlets {
                $this->JobName->Text = $jobdata->job;
                $this->JobID->Text = $jobdata->jobid;
                $joblog = $this->Application->getModule('api')->get(array('joblog', $jobdata->jobid))->output;
-               $this->Estimation->Text = is_array($joblog) ? implode(PHP_EOL, $joblog) : Prado::localize("Output for selected job is not available yet or you do not have enabled logging job logs to catalog database."  . PHP_EOL . PHP_EOL .  "For watching job log there is need to add to the job Messages resource next directive:" . PHP_EOL . PHP_EOL . "console = all, !skipped, !saved" . PHP_EOL);
+               $this->Estimation->Text = is_array($joblog) ? implode(PHP_EOL, $joblog) : Prado::localize("Output for selected job is not available yet or you do not have enabled logging job logs to catalog database. For watching job log there is need to add to the job Messages resource next directive: console = all, !skipped, !saved");
 
                $this->Level->dataSource = $this->Application->getModule('misc')->getJobLevels();
                $this->Level->SelectedValue = $jobdata->level;
@@ -81,7 +81,7 @@ class JobConfiguration extends Portlets {
 
        public function status($sender, $param) {
                $joblog = $this->Application->getModule('api')->get(array('joblog', $this->JobID->Text))->output;
-               $this->Estimation->Text = is_array($joblog) ? implode(PHP_EOL, $joblog) : Prado::localize("Output for selected job is not available yet or you do not have enabled logging job logs to catalog database."  . PHP_EOL . PHP_EOL .  "For watching job log there is need to add to the job Messages resource next directive:" . PHP_EOL . PHP_EOL . "console = all, !skipped, !saved" . PHP_EOL);
+               $this->Estimation->Text = is_array($joblog) ? implode(PHP_EOL, $joblog) : Prado::localize("Output for selected job is not available yet or you do not have enabled logging job logs to catalog database. For watching job log there is need to add to the job Messages resource next directive: console = all, !skipped, !saved");
        }
 
        public function delete($sender, $param) {
index 17ee34e7e8e539a05ee2d16d60ded6e3d841610c..4882df7fd73de28ca52295e54aa1cf18eda074ca 100644 (file)
@@ -78,7 +78,11 @@ class SlideWindow extends Portlets {
                        $this->Simple->Checked = ($_SESSION['view' . $this->getParent()->ID] == self::NORMAL_VIEW);
                        $this->Details->Checked = ($_SESSION['view' . $this->getParent()->ID] == self::DETAIL_VIEW);
                        $actions = array_key_exists($this->getParent()->ID, $this->actions) ? $this->actions[$this->getParent()->ID] : array();
-                       $this->Actions->dataSource = $actions;
+                       $actionsLang = array();
+                       foreach($actions as $key => $val) {
+                               $actionsLang[$key] = Prado::localize($val);
+                       }
+                       $this->Actions->dataSource = $actionsLang;
                        $this->Actions->dataBind();
                }
        }