mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-24 03:07:13 +00:00
Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
@@ -215,8 +215,8 @@ class cron extends CI_Controller {
|
||||
$single->cron_description = $cron->description;
|
||||
$single->cron_status = $this->cronStatus2html($cron->enabled, $cron->status);
|
||||
$single->cron_expression = $this->cronExpression2html($cron->expression);
|
||||
$single->cron_last_run = $cron->last_run ?? 'never';
|
||||
$single->cron_next_run = ($cron->enabled == '1') ? ($cron->next_run ?? 'calculating..') : 'never';
|
||||
$single->cron_last_run = $cron->last_run ?? __("never");
|
||||
$single->cron_next_run = ($cron->enabled == '1') ? ($cron->next_run ?? __("calculating...")) : __("never");
|
||||
$single->cron_edit = $this->cronEdit2html($cron->id);
|
||||
$single->cron_enabled = $this->cronEnabled2html($cron->id, $cron->enabled);
|
||||
array_push($hres, $single);
|
||||
@@ -227,12 +227,16 @@ class cron extends CI_Controller {
|
||||
private function cronStatus2html($enabled, $status) {
|
||||
if ($enabled == '1') {
|
||||
if ($status == 'healthy') {
|
||||
$htmlret = '<span class="badge text-bg-success">healthy</span>';
|
||||
$htmlret = '<span class="badge text-bg-success">' . __("healthy") . '</span>';
|
||||
} else if ($status == 'failed') {
|
||||
$htmlret = '<span class="badge text-bg-danger">' . __("failed") . '</span>';
|
||||
} else if ($status == 'pending') {
|
||||
$htmlret = '<span class="badge text-bg-warning">' . __("pending") . '</span>';
|
||||
} else {
|
||||
$htmlret = '<span class="badge text-bg-warning">' . $status . '</span>';
|
||||
}
|
||||
} else {
|
||||
$htmlret = '<span class="badge text-bg-secondary">disabled</span>';
|
||||
$htmlret = '<span class="badge text-bg-secondary">' . __("disabled") . '</span>';
|
||||
}
|
||||
return $htmlret;
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-11-04 13:50+0000\n"
|
||||
"POT-Creation-Date: 2024-11-05 08:16+0000\n"
|
||||
"PO-Revision-Date: 2024-11-01 08:53+0000\n"
|
||||
"Last-Translator: Plamen Panteleev <lz1ppl@abv.bg>\n"
|
||||
"Language-Team: Bulgarian <https://translate.wavelog.org/projects/wavelog/"
|
||||
@@ -591,26 +591,56 @@ msgstr ""
|
||||
msgid "Edit Cronjob"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:274
|
||||
#: application/controllers/Cron.php:218 application/controllers/Cron.php:219
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:219
|
||||
msgid "calculating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:230 application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:232 application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:234 application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:239 application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/views/interface_assets/footer.php:37
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/controllers/Cron.php:282
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s seconds ago.%sPlease check your master cron! "
|
||||
"It should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:281
|
||||
#: application/controllers/Cron.php:285
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s minutes ago.%sSeems like your Mastercron "
|
||||
"isn't running!%sIt should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:286 application/views/cron/index.php:29
|
||||
#: application/controllers/Cron.php:290 application/views/cron/index.php:29
|
||||
msgctxt "Master Cron"
|
||||
msgid "Not running"
|
||||
msgstr ""
|
||||
@@ -5818,31 +5848,6 @@ msgstr ""
|
||||
msgid "Next Run"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:102
|
||||
msgid "Your Mastercron isn't running."
|
||||
msgstr ""
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-11-04 13:50+0000\n"
|
||||
"POT-Creation-Date: 2024-11-05 08:16+0000\n"
|
||||
"PO-Revision-Date: 2024-08-17 10:49+0000\n"
|
||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||
"Language-Team: Bosnian <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -592,26 +592,56 @@ msgstr ""
|
||||
msgid "Edit Cronjob"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:274
|
||||
#: application/controllers/Cron.php:218 application/controllers/Cron.php:219
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:219
|
||||
msgid "calculating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:230 application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:232 application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:234 application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:239 application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/views/interface_assets/footer.php:37
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/controllers/Cron.php:282
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s seconds ago.%sPlease check your master cron! "
|
||||
"It should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:281
|
||||
#: application/controllers/Cron.php:285
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s minutes ago.%sSeems like your Mastercron "
|
||||
"isn't running!%sIt should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:286 application/views/cron/index.php:29
|
||||
#: application/controllers/Cron.php:290 application/views/cron/index.php:29
|
||||
msgctxt "Master Cron"
|
||||
msgid "Not running"
|
||||
msgstr ""
|
||||
@@ -5824,31 +5854,6 @@ msgstr ""
|
||||
msgid "Next Run"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:102
|
||||
msgid "Your Mastercron isn't running."
|
||||
msgstr ""
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-11-04 13:50+0000\n"
|
||||
"POT-Creation-Date: 2024-11-05 08:16+0000\n"
|
||||
"PO-Revision-Date: 2024-08-17 10:49+0000\n"
|
||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||
"Language-Team: Montenegrin <https://translate.wavelog.org/projects/wavelog/"
|
||||
@@ -592,26 +592,56 @@ msgstr ""
|
||||
msgid "Edit Cronjob"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:274
|
||||
#: application/controllers/Cron.php:218 application/controllers/Cron.php:219
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:219
|
||||
msgid "calculating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:230 application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:232 application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:234 application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:239 application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/views/interface_assets/footer.php:37
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/controllers/Cron.php:282
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s seconds ago.%sPlease check your master cron! "
|
||||
"It should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:281
|
||||
#: application/controllers/Cron.php:285
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s minutes ago.%sSeems like your Mastercron "
|
||||
"isn't running!%sIt should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:286 application/views/cron/index.php:29
|
||||
#: application/controllers/Cron.php:290 application/views/cron/index.php:29
|
||||
msgctxt "Master Cron"
|
||||
msgid "Not running"
|
||||
msgstr ""
|
||||
@@ -5824,31 +5854,6 @@ msgstr ""
|
||||
msgid "Next Run"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:102
|
||||
msgid "Your Mastercron isn't running."
|
||||
msgstr ""
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-11-04 13:50+0000\n"
|
||||
"POT-Creation-Date: 2024-11-05 08:16+0000\n"
|
||||
"PO-Revision-Date: 2024-09-23 14:46+0000\n"
|
||||
"Last-Translator: Filip Melik <filip@melik.cz>\n"
|
||||
"Language-Team: Czech <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -594,26 +594,56 @@ msgstr ""
|
||||
msgid "Edit Cronjob"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:274
|
||||
#: application/controllers/Cron.php:218 application/controllers/Cron.php:219
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:219
|
||||
msgid "calculating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:230 application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:232 application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:234 application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:239 application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/views/interface_assets/footer.php:37
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/controllers/Cron.php:282
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s seconds ago.%sPlease check your master cron! "
|
||||
"It should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:281
|
||||
#: application/controllers/Cron.php:285
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s minutes ago.%sSeems like your Mastercron "
|
||||
"isn't running!%sIt should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:286 application/views/cron/index.php:29
|
||||
#: application/controllers/Cron.php:290 application/views/cron/index.php:29
|
||||
msgctxt "Master Cron"
|
||||
msgid "Not running"
|
||||
msgstr "Není spuštěno"
|
||||
@@ -5827,31 +5857,6 @@ msgstr ""
|
||||
msgid "Next Run"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:102
|
||||
msgid "Your Mastercron isn't running."
|
||||
msgstr ""
|
||||
|
||||
@@ -23,8 +23,8 @@ msgstr ""
|
||||
"POT-Creation-Date: 2024-11-04 13:50+0000\n"
|
||||
"PO-Revision-Date: 2024-11-05 08:16+0000\n"
|
||||
"Last-Translator: Fabian Berg <fabian.berg@hb9hil.org>\n"
|
||||
"Language-Team: German <https://translate.wavelog.org/projects/wavelog/"
|
||||
"main-translation/de/>\n"
|
||||
"Language-Team: German <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
"translation/de/>\n"
|
||||
"Language: de_DE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -607,10 +607,11 @@ msgstr "Bearbeite Cronjob"
|
||||
|
||||
#: application/controllers/Cron.php:274
|
||||
#: application/views/interface_assets/footer.php:37
|
||||
#: application/controllers/Cron.php:278
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/controllers/Cron.php:278 application/controllers/Cron.php:282
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s seconds ago.%sPlease check your master cron! "
|
||||
@@ -619,7 +620,7 @@ msgstr ""
|
||||
"Letzte Ausführung fand vor mehr als %s Sekunden statt.%sBitte überprüfe "
|
||||
"deinen Master-Cron! Er sollte jede Minute laufen (* * * * *)."
|
||||
|
||||
#: application/controllers/Cron.php:281
|
||||
#: application/controllers/Cron.php:281 application/controllers/Cron.php:285
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s minutes ago.%sSeems like your Mastercron "
|
||||
@@ -629,6 +630,7 @@ msgstr ""
|
||||
"dein Mastercron nicht läuft!%sEr sollte jede Minute laufen (* * * * *)."
|
||||
|
||||
#: application/controllers/Cron.php:286 application/views/cron/index.php:29
|
||||
#: application/controllers/Cron.php:290
|
||||
msgctxt "Master Cron"
|
||||
msgid "Not running"
|
||||
msgstr "Läuft nicht"
|
||||
@@ -6122,19 +6124,19 @@ msgstr "Letzte Ausführung"
|
||||
msgid "Next Run"
|
||||
msgstr "Nächste Ausführung"
|
||||
|
||||
#: application/views/cron/index.php:70
|
||||
#: application/views/cron/index.php:70 application/controllers/Cron.php:230
|
||||
msgid "healthy"
|
||||
msgstr "gesund"
|
||||
|
||||
#: application/views/cron/index.php:72
|
||||
#: application/views/cron/index.php:72 application/controllers/Cron.php:232
|
||||
msgid "failed"
|
||||
msgstr "fehlgeschlagen"
|
||||
|
||||
#: application/views/cron/index.php:74
|
||||
#: application/views/cron/index.php:74 application/controllers/Cron.php:234
|
||||
msgid "pending"
|
||||
msgstr "wartend"
|
||||
|
||||
#: application/views/cron/index.php:79
|
||||
#: application/views/cron/index.php:79 application/controllers/Cron.php:239
|
||||
msgid "disabled"
|
||||
msgstr "ausgeschaltet"
|
||||
|
||||
@@ -6143,7 +6145,8 @@ msgstr "ausgeschaltet"
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
#: application/views/user/index.php:136 application/controllers/Cron.php:218
|
||||
#: application/controllers/Cron.php:219
|
||||
msgid "never"
|
||||
msgstr "nie"
|
||||
|
||||
@@ -12587,6 +12590,10 @@ msgstr "Dein Rufzeichen:"
|
||||
msgid "Submit Request"
|
||||
msgstr "Anfrage senden"
|
||||
|
||||
#: application/controllers/Cron.php:219
|
||||
msgid "calculating..."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "The QSO were successfully logged in the logbook!"
|
||||
#~ msgstr "Die QSO wurden erfolgreich im Logbuch gespeichert!"
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-11-04 13:50+0000\n"
|
||||
"POT-Creation-Date: 2024-11-05 08:16+0000\n"
|
||||
"PO-Revision-Date: 2024-08-17 10:47+0000\n"
|
||||
"Last-Translator: Fabian Berg <fabian.berg@hb9hil.org>\n"
|
||||
"Language-Team: Greek <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -592,26 +592,56 @@ msgstr ""
|
||||
msgid "Edit Cronjob"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:274
|
||||
#: application/controllers/Cron.php:218 application/controllers/Cron.php:219
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:219
|
||||
msgid "calculating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:230 application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:232 application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:234 application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:239 application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/views/interface_assets/footer.php:37
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/controllers/Cron.php:282
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s seconds ago.%sPlease check your master cron! "
|
||||
"It should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:281
|
||||
#: application/controllers/Cron.php:285
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s minutes ago.%sSeems like your Mastercron "
|
||||
"isn't running!%sIt should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:286 application/views/cron/index.php:29
|
||||
#: application/controllers/Cron.php:290 application/views/cron/index.php:29
|
||||
msgctxt "Master Cron"
|
||||
msgid "Not running"
|
||||
msgstr ""
|
||||
@@ -5821,31 +5851,6 @@ msgstr ""
|
||||
msgid "Next Run"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:102
|
||||
msgid "Your Mastercron isn't running."
|
||||
msgstr ""
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-11-04 13:50+0000\n"
|
||||
"POT-Creation-Date: 2024-11-05 08:16+0000\n"
|
||||
"PO-Revision-Date: 2024-10-18 12:15+0000\n"
|
||||
"Last-Translator: \"Francisco (F4VSE)\" <kikosgc@users.noreply.github.com>\n"
|
||||
"Language-Team: Spanish <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -593,26 +593,56 @@ msgstr "Gestión de Cron"
|
||||
msgid "Edit Cronjob"
|
||||
msgstr "Editar trabajo de Cron"
|
||||
|
||||
#: application/controllers/Cron.php:274
|
||||
#: application/controllers/Cron.php:218 application/controllers/Cron.php:219
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:219
|
||||
msgid "calculating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:230 application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:232 application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:234 application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:239 application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/views/interface_assets/footer.php:37
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/controllers/Cron.php:282
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s seconds ago.%sPlease check your master cron! "
|
||||
"It should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:281
|
||||
#: application/controllers/Cron.php:285
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s minutes ago.%sSeems like your Mastercron "
|
||||
"isn't running!%sIt should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:286 application/views/cron/index.php:29
|
||||
#: application/controllers/Cron.php:290 application/views/cron/index.php:29
|
||||
msgctxt "Master Cron"
|
||||
msgid "Not running"
|
||||
msgstr ""
|
||||
@@ -5849,31 +5879,6 @@ msgstr ""
|
||||
msgid "Next Run"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:102
|
||||
msgid "Your Mastercron isn't running."
|
||||
msgstr ""
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-11-04 13:50+0000\n"
|
||||
"POT-Creation-Date: 2024-11-05 08:16+0000\n"
|
||||
"PO-Revision-Date: 2024-10-21 06:05+0000\n"
|
||||
"Last-Translator: tviitkar <tambet@viitkar.ee>\n"
|
||||
"Language-Team: Estonian <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -591,26 +591,56 @@ msgstr ""
|
||||
msgid "Edit Cronjob"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:274
|
||||
#: application/controllers/Cron.php:218 application/controllers/Cron.php:219
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:219
|
||||
msgid "calculating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:230 application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:232 application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:234 application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:239 application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/views/interface_assets/footer.php:37
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/controllers/Cron.php:282
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s seconds ago.%sPlease check your master cron! "
|
||||
"It should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:281
|
||||
#: application/controllers/Cron.php:285
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s minutes ago.%sSeems like your Mastercron "
|
||||
"isn't running!%sIt should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:286 application/views/cron/index.php:29
|
||||
#: application/controllers/Cron.php:290 application/views/cron/index.php:29
|
||||
msgctxt "Master Cron"
|
||||
msgid "Not running"
|
||||
msgstr ""
|
||||
@@ -5818,31 +5848,6 @@ msgstr ""
|
||||
msgid "Next Run"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:102
|
||||
msgid "Your Mastercron isn't running."
|
||||
msgstr ""
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-11-04 13:50+0000\n"
|
||||
"POT-Creation-Date: 2024-11-05 08:16+0000\n"
|
||||
"PO-Revision-Date: 2024-08-17 10:47+0000\n"
|
||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||
"Language-Team: Finnish <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -590,26 +590,56 @@ msgstr ""
|
||||
msgid "Edit Cronjob"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:274
|
||||
#: application/controllers/Cron.php:218 application/controllers/Cron.php:219
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:219
|
||||
msgid "calculating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:230 application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:232 application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:234 application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:239 application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/views/interface_assets/footer.php:37
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/controllers/Cron.php:282
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s seconds ago.%sPlease check your master cron! "
|
||||
"It should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:281
|
||||
#: application/controllers/Cron.php:285
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s minutes ago.%sSeems like your Mastercron "
|
||||
"isn't running!%sIt should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:286 application/views/cron/index.php:29
|
||||
#: application/controllers/Cron.php:290 application/views/cron/index.php:29
|
||||
msgctxt "Master Cron"
|
||||
msgid "Not running"
|
||||
msgstr ""
|
||||
@@ -5817,31 +5847,6 @@ msgstr ""
|
||||
msgid "Next Run"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:102
|
||||
msgid "Your Mastercron isn't running."
|
||||
msgstr ""
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-11-04 13:50+0000\n"
|
||||
"POT-Creation-Date: 2024-11-05 08:16+0000\n"
|
||||
"PO-Revision-Date: 2024-10-03 21:11+0000\n"
|
||||
"Last-Translator: \"Francisco (F4VSE)\" <kikosgc@users.noreply.github.com>\n"
|
||||
"Language-Team: French <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -595,12 +595,42 @@ msgstr "Gestion des Cron"
|
||||
msgid "Edit Cronjob"
|
||||
msgstr "Modifier les traitements Cron"
|
||||
|
||||
#: application/controllers/Cron.php:274
|
||||
#: application/controllers/Cron.php:218 application/controllers/Cron.php:219
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:219
|
||||
msgid "calculating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:230 application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:232 application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:234 application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:239 application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/views/interface_assets/footer.php:37
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/controllers/Cron.php:282
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s seconds ago.%sPlease check your master cron! "
|
||||
@@ -609,7 +639,7 @@ msgstr ""
|
||||
"La dernière exécution a eu lieu il y a plus de %s secondes.%sVeuillez "
|
||||
"vérifier votre cron maître ! Il devrait s'exécuter chaque minute (* * * * *)."
|
||||
|
||||
#: application/controllers/Cron.php:281
|
||||
#: application/controllers/Cron.php:285
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s minutes ago.%sSeems like your Mastercron "
|
||||
@@ -619,7 +649,7 @@ msgstr ""
|
||||
"votre Mastercron ne fonctionne pas !%sIl devrait s'exécuter chaque minute (* "
|
||||
"* * * *)."
|
||||
|
||||
#: application/controllers/Cron.php:286 application/views/cron/index.php:29
|
||||
#: application/controllers/Cron.php:290 application/views/cron/index.php:29
|
||||
msgctxt "Master Cron"
|
||||
msgid "Not running"
|
||||
msgstr "Ne fonctionne pas"
|
||||
@@ -6057,31 +6087,6 @@ msgstr ""
|
||||
msgid "Next Run"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:102
|
||||
msgid "Your Mastercron isn't running."
|
||||
msgstr ""
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-11-04 13:50+0000\n"
|
||||
"POT-Creation-Date: 2024-11-05 08:16+0000\n"
|
||||
"PO-Revision-Date: 2024-08-17 10:49+0000\n"
|
||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||
"Language-Team: Croatian <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -592,26 +592,56 @@ msgstr ""
|
||||
msgid "Edit Cronjob"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:274
|
||||
#: application/controllers/Cron.php:218 application/controllers/Cron.php:219
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:219
|
||||
msgid "calculating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:230 application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:232 application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:234 application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:239 application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/views/interface_assets/footer.php:37
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/controllers/Cron.php:282
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s seconds ago.%sPlease check your master cron! "
|
||||
"It should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:281
|
||||
#: application/controllers/Cron.php:285
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s minutes ago.%sSeems like your Mastercron "
|
||||
"isn't running!%sIt should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:286 application/views/cron/index.php:29
|
||||
#: application/controllers/Cron.php:290 application/views/cron/index.php:29
|
||||
msgctxt "Master Cron"
|
||||
msgid "Not running"
|
||||
msgstr ""
|
||||
@@ -5824,31 +5854,6 @@ msgstr ""
|
||||
msgid "Next Run"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:102
|
||||
msgid "Your Mastercron isn't running."
|
||||
msgstr ""
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-11-04 13:50+0000\n"
|
||||
"POT-Creation-Date: 2024-11-05 08:16+0000\n"
|
||||
"PO-Revision-Date: 2024-10-11 20:46+0000\n"
|
||||
"Last-Translator: \"Francisco (F4VSE)\" <kikosgc@users.noreply.github.com>\n"
|
||||
"Language-Team: Italian <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -592,26 +592,56 @@ msgstr ""
|
||||
msgid "Edit Cronjob"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:274
|
||||
#: application/controllers/Cron.php:218 application/controllers/Cron.php:219
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:219
|
||||
msgid "calculating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:230 application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:232 application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:234 application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:239 application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/views/interface_assets/footer.php:37
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/controllers/Cron.php:282
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s seconds ago.%sPlease check your master cron! "
|
||||
"It should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:281
|
||||
#: application/controllers/Cron.php:285
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s minutes ago.%sSeems like your Mastercron "
|
||||
"isn't running!%sIt should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:286 application/views/cron/index.php:29
|
||||
#: application/controllers/Cron.php:290 application/views/cron/index.php:29
|
||||
msgctxt "Master Cron"
|
||||
msgid "Not running"
|
||||
msgstr ""
|
||||
@@ -5821,31 +5851,6 @@ msgstr ""
|
||||
msgid "Next Run"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:102
|
||||
msgid "Your Mastercron isn't running."
|
||||
msgstr ""
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-11-04 13:50+0000\n"
|
||||
"POT-Creation-Date: 2024-11-05 08:16+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@@ -588,26 +588,56 @@ msgstr ""
|
||||
msgid "Edit Cronjob"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:274
|
||||
#: application/controllers/Cron.php:218 application/controllers/Cron.php:219
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:219
|
||||
msgid "calculating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:230 application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:232 application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:234 application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:239 application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/views/interface_assets/footer.php:37
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/controllers/Cron.php:282
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s seconds ago.%sPlease check your master cron! "
|
||||
"It should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:281
|
||||
#: application/controllers/Cron.php:285
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s minutes ago.%sSeems like your Mastercron "
|
||||
"isn't running!%sIt should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:286 application/views/cron/index.php:29
|
||||
#: application/controllers/Cron.php:290 application/views/cron/index.php:29
|
||||
msgctxt "Master Cron"
|
||||
msgid "Not running"
|
||||
msgstr ""
|
||||
@@ -5815,31 +5845,6 @@ msgstr ""
|
||||
msgid "Next Run"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:102
|
||||
msgid "Your Mastercron isn't running."
|
||||
msgstr ""
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-11-04 13:50+0000\n"
|
||||
"POT-Creation-Date: 2024-11-05 08:16+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@@ -588,26 +588,56 @@ msgstr ""
|
||||
msgid "Edit Cronjob"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:274
|
||||
#: application/controllers/Cron.php:218 application/controllers/Cron.php:219
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:219
|
||||
msgid "calculating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:230 application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:232 application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:234 application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:239 application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/views/interface_assets/footer.php:37
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/controllers/Cron.php:282
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s seconds ago.%sPlease check your master cron! "
|
||||
"It should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:281
|
||||
#: application/controllers/Cron.php:285
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s minutes ago.%sSeems like your Mastercron "
|
||||
"isn't running!%sIt should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:286 application/views/cron/index.php:29
|
||||
#: application/controllers/Cron.php:290 application/views/cron/index.php:29
|
||||
msgctxt "Master Cron"
|
||||
msgid "Not running"
|
||||
msgstr ""
|
||||
@@ -5815,31 +5845,6 @@ msgstr ""
|
||||
msgid "Next Run"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:102
|
||||
msgid "Your Mastercron isn't running."
|
||||
msgstr ""
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-11-04 13:50+0000\n"
|
||||
"POT-Creation-Date: 2024-11-05 08:16+0000\n"
|
||||
"PO-Revision-Date: 2024-08-17 10:47+0000\n"
|
||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||
"Language-Team: Dutch <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -591,26 +591,56 @@ msgstr ""
|
||||
msgid "Edit Cronjob"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:274
|
||||
#: application/controllers/Cron.php:218 application/controllers/Cron.php:219
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:219
|
||||
msgid "calculating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:230 application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:232 application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:234 application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:239 application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/views/interface_assets/footer.php:37
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/controllers/Cron.php:282
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s seconds ago.%sPlease check your master cron! "
|
||||
"It should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:281
|
||||
#: application/controllers/Cron.php:285
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s minutes ago.%sSeems like your Mastercron "
|
||||
"isn't running!%sIt should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:286 application/views/cron/index.php:29
|
||||
#: application/controllers/Cron.php:290 application/views/cron/index.php:29
|
||||
msgctxt "Master Cron"
|
||||
msgid "Not running"
|
||||
msgstr ""
|
||||
@@ -5818,31 +5848,6 @@ msgstr ""
|
||||
msgid "Next Run"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:102
|
||||
msgid "Your Mastercron isn't running."
|
||||
msgstr ""
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-11-04 13:50+0000\n"
|
||||
"POT-Creation-Date: 2024-11-05 08:16+0000\n"
|
||||
"PO-Revision-Date: 2024-10-26 17:17+0000\n"
|
||||
"Last-Translator: Maciej SP2FE <wavelog@sp2fe.eu>\n"
|
||||
"Language-Team: Polish <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -593,26 +593,56 @@ msgstr ""
|
||||
msgid "Edit Cronjob"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:274
|
||||
#: application/controllers/Cron.php:218 application/controllers/Cron.php:219
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:219
|
||||
msgid "calculating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:230 application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:232 application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:234 application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:239 application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/views/interface_assets/footer.php:37
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/controllers/Cron.php:282
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s seconds ago.%sPlease check your master cron! "
|
||||
"It should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:281
|
||||
#: application/controllers/Cron.php:285
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s minutes ago.%sSeems like your Mastercron "
|
||||
"isn't running!%sIt should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:286 application/views/cron/index.php:29
|
||||
#: application/controllers/Cron.php:290 application/views/cron/index.php:29
|
||||
msgctxt "Master Cron"
|
||||
msgid "Not running"
|
||||
msgstr ""
|
||||
@@ -5841,31 +5871,6 @@ msgstr ""
|
||||
msgid "Next Run"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:102
|
||||
msgid "Your Mastercron isn't running."
|
||||
msgstr ""
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-11-04 13:50+0000\n"
|
||||
"POT-Creation-Date: 2024-11-05 08:16+0000\n"
|
||||
"PO-Revision-Date: 2024-11-04 01:09+0000\n"
|
||||
"Last-Translator: \"Francisco (F4VSE)\" <kikosgc@users.noreply.github.com>\n"
|
||||
"Language-Team: Portuguese (Portugal) <https://translate.wavelog.org/projects/"
|
||||
@@ -594,12 +594,42 @@ msgstr "Gestor Cron"
|
||||
msgid "Edit Cronjob"
|
||||
msgstr "Editar Cronjob"
|
||||
|
||||
#: application/controllers/Cron.php:274
|
||||
#: application/controllers/Cron.php:218 application/controllers/Cron.php:219
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr "nunca"
|
||||
|
||||
#: application/controllers/Cron.php:219
|
||||
msgid "calculating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:230 application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr "saudável"
|
||||
|
||||
#: application/controllers/Cron.php:232 application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr "falhou"
|
||||
|
||||
#: application/controllers/Cron.php:234 application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr "pendente"
|
||||
|
||||
#: application/controllers/Cron.php:239 application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr "desativado"
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/views/interface_assets/footer.php:37
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/controllers/Cron.php:282
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s seconds ago.%sPlease check your master cron! "
|
||||
@@ -608,7 +638,7 @@ msgstr ""
|
||||
"A última execução ocorreu há mais de %s segundos.%sPor favor, verifique o "
|
||||
"seu cron master! Deve ser executado a cada minuto (* * * * *)."
|
||||
|
||||
#: application/controllers/Cron.php:281
|
||||
#: application/controllers/Cron.php:285
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s minutes ago.%sSeems like your Mastercron "
|
||||
@@ -617,7 +647,7 @@ msgstr ""
|
||||
"A última execução ocorreu há mais de %s minutos.%sParece que o seu "
|
||||
"Mastercron não está a correr!%sDeveria correr a cada minuto (* * * * *)."
|
||||
|
||||
#: application/controllers/Cron.php:286 application/views/cron/index.php:29
|
||||
#: application/controllers/Cron.php:290 application/views/cron/index.php:29
|
||||
msgctxt "Master Cron"
|
||||
msgid "Not running"
|
||||
msgstr "Não está a funcionar"
|
||||
@@ -6105,31 +6135,6 @@ msgstr "Última execução"
|
||||
msgid "Next Run"
|
||||
msgstr "Próxima execução"
|
||||
|
||||
#: application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr "saudável"
|
||||
|
||||
#: application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr "falhou"
|
||||
|
||||
#: application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr "pendente"
|
||||
|
||||
#: application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr "desativado"
|
||||
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr "nunca"
|
||||
|
||||
#: application/views/cron/index.php:102
|
||||
msgid "Your Mastercron isn't running."
|
||||
msgstr "O Master-Cron não foi executado."
|
||||
|
||||
@@ -11,8 +11,8 @@ msgstr ""
|
||||
"POT-Creation-Date: 2024-11-04 13:50+0000\n"
|
||||
"PO-Revision-Date: 2024-11-05 08:16+0000\n"
|
||||
"Last-Translator: Michael Skolsky <r1blh@yandex.ru>\n"
|
||||
"Language-Team: Russian <https://translate.wavelog.org/projects/wavelog/"
|
||||
"main-translation/ru/>\n"
|
||||
"Language-Team: Russian <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
"translation/ru/>\n"
|
||||
"Language: ru_RU\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -596,10 +596,11 @@ msgstr "Редактирование задачи"
|
||||
|
||||
#: application/controllers/Cron.php:274
|
||||
#: application/views/interface_assets/footer.php:37
|
||||
#: application/controllers/Cron.php:278
|
||||
msgid "OK"
|
||||
msgstr "ОК"
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/controllers/Cron.php:278 application/controllers/Cron.php:282
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s seconds ago.%sPlease check your master cron! "
|
||||
@@ -608,7 +609,7 @@ msgstr ""
|
||||
"Последний запуск произошел более %s секунд назад.%sПроверьте ваш основной "
|
||||
"cron! Он должен запускаться каждую минуту (* * * * *)."
|
||||
|
||||
#: application/controllers/Cron.php:281
|
||||
#: application/controllers/Cron.php:281 application/controllers/Cron.php:285
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s minutes ago.%sSeems like your Mastercron "
|
||||
@@ -618,6 +619,7 @@ msgstr ""
|
||||
"работает!%sОн должен запускаться каждую минуту (* * * * *)."
|
||||
|
||||
#: application/controllers/Cron.php:286 application/views/cron/index.php:29
|
||||
#: application/controllers/Cron.php:290
|
||||
msgctxt "Master Cron"
|
||||
msgid "Not running"
|
||||
msgstr "Не работает"
|
||||
@@ -6101,19 +6103,19 @@ msgstr "Последний запуск"
|
||||
msgid "Next Run"
|
||||
msgstr "Следующий запуск"
|
||||
|
||||
#: application/views/cron/index.php:70
|
||||
#: application/views/cron/index.php:70 application/controllers/Cron.php:230
|
||||
msgid "healthy"
|
||||
msgstr "норма"
|
||||
|
||||
#: application/views/cron/index.php:72
|
||||
#: application/views/cron/index.php:72 application/controllers/Cron.php:232
|
||||
msgid "failed"
|
||||
msgstr "ошибка"
|
||||
|
||||
#: application/views/cron/index.php:74
|
||||
#: application/views/cron/index.php:74 application/controllers/Cron.php:234
|
||||
msgid "pending"
|
||||
msgstr "в ожидании"
|
||||
|
||||
#: application/views/cron/index.php:79
|
||||
#: application/views/cron/index.php:79 application/controllers/Cron.php:239
|
||||
msgid "disabled"
|
||||
msgstr "отключено"
|
||||
|
||||
@@ -6122,7 +6124,8 @@ msgstr "отключено"
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
#: application/views/user/index.php:136 application/controllers/Cron.php:218
|
||||
#: application/controllers/Cron.php:219
|
||||
msgid "never"
|
||||
msgstr "никогда"
|
||||
|
||||
@@ -12520,6 +12523,10 @@ msgstr "Ваш позывной:"
|
||||
msgid "Submit Request"
|
||||
msgstr "Отправить запрос"
|
||||
|
||||
#: application/controllers/Cron.php:219
|
||||
msgid "calculating..."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "The QSO were successfully logged in the logbook!"
|
||||
#~ msgstr "QSO были успешно записаны в журнал!"
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-11-04 13:50+0000\n"
|
||||
"POT-Creation-Date: 2024-11-05 08:16+0000\n"
|
||||
"PO-Revision-Date: 2024-08-17 10:49+0000\n"
|
||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||
"Language-Team: Albanian <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -591,26 +591,56 @@ msgstr ""
|
||||
msgid "Edit Cronjob"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:274
|
||||
#: application/controllers/Cron.php:218 application/controllers/Cron.php:219
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:219
|
||||
msgid "calculating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:230 application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:232 application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:234 application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:239 application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/views/interface_assets/footer.php:37
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/controllers/Cron.php:282
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s seconds ago.%sPlease check your master cron! "
|
||||
"It should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:281
|
||||
#: application/controllers/Cron.php:285
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s minutes ago.%sSeems like your Mastercron "
|
||||
"isn't running!%sIt should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:286 application/views/cron/index.php:29
|
||||
#: application/controllers/Cron.php:290 application/views/cron/index.php:29
|
||||
msgctxt "Master Cron"
|
||||
msgid "Not running"
|
||||
msgstr ""
|
||||
@@ -5818,31 +5848,6 @@ msgstr ""
|
||||
msgid "Next Run"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:102
|
||||
msgid "Your Mastercron isn't running."
|
||||
msgstr ""
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-11-04 13:50+0000\n"
|
||||
"POT-Creation-Date: 2024-11-05 08:16+0000\n"
|
||||
"PO-Revision-Date: 2024-09-17 12:24+0000\n"
|
||||
"Last-Translator: Dragan Đorđević <4o4a.dragan@gmail.com>\n"
|
||||
"Language-Team: Serbian <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -594,12 +594,42 @@ msgstr "Cron menadžer"
|
||||
msgid "Edit Cronjob"
|
||||
msgstr "Uredi cronjob"
|
||||
|
||||
#: application/controllers/Cron.php:274
|
||||
#: application/controllers/Cron.php:218 application/controllers/Cron.php:219
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr "nikada"
|
||||
|
||||
#: application/controllers/Cron.php:219
|
||||
msgid "calculating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:230 application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr "zdravo"
|
||||
|
||||
#: application/controllers/Cron.php:232 application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr "neuspešno"
|
||||
|
||||
#: application/controllers/Cron.php:234 application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr "na čekanju"
|
||||
|
||||
#: application/controllers/Cron.php:239 application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr "onemogućeno"
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/views/interface_assets/footer.php:37
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/controllers/Cron.php:282
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s seconds ago.%sPlease check your master cron! "
|
||||
@@ -608,7 +638,7 @@ msgstr ""
|
||||
"Posljednji put se desilo pre više od %s sekundi. %sMolimo proverite vaš "
|
||||
"master kron! Trebalo bi da radi svakog minuta (* * * * *)."
|
||||
|
||||
#: application/controllers/Cron.php:281
|
||||
#: application/controllers/Cron.php:285
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s minutes ago.%sSeems like your Mastercron "
|
||||
@@ -617,7 +647,7 @@ msgstr ""
|
||||
"Posljednji put se desilo pre više od %s minuta. %sMolimo proverite vaš "
|
||||
"master kron! %sTrebalo bi da radi svakog minuta (* * * * *)."
|
||||
|
||||
#: application/controllers/Cron.php:286 application/views/cron/index.php:29
|
||||
#: application/controllers/Cron.php:290 application/views/cron/index.php:29
|
||||
msgctxt "Master Cron"
|
||||
msgid "Not running"
|
||||
msgstr "Ne izvršava se"
|
||||
@@ -6064,31 +6094,6 @@ msgstr "Poslednje pokretanje"
|
||||
msgid "Next Run"
|
||||
msgstr "Sledeće pokretanje"
|
||||
|
||||
#: application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr "zdravo"
|
||||
|
||||
#: application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr "neuspešno"
|
||||
|
||||
#: application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr "na čekanju"
|
||||
|
||||
#: application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr "onemogućeno"
|
||||
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr "nikada"
|
||||
|
||||
#: application/views/cron/index.php:102
|
||||
msgid "Your Mastercron isn't running."
|
||||
msgstr "Vaš Mastercron nije pokrenut."
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-11-04 13:50+0000\n"
|
||||
"POT-Creation-Date: 2024-11-05 08:16+0000\n"
|
||||
"PO-Revision-Date: 2024-08-17 10:48+0000\n"
|
||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||
"Language-Team: Swedish <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -590,26 +590,56 @@ msgstr ""
|
||||
msgid "Edit Cronjob"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:274
|
||||
#: application/controllers/Cron.php:218 application/controllers/Cron.php:219
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:219
|
||||
msgid "calculating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:230 application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:232 application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:234 application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:239 application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/views/interface_assets/footer.php:37
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/controllers/Cron.php:282
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s seconds ago.%sPlease check your master cron! "
|
||||
"It should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:281
|
||||
#: application/controllers/Cron.php:285
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s minutes ago.%sSeems like your Mastercron "
|
||||
"isn't running!%sIt should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:286 application/views/cron/index.php:29
|
||||
#: application/controllers/Cron.php:290 application/views/cron/index.php:29
|
||||
msgctxt "Master Cron"
|
||||
msgid "Not running"
|
||||
msgstr ""
|
||||
@@ -5819,31 +5849,6 @@ msgstr ""
|
||||
msgid "Next Run"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:102
|
||||
msgid "Your Mastercron isn't running."
|
||||
msgstr ""
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-11-04 13:50+0000\n"
|
||||
"POT-Creation-Date: 2024-11-05 08:16+0000\n"
|
||||
"PO-Revision-Date: 2024-10-30 21:08+0000\n"
|
||||
"Last-Translator: utkuyalcin <utkyalcn@gmail.com>\n"
|
||||
"Language-Team: Turkish <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -593,12 +593,42 @@ msgstr "Cron Yöneticisi"
|
||||
msgid "Edit Cronjob"
|
||||
msgstr "Cronjob'u Düzenle"
|
||||
|
||||
#: application/controllers/Cron.php:274
|
||||
#: application/controllers/Cron.php:218 application/controllers/Cron.php:219
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:219
|
||||
msgid "calculating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:230 application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:232 application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:234 application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:239 application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/views/interface_assets/footer.php:37
|
||||
msgid "OK"
|
||||
msgstr "Tamam"
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/controllers/Cron.php:282
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s seconds ago.%sPlease check your master cron! "
|
||||
@@ -607,14 +637,14 @@ msgstr ""
|
||||
"Son çalışma %s saniyeden daha önce gerçekleşti.%sLütfen ana cron'unuzu "
|
||||
"kontrol edin! Her dakika (* * * * *) çalışması gerekir."
|
||||
|
||||
#: application/controllers/Cron.php:281
|
||||
#: application/controllers/Cron.php:285
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s minutes ago.%sSeems like your Mastercron "
|
||||
"isn't running!%sIt should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:286 application/views/cron/index.php:29
|
||||
#: application/controllers/Cron.php:290 application/views/cron/index.php:29
|
||||
msgctxt "Master Cron"
|
||||
msgid "Not running"
|
||||
msgstr ""
|
||||
@@ -5828,31 +5858,6 @@ msgstr ""
|
||||
msgid "Next Run"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:102
|
||||
msgid "Your Mastercron isn't running."
|
||||
msgstr ""
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-11-04 13:50+0000\n"
|
||||
"POT-Creation-Date: 2024-11-05 08:16+0000\n"
|
||||
"PO-Revision-Date: 2024-11-04 06:59+0000\n"
|
||||
"Last-Translator: Karuru <karuru@aerodefense.co.uk>\n"
|
||||
"Language-Team: Chinese (Simplified Han script) <https://translate.wavelog."
|
||||
@@ -596,12 +596,42 @@ msgstr "Cron 管理器"
|
||||
msgid "Edit Cronjob"
|
||||
msgstr "编辑 Cron"
|
||||
|
||||
#: application/controllers/Cron.php:274
|
||||
#: application/controllers/Cron.php:218 application/controllers/Cron.php:219
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr "从不"
|
||||
|
||||
#: application/controllers/Cron.php:219
|
||||
msgid "calculating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:230 application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr "成功"
|
||||
|
||||
#: application/controllers/Cron.php:232 application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr "失败"
|
||||
|
||||
#: application/controllers/Cron.php:234 application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr "等待中"
|
||||
|
||||
#: application/controllers/Cron.php:239 application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr "禁用"
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/views/interface_assets/footer.php:37
|
||||
msgid "OK"
|
||||
msgstr "正常"
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/controllers/Cron.php:282
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s seconds ago.%sPlease check your master cron! "
|
||||
@@ -610,7 +640,7 @@ msgstr ""
|
||||
"上次执行是 %s 秒之前。 %s 请检查主 Cron 任务,应当设置为每分钟执行 (* * * * "
|
||||
"*)。"
|
||||
|
||||
#: application/controllers/Cron.php:281
|
||||
#: application/controllers/Cron.php:285
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s minutes ago.%sSeems like your Mastercron "
|
||||
@@ -619,7 +649,7 @@ msgstr ""
|
||||
"上次执行是 %s 分钟之前。 %s 您的 Cron 任务似乎没有配置好,%s 它应当设置为每分"
|
||||
"钟执行 (* * * * *)。"
|
||||
|
||||
#: application/controllers/Cron.php:286 application/views/cron/index.php:29
|
||||
#: application/controllers/Cron.php:290 application/views/cron/index.php:29
|
||||
msgctxt "Master Cron"
|
||||
msgid "Not running"
|
||||
msgstr "未运行"
|
||||
@@ -5925,31 +5955,6 @@ msgstr "上次执行"
|
||||
msgid "Next Run"
|
||||
msgstr "下次执行"
|
||||
|
||||
#: application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr "成功"
|
||||
|
||||
#: application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr "失败"
|
||||
|
||||
#: application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr "等待中"
|
||||
|
||||
#: application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr "禁用"
|
||||
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr "从不"
|
||||
|
||||
#: application/views/cron/index.php:102
|
||||
msgid "Your Mastercron isn't running."
|
||||
msgstr "Cron 主任务未运行。"
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-11-04 13:50+0000\n"
|
||||
"POT-Creation-Date: 2024-11-05 08:16+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@@ -589,26 +589,56 @@ msgstr ""
|
||||
msgid "Edit Cronjob"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:274
|
||||
#: application/controllers/Cron.php:218 application/controllers/Cron.php:219
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:219
|
||||
msgid "calculating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:230 application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:232 application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:234 application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:239 application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/views/interface_assets/footer.php:37
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:278
|
||||
#: application/controllers/Cron.php:282
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s seconds ago.%sPlease check your master cron! "
|
||||
"It should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:281
|
||||
#: application/controllers/Cron.php:285
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Last run occurred more than %s minutes ago.%sSeems like your Mastercron "
|
||||
"isn't running!%sIt should run every minute (* * * * *)."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Cron.php:286 application/views/cron/index.php:29
|
||||
#: application/controllers/Cron.php:290 application/views/cron/index.php:29
|
||||
msgctxt "Master Cron"
|
||||
msgid "Not running"
|
||||
msgstr ""
|
||||
@@ -5816,31 +5846,6 @@ msgstr ""
|
||||
msgid "Next Run"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:70
|
||||
msgid "healthy"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:72
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:74
|
||||
msgid "pending"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:79
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:83 application/views/cron/index.php:85
|
||||
#: application/views/cron/index.php:87 application/views/debug/index.php:519
|
||||
#: application/views/debug/index.php:525 application/views/debug/index.php:530
|
||||
#: application/views/debug/index.php:535 application/views/debug/index.php:540
|
||||
#: application/views/debug/index.php:545 application/views/debug/index.php:550
|
||||
#: application/views/user/index.php:136
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/cron/index.php:102
|
||||
msgid "Your Mastercron isn't running."
|
||||
msgstr ""
|
||||
|
||||
Reference in New Issue
Block a user