Merge branch 'dev' into files

This commit is contained in:
HB9HIL
2024-07-30 10:08:39 +02:00
committed by GitHub
32 changed files with 265 additions and 190 deletions

View File

@@ -167,21 +167,75 @@ class Debug extends CI_Controller
}
public function selfupdate() {
$stashfile = realpath(APPPATH.'../').'/.updater';
$maintenancefile = realpath(APPPATH.'../').'/.maintenance';
if (file_exists('.git')) {
try {
$st=exec('touch '.realpath(APPPATH.'../').'/.maintenance');
$st=exec('git stash push --include-untracked');
$st=exec('git fetch');
$st=exec('git pull');
$st=exec('git stash pop');
$st=exec('rm '.realpath(APPPATH.'../').'/.maintenance');
} catch (\Throwable $th) {
// enter maintenance mode
exec('touch '.$maintenancefile);
log_message('debug', 'Updater: Entered Maintenance mode by creating .maintenance file');
/**
* to stay compatible with old installations and don't break them during updated to the lastest version
* we have to take care of some old files, we stash everything else
*/
$this->discard_deprecated();
// we need atleast one file which gets stashed. this file should NOT be in .gitignore
exec('touch '.$stashfile);
log_message('debug', 'Updater: Created stashfile');
// stash everything else
exec('git stash push --include-untracked');
log_message('debug', 'Updater: Stash everything');
// perform the pull
exec('git fetch');
exec('git pull');
log_message('debug', 'Updater: git fetch and git pull');
// due the fact we discarded the other files we can now pop all other changes
exec('git stash pop');
log_message('debug', 'Updater: Pop stashed changes');
// Show success message
$this->session->set_flashdata('success', __("Wavelog was updated successfully!"));
} catch (\Throwable $th) {
log_message("Error","Error at selfupdating");
}
}
// delete the stash file
if(file_exists($stashfile)) {
exec('rm '.$stashfile);
log_message('debug', 'Updater: Delete stashfile');
}
// exit maintenance mode
if(file_exists($maintenancefile)) {
exec('rm '.$maintenancefile);
log_message('debug', 'Updater: Delete .maintenance file to exit Maintenance Mode');
}
redirect('debug');
}
private function discard_deprecated() {
$files = array('assets/json/dok.txt', 'assets/json/pota.txt', 'assets/json/sota.txt', 'assets/json/wwff.txt', 'updates/clublog_scp.txt');
// unstage all files
exec('git restore --staged .');
log_message('debug', 'Updater: Unstage changes to stash them');
// and restore the deprecated files (discard changes)
foreach($files as $file) {
if (file_exists($file)) {
exec('git restore ' . $file);
log_message('debug', 'Updater: Discard changes in: '.$file. ' because this file is deprecated');
}
}
}
public function wavelog_fetch() {
$a_versions=[];
try {

View File

@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
"POT-Creation-Date: 2024-07-29 19:22+0000\n"
"PO-Revision-Date: 2024-07-09 13:25+0000\n"
"Last-Translator: Anonymous <noreply@weblate.org>\n"
"Language-Team: Bulgarian <https://translate.wavelog.org/projects/wavelog/"
@@ -10319,20 +10319,20 @@ msgstr ""
msgid "Wavelog OQRS"
msgstr ""
#: application/views/widgets/oqrs.php:81
#: application/views/widgets/oqrs.php:76
msgid "Wavelog OQRS Request"
msgstr ""
#: application/views/widgets/oqrs.php:84
#: application/views/widgets/oqrs.php:79
#, php-format
msgid "Request a QSL card for your QSO with %s."
msgstr ""
#: application/views/widgets/oqrs.php:88
#: application/views/widgets/oqrs.php:83
msgid "Your Callsign:"
msgstr ""
#: application/views/widgets/oqrs.php:95
#: application/views/widgets/oqrs.php:90
msgid "Submit Request"
msgstr ""

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
"POT-Creation-Date: 2024-07-29 19:22+0000\n"
"PO-Revision-Date: 2024-07-22 07:07+0000\n"
"Last-Translator: Ondřej Koloničný <ondra@ok1cdj.com>\n"
"Language-Team: Czech <https://translate.wavelog.org/projects/wavelog/main-"
@@ -10349,20 +10349,20 @@ msgstr ""
msgid "Wavelog OQRS"
msgstr ""
#: application/views/widgets/oqrs.php:81
#: application/views/widgets/oqrs.php:76
msgid "Wavelog OQRS Request"
msgstr ""
#: application/views/widgets/oqrs.php:84
#: application/views/widgets/oqrs.php:79
#, php-format
msgid "Request a QSL card for your QSO with %s."
msgstr ""
#: application/views/widgets/oqrs.php:88
#: application/views/widgets/oqrs.php:83
msgid "Your Callsign:"
msgstr ""
#: application/views/widgets/oqrs.php:95
#: application/views/widgets/oqrs.php:90
msgid "Submit Request"
msgstr ""

View File

@@ -12,11 +12,11 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
"POT-Creation-Date: 2024-07-29 19:22+0000\n"
"PO-Revision-Date: 2024-07-28 17:31+0000\n"
"Last-Translator: Florian Wolters <wavelog@df2et.de>\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"
@@ -10909,20 +10909,20 @@ msgstr "Die QSOs wurden als 'zu QO-100 Dx Club exportiert' markiert."
msgid "Wavelog OQRS"
msgstr "Wavelog OQRS"
#: application/views/widgets/oqrs.php:81
#: application/views/widgets/oqrs.php:76
msgid "Wavelog OQRS Request"
msgstr "Wavelog OQRS Anfrage"
#: application/views/widgets/oqrs.php:84
#: application/views/widgets/oqrs.php:79
#, php-format
msgid "Request a QSL card for your QSO with %s."
msgstr "Fordere eine QSL-Karte für dein QSO mit %s an."
#: application/views/widgets/oqrs.php:88
#: application/views/widgets/oqrs.php:83
msgid "Your Callsign:"
msgstr "Dein Rufzeichen:"
#: application/views/widgets/oqrs.php:95
#: application/views/widgets/oqrs.php:90
msgid "Submit Request"
msgstr "Anfrage senden"

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
"POT-Creation-Date: 2024-07-29 19:22+0000\n"
"PO-Revision-Date: 2024-07-09 13:25+0000\n"
"Last-Translator: Fabian Berg <hb9hil@wavelog.org>\n"
"Language-Team: Greek <https://translate.wavelog.org/projects/wavelog/main-"
@@ -10330,20 +10330,20 @@ msgstr ""
msgid "Wavelog OQRS"
msgstr ""
#: application/views/widgets/oqrs.php:81
#: application/views/widgets/oqrs.php:76
msgid "Wavelog OQRS Request"
msgstr ""
#: application/views/widgets/oqrs.php:84
#: application/views/widgets/oqrs.php:79
#, php-format
msgid "Request a QSL card for your QSO with %s."
msgstr ""
#: application/views/widgets/oqrs.php:88
#: application/views/widgets/oqrs.php:83
msgid "Your Callsign:"
msgstr ""
#: application/views/widgets/oqrs.php:95
#: application/views/widgets/oqrs.php:90
msgid "Submit Request"
msgstr ""

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
"POT-Creation-Date: 2024-07-29 19:22+0000\n"
"PO-Revision-Date: 2024-07-09 13:25+0000\n"
"Last-Translator: Anonymous <noreply@weblate.org>\n"
"Language-Team: Spanish <https://translate.wavelog.org/projects/wavelog/main-"
@@ -10494,20 +10494,20 @@ msgstr ""
msgid "Wavelog OQRS"
msgstr ""
#: application/views/widgets/oqrs.php:81
#: application/views/widgets/oqrs.php:76
msgid "Wavelog OQRS Request"
msgstr ""
#: application/views/widgets/oqrs.php:84
#: application/views/widgets/oqrs.php:79
#, php-format
msgid "Request a QSL card for your QSO with %s."
msgstr ""
#: application/views/widgets/oqrs.php:88
#: application/views/widgets/oqrs.php:83
msgid "Your Callsign:"
msgstr ""
#: application/views/widgets/oqrs.php:95
#: application/views/widgets/oqrs.php:90
msgid "Submit Request"
msgstr ""

View File

@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
"POT-Creation-Date: 2024-07-29 19:22+0000\n"
"PO-Revision-Date: 2024-07-09 13:25+0000\n"
"Last-Translator: Anonymous <noreply@weblate.org>\n"
"Language-Team: Finnish <https://translate.wavelog.org/projects/wavelog/main-"
@@ -10335,20 +10335,20 @@ msgstr ""
msgid "Wavelog OQRS"
msgstr ""
#: application/views/widgets/oqrs.php:81
#: application/views/widgets/oqrs.php:76
msgid "Wavelog OQRS Request"
msgstr ""
#: application/views/widgets/oqrs.php:84
#: application/views/widgets/oqrs.php:79
#, php-format
msgid "Request a QSL card for your QSO with %s."
msgstr ""
#: application/views/widgets/oqrs.php:88
#: application/views/widgets/oqrs.php:83
msgid "Your Callsign:"
msgstr ""
#: application/views/widgets/oqrs.php:95
#: application/views/widgets/oqrs.php:90
msgid "Submit Request"
msgstr ""

View File

@@ -5,12 +5,13 @@
# Aurélien Barrau <abarrau378@gmail.com>, 2024.
# Byt3 <falko@205er.de>, 2024.
# "Francisco (F4VSE)" <kikosgc@gmail.com>, 2024.
# "Francisco (F4VSE)" <kikosgc@users.noreply.github.com>, 2024.
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
"PO-Revision-Date: 2024-07-22 19:23+0000\n"
"Last-Translator: \"Francisco (F4VSE)\" <kikosgc@gmail.com>\n"
"POT-Creation-Date: 2024-07-29 19:22+0000\n"
"PO-Revision-Date: 2024-07-29 12:05+0000\n"
"Last-Translator: \"Francisco (F4VSE)\" <kikosgc@users.noreply.github.com>\n"
"Language-Team: French <https://translate.wavelog.org/projects/wavelog/main-"
"translation/fr/>\n"
"Language: fr_FR\n"
@@ -1415,7 +1416,7 @@ msgstr "Paramètres enregistrées"
#: application/controllers/Options.php:165
msgid "de continent changed to "
msgstr ""
msgstr "de continent a changé en "
#: application/controllers/Options.php:170
msgid "Maximum age of spots changed to "
@@ -10419,20 +10420,20 @@ msgstr "Les QSO sont marqués comme exportés vers QO-100 Dx Club."
msgid "Wavelog OQRS"
msgstr ""
#: application/views/widgets/oqrs.php:81
#: application/views/widgets/oqrs.php:76
msgid "Wavelog OQRS Request"
msgstr ""
#: application/views/widgets/oqrs.php:84
#: application/views/widgets/oqrs.php:79
#, php-format
msgid "Request a QSL card for your QSO with %s."
msgstr ""
#: application/views/widgets/oqrs.php:88
#: application/views/widgets/oqrs.php:83
msgid "Your Callsign:"
msgstr ""
#: application/views/widgets/oqrs.php:95
#: application/views/widgets/oqrs.php:90
msgid "Submit Request"
msgstr ""

View File

@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
"POT-Creation-Date: 2024-07-29 19:22+0000\n"
"PO-Revision-Date: 2024-07-09 13:26+0000\n"
"Last-Translator: Anonymous <noreply@weblate.org>\n"
"Language-Team: Italian <https://translate.wavelog.org/projects/wavelog/main-"
@@ -10324,20 +10324,20 @@ msgstr ""
msgid "Wavelog OQRS"
msgstr ""
#: application/views/widgets/oqrs.php:81
#: application/views/widgets/oqrs.php:76
msgid "Wavelog OQRS Request"
msgstr ""
#: application/views/widgets/oqrs.php:84
#: application/views/widgets/oqrs.php:79
#, php-format
msgid "Request a QSL card for your QSO with %s."
msgstr ""
#: application/views/widgets/oqrs.php:88
#: application/views/widgets/oqrs.php:83
msgid "Your Callsign:"
msgstr ""
#: application/views/widgets/oqrs.php:95
#: application/views/widgets/oqrs.php:90
msgid "Submit Request"
msgstr ""

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
"POT-Creation-Date: 2024-07-29 19:22+0000\n"
"PO-Revision-Date: 2024-07-25 07:32+0000\n"
"Last-Translator: Casper van Lieburg <pa7dx@yahoo.com>\n"
"Language-Team: Dutch <https://translate.wavelog.org/projects/wavelog/main-"
@@ -10316,20 +10316,20 @@ msgstr ""
msgid "Wavelog OQRS"
msgstr ""
#: application/views/widgets/oqrs.php:81
#: application/views/widgets/oqrs.php:76
msgid "Wavelog OQRS Request"
msgstr ""
#: application/views/widgets/oqrs.php:84
#: application/views/widgets/oqrs.php:79
#, php-format
msgid "Request a QSL card for your QSO with %s."
msgstr ""
#: application/views/widgets/oqrs.php:88
#: application/views/widgets/oqrs.php:83
msgid "Your Callsign:"
msgstr ""
#: application/views/widgets/oqrs.php:95
#: application/views/widgets/oqrs.php:90
msgid "Submit Request"
msgstr ""

View File

@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
"POT-Creation-Date: 2024-07-29 19:22+0000\n"
"PO-Revision-Date: 2024-07-09 13:26+0000\n"
"Last-Translator: Anonymous <noreply@weblate.org>\n"
"Language-Team: Polish <https://translate.wavelog.org/projects/wavelog/main-"
@@ -10328,20 +10328,20 @@ msgstr ""
msgid "Wavelog OQRS"
msgstr ""
#: application/views/widgets/oqrs.php:81
#: application/views/widgets/oqrs.php:76
msgid "Wavelog OQRS Request"
msgstr ""
#: application/views/widgets/oqrs.php:84
#: application/views/widgets/oqrs.php:79
#, php-format
msgid "Request a QSL card for your QSO with %s."
msgstr ""
#: application/views/widgets/oqrs.php:88
#: application/views/widgets/oqrs.php:83
msgid "Your Callsign:"
msgstr ""
#: application/views/widgets/oqrs.php:95
#: application/views/widgets/oqrs.php:90
msgid "Submit Request"
msgstr ""

View File

@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
"POT-Creation-Date: 2024-07-29 19:22+0000\n"
"PO-Revision-Date: 2024-07-28 17:18+0000\n"
"Last-Translator: \"Francisco (F4VSE)\" <kikosgc@users.noreply.github.com>\n"
"Language-Team: Portuguese (Portugal) <https://translate.wavelog.org/projects/"
@@ -10907,20 +10907,20 @@ msgstr "Os contactos estão marcados como exportados para o QO-100 Dx Club."
msgid "Wavelog OQRS"
msgstr "OQRS Wavelog"
#: application/views/widgets/oqrs.php:81
#: application/views/widgets/oqrs.php:76
msgid "Wavelog OQRS Request"
msgstr "Pedido de OQRS Wavelog"
#: application/views/widgets/oqrs.php:84
#: application/views/widgets/oqrs.php:79
#, php-format
msgid "Request a QSL card for your QSO with %s."
msgstr "Solicite um cartão QSL para o seu contacto com %s."
#: application/views/widgets/oqrs.php:88
#: application/views/widgets/oqrs.php:83
msgid "Your Callsign:"
msgstr "O seu indicativo:"
#: application/views/widgets/oqrs.php:95
#: application/views/widgets/oqrs.php:90
msgid "Submit Request"
msgstr "Submeter pedido"

View File

@@ -4,14 +4,15 @@
#
# Michael Skolsky <r1blh@yandex.ru>, 2024.
# "Francisco (F4VSE)" <kikosgc@gmail.com>, 2024.
# "Francisco (F4VSE)" <kikosgc@users.noreply.github.com>, 2024.
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
"PO-Revision-Date: 2024-07-29 04:21+0000\n"
"Last-Translator: Michael Skolsky <r1blh@yandex.ru>\n"
"Language-Team: Russian <https://translate.wavelog.org/projects/wavelog/"
"main-translation/ru/>\n"
"POT-Creation-Date: 2024-07-29 19:22+0000\n"
"PO-Revision-Date: 2024-07-29 12:05+0000\n"
"Last-Translator: \"Francisco (F4VSE)\" <kikosgc@users.noreply.github.com>\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"
@@ -2146,7 +2147,7 @@ msgstr "Всего сработано квадратов VUCC"
#: application/views/accumulate/index.php:7
msgid "Accumulated number of WAJA worked"
msgstr "Накопленное количество сработанных WAJA"
msgstr "Накопленное количество отработанных WAJA"
#: application/views/accumulate/index.php:8
#: application/views/dashboard/index.php:222
@@ -10854,20 +10855,20 @@ msgstr "QSO отмечены как экспортированные в QO-100 D
msgid "Wavelog OQRS"
msgstr "Wavelog OQRS"
#: application/views/widgets/oqrs.php:81
#: application/views/widgets/oqrs.php:76
msgid "Wavelog OQRS Request"
msgstr "Запрос Wavelog OQRS"
#: application/views/widgets/oqrs.php:84
#: application/views/widgets/oqrs.php:79
#, php-format
msgid "Request a QSL card for your QSO with %s."
msgstr "Запросите QSL-карточку за ваше QSO с %s."
#: application/views/widgets/oqrs.php:88
#: application/views/widgets/oqrs.php:83
msgid "Your Callsign:"
msgstr "Ваш позывной:"
#: application/views/widgets/oqrs.php:95
#: application/views/widgets/oqrs.php:90
msgid "Submit Request"
msgstr "Отправить запрос"

View File

@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
"POT-Creation-Date: 2024-07-29 19:22+0000\n"
"PO-Revision-Date: 2024-07-09 13:26+0000\n"
"Last-Translator: Anonymous <noreply@weblate.org>\n"
"Language-Team: Swedish <https://translate.wavelog.org/projects/wavelog/main-"
@@ -10338,20 +10338,20 @@ msgstr ""
msgid "Wavelog OQRS"
msgstr ""
#: application/views/widgets/oqrs.php:81
#: application/views/widgets/oqrs.php:76
msgid "Wavelog OQRS Request"
msgstr ""
#: application/views/widgets/oqrs.php:84
#: application/views/widgets/oqrs.php:79
#, php-format
msgid "Request a QSL card for your QSO with %s."
msgstr ""
#: application/views/widgets/oqrs.php:88
#: application/views/widgets/oqrs.php:83
msgid "Your Callsign:"
msgstr ""
#: application/views/widgets/oqrs.php:95
#: application/views/widgets/oqrs.php:90
msgid "Submit Request"
msgstr ""

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
"POT-Creation-Date: 2024-07-29 19:22+0000\n"
"PO-Revision-Date: 2024-07-26 14:02+0000\n"
"Last-Translator: Halil AYYILDIZ <ta2lghalil@gmail.com>\n"
"Language-Team: Turkish <https://translate.wavelog.org/projects/wavelog/main-"
@@ -10329,20 +10329,20 @@ msgstr ""
msgid "Wavelog OQRS"
msgstr ""
#: application/views/widgets/oqrs.php:81
#: application/views/widgets/oqrs.php:76
msgid "Wavelog OQRS Request"
msgstr ""
#: application/views/widgets/oqrs.php:84
#: application/views/widgets/oqrs.php:79
#, php-format
msgid "Request a QSL card for your QSO with %s."
msgstr ""
#: application/views/widgets/oqrs.php:88
#: application/views/widgets/oqrs.php:83
msgid "Your Callsign:"
msgstr ""
#: application/views/widgets/oqrs.php:95
#: application/views/widgets/oqrs.php:90
msgid "Submit Request"
msgstr ""

View File

@@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
"PO-Revision-Date: 2024-07-27 20:04+0000\n"
"POT-Creation-Date: 2024-07-29 19:22+0000\n"
"PO-Revision-Date: 2024-07-29 13:32+0000\n"
"Last-Translator: Karuru <karuru@aerodefense.co.uk>\n"
"Language-Team: Chinese (Simplified) <https://translate.wavelog.org/projects/"
"wavelog/main-translation/zh_Hans/>\n"
@@ -1881,19 +1881,19 @@ msgstr "完成"
#: application/controllers/Update.php:244
msgid "Updating..."
msgstr ""
msgstr "更新中…"
#: application/controllers/Update.php:247
msgid "Dxcc Entities:"
msgstr ""
msgstr "DXCC 实体:"
#: application/controllers/Update.php:248
msgid "Dxcc Exceptions:"
msgstr ""
msgstr "DXCC 例外:"
#: application/controllers/Update.php:249
msgid "Dxcc Prefixes:"
msgstr ""
msgstr "DXCC 前缀:"
#: application/controllers/User.php:12
#: application/views/interface_assets/header.php:260
@@ -1929,7 +1929,7 @@ msgstr "个人资料"
msgid ""
"Congrats! Wavelog was successfully installed. You can now login for the "
"first time."
msgstr ""
msgstr "恭喜您Wavelog 已成功安装,您可以登录并开始通联了。"
#: application/controllers/User.php:843 application/controllers/User.php:853
msgid "Login failed. Try again."
@@ -10487,20 +10487,20 @@ msgstr "QSO 已被标记成导出至 QO-100 Dx Club。"
msgid "Wavelog OQRS"
msgstr "Wavelog OQRS"
#: application/views/widgets/oqrs.php:81
#: application/views/widgets/oqrs.php:76
msgid "Wavelog OQRS Request"
msgstr "Wavelog OQRS 请求"
#: application/views/widgets/oqrs.php:84
#: application/views/widgets/oqrs.php:79
#, php-format
msgid "Request a QSL card for your QSO with %s."
msgstr "为您的 QSO 请求一张 QSL 卡片(%s。"
#: application/views/widgets/oqrs.php:88
#: application/views/widgets/oqrs.php:83
msgid "Your Callsign:"
msgstr "您的呼号:"
#: application/views/widgets/oqrs.php:95
#: application/views/widgets/oqrs.php:90
msgid "Submit Request"
msgstr "提交请求"

View File

@@ -63,11 +63,6 @@ To use this widget insert this Element:
width: 150px;
height: 150px;
}
#oqrs_callsign {
background-color: #343434;
border-color: #757575 !important;
}
</style>
</head>

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-07-29 12:42+0000\n"
"POT-Creation-Date: 2024-07-29 19:22+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"
@@ -10312,19 +10312,19 @@ msgstr ""
msgid "Wavelog OQRS"
msgstr ""
#: application/views/widgets/oqrs.php:81
#: application/views/widgets/oqrs.php:76
msgid "Wavelog OQRS Request"
msgstr ""
#: application/views/widgets/oqrs.php:84
#: application/views/widgets/oqrs.php:79
#, php-format
msgid "Request a QSL card for your QSO with %s."
msgstr ""
#: application/views/widgets/oqrs.php:88
#: application/views/widgets/oqrs.php:83
msgid "Your Callsign:"
msgstr ""
#: application/views/widgets/oqrs.php:95
#: application/views/widgets/oqrs.php:90
msgid "Submit Request"
msgstr ""

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-07-29 12:42+0000\n"
"POT-Creation-Date: 2024-07-29 19:22+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"

View File

@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-07-29 12:05+0000\n"
"PO-Revision-Date: 2024-07-28 17:42+0000\n"
"PO-Revision-Date: 2024-07-29 12:08+0000\n"
"Last-Translator: Fabian Berg <hb9hil@wavelog.org>\n"
"Language-Team: German <https://translate.wavelog.org/projects/wavelog/"
"installer/de/>\n"
@@ -264,6 +264,8 @@ msgid ""
"In case of failed 'Folder Write Permissions' check out our Wiki <a href='%s' "
"target='_blank'>here</a>."
msgstr ""
"Im Falle fehlgeschlagener 'Ordner-Schreibberechtigungen' schau dir unser "
"Wiki <a href='%s' target='_blank'>hier</a> an."
#: install/index.php:323
msgid "You have some warnings!"
@@ -333,6 +335,10 @@ msgid ""
"\t\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'<br>\n"
"\t\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'"
msgstr ""
"Dieses Feld<br>\n"
"- darf nicht leer sein<br>\n"
"- muss mit einem Schrägstrich enden 'example/'<br>\n"
"- muss mit 'http' beginnen"
#: install/index.php:367
msgid "Optional: Global Callbook Lookup"
@@ -675,21 +681,21 @@ msgstr "Installation nicht möglich. Checkliste unvollständig."
#: install/index.php:1898
msgid "PHP Module missing"
msgstr ""
msgstr "PHP-Modul fehlt"
#: install/index.php:1900
#, php-format
msgid "The PHP module %s is missing."
msgstr ""
msgstr "Das PHP-Modul %s fehlt."
#: install/index.php:1901
msgid "Without this module the Wavelog Installer does not work!"
msgstr ""
msgstr "Ohne dieses Modul funktioniert der Wavelog-Installer nicht!"
#: install/index.php:1902
#, php-format
msgid "Install %s and restart the webserver."
msgstr ""
msgstr "Installiere %s und starte den Webserver neu."
#: install/run.php:10
msgid "Installation"

View File

@@ -2,27 +2,29 @@
# Copyright (c) 2024 Wavelog by DF2ET, DJ7NT, HB9HIL and LA8AJA.
# This file is distributed under the MIT licence.
#
# Fabian Berg <hb9hil@wavelog.org>, 2024.
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-07-29 12:05+0000\n"
"PO-Revision-Date: 2024-06-05 15:15+0200\n"
"Last-Translator: \n"
"Language-Team: \n"
"POT-Creation-Date: 2024-07-29 14:39+0000\n"
"PO-Revision-Date: 2024-07-29 12:05+0000\n"
"Last-Translator: Fabian Berg <hb9hil@wavelog.org>\n"
"Language-Team: Greek <https://translate.wavelog.org/projects/wavelog/"
"installer/el/>\n"
"Language: el_GR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.4.4\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.6.2\n"
#: install/includes/core/database_class.php:59
msgid "Connection Error: "
msgstr ""
msgstr "Σφάλμα σύνδεσης "
#: install/includes/core/database_class.php:63
msgid "Unable to create database: "
msgstr ""
msgstr "Δεν είναι δυνατή η δημιουργία βάσης δεδομένων "
#: install/includes/core/database_class.php:68
msgid "Unable to select database: "

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-07-29 12:05+0000\n"
"PO-Revision-Date: 2024-07-28 17:42+0000\n"
"PO-Revision-Date: 2024-07-29 12:08+0000\n"
"Last-Translator: Fabian Berg <hb9hil@wavelog.org>\n"
"Language-Team: Portuguese (Portugal) <https://translate.wavelog.org/projects/"
"wavelog/installer/pt_PT/>\n"
@@ -330,6 +330,10 @@ msgid ""
"\t\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'<br>\n"
"\t\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'"
msgstr ""
"Este campo<br>\n"
"- não pode estar vazio<br>\n"
"- tem de terminar com uma barra 'exemplo/'<br>\n"
"- tem de começar com 'http'"
#: install/index.php:367
msgid "Optional: Global Callbook Lookup"

View File

@@ -4,12 +4,13 @@
#
# Michael Skolsky <r1blh@yandex.ru>, 2024.
# Florian Wolters <wavelog@df2et.de>, 2024.
# Fabian Berg <hb9hil@wavelog.org>, 2024.
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-07-29 12:05+0000\n"
"PO-Revision-Date: 2024-07-29 05:55+0000\n"
"Last-Translator: Florian Wolters <wavelog@df2et.de>\n"
"PO-Revision-Date: 2024-07-29 12:08+0000\n"
"Last-Translator: Fabian Berg <hb9hil@wavelog.org>\n"
"Language-Team: Russian <https://translate.wavelog.org/projects/wavelog/"
"installer/ru/>\n"
"Language: ru_RU\n"
@@ -327,6 +328,10 @@ msgid ""
"\t\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'<br>\n"
"\t\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'"
msgstr ""
"Это поле<br>\n"
"\t\t\t\t\t\t\t\t\t\t\t\t- не может быть пустым<br>\n"
"\t\t\t\t\t\t\t\t\t\t\t\t- должно заканчиваться слешем 'example/'<br>\n"
"\t\t\t\t\t\t\t\t\t\t\t\t- должно начинаться с 'http'"
#: install/index.php:367
msgid "Optional: Global Callbook Lookup"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-07-29 12:05+0000\n"
"PO-Revision-Date: 2024-07-23 10:31+0000\n"
"PO-Revision-Date: 2024-07-29 13:32+0000\n"
"Last-Translator: Karuru <karuru@aerodefense.co.uk>\n"
"Language-Team: Chinese (Simplified) <https://translate.wavelog.org/projects/"
"wavelog/installer/zh_Hans/>\n"
@@ -20,23 +20,23 @@ msgstr ""
#: install/includes/core/database_class.php:59
msgid "Connection Error: "
msgstr ""
msgstr "连接错误: "
#: install/includes/core/database_class.php:63
msgid "Unable to create database: "
msgstr ""
msgstr "无法创建数据库: "
#: install/includes/core/database_class.php:68
msgid "Unable to select database: "
msgstr ""
msgstr "无法选择数据库: "
#: install/includes/core/database_class.php:74
msgid "Database is not empty."
msgstr ""
msgstr "数据库不是空白的。"
#: install/includes/install_config/install_lib.php:123
msgid "not detected"
msgstr ""
msgstr "未选择"
#: install/includes/interface_assets/footer.php:49
msgid "Bulgarian"
@@ -190,7 +190,7 @@ msgstr "版本"
#, php-format
msgctxt "PHP Version"
msgid "min. %s (recommended %s+)"
msgstr ""
msgstr "最低 %s (建议 %s+"
#: install/index.php:136
msgid "Installed"
@@ -206,35 +206,35 @@ msgstr "PHP 设置"
#: install/index.php:234
msgid "Folder Write Permissions"
msgstr ""
msgstr "文件夹可写权限"
#: install/index.php:240 install/index.php:251 install/index.php:262
#: install/index.php:273 install/index.php:284
msgid "Success"
msgstr ""
msgstr "成功"
#: install/index.php:243 install/index.php:254 install/index.php:265
#: install/index.php:276 install/index.php:287
msgid "Failed"
msgstr ""
msgstr "失败"
#: install/index.php:294
msgid "Web Server"
msgstr ""
msgstr "服务器"
#: install/index.php:297
msgid "Version:"
msgstr ""
msgstr "版本:"
#: install/index.php:304
msgid "Important note for nginx users!"
msgstr ""
msgstr "Nginx 用户看过来!"
#: install/index.php:305
msgid ""
"Since you are using nginx as web server please make sure that you have made "
"the changes described in the Wiki before continuing."
msgstr ""
msgstr "由于您使用 Nginx 作为前端程序,请您先阅读 Wiki 中的说明,并进行适当改动。"
#: install/index.php:314
msgid "Some Checks have failed!"
@@ -254,7 +254,7 @@ msgstr "在这之后,您需要重启服务器,重新启动安装程序。"
msgid ""
"In case of failed 'Folder Write Permissions' check out our Wiki <a href='%s' "
"target='_blank'>here</a>."
msgstr ""
msgstr "如遇到“文件夹可写权限”错误,请查看 <a href='%s' target='_blank'>Wiki</a>。"
#: install/index.php:323
msgid "You have some warnings!"
@@ -291,7 +291,7 @@ msgstr "通常是 Web 根目录下的某个子目录,通常为空。"
#: install/index.php:352
msgid "No slash before or after the directory. Just the name of the folder."
msgstr ""
msgstr "文件夹名字前后不需要带有斜杠。"
#: install/index.php:357
#, php-format
@@ -316,6 +316,10 @@ msgid ""
"\t\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'<br>\n"
"\t\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'"
msgstr ""
"此表单<br>\n"
"\t\t\t\t\t\t\t\t\t\t\t\t\t- 不能为空<br>\n"
"\t\t\t\t\t\t\t\t\t\t\t\t\t- 需要结尾带有斜杠 如 'example/'<br>\n"
"\t\t\t\t\t\t\t\t\t\t\t\t\t- 以 'http' 开头"
#: install/index.php:367
msgid "Optional: Global Callbook Lookup"
@@ -352,45 +356,45 @@ msgstr "日志簿密码"
#: install/index.php:389
#, php-format
msgid "Password can't contain %s or be empty"
msgstr ""
msgstr "密码不能包含 %s或为空"
#: install/index.php:394 install/index.php:399
msgid "Advanced Settings"
msgstr ""
msgstr "高级设置"
#: install/index.php:402
msgid "These settings should only be set if you know what you're doing."
msgstr ""
msgstr "这些设置可能对系统运行造成影响,请三思而后行。"
#: install/index.php:405
msgid "Error Logs"
msgstr ""
msgstr "错误日志"
#: install/index.php:406
msgid ""
"Optional: Enable Error Logging by setting the log threshold bigger then 0. "
"Only enable this if you really need it."
msgstr ""
msgstr "可选:将日志级别设置为 0 以上,可启用错误记录,仅建议 Debug 时打开。"
#: install/index.php:411
msgid "0 - No logs"
msgstr ""
msgstr "0 - 无任何日志"
#: install/index.php:412
msgid "1 - Error messages"
msgstr ""
msgstr "1 - 仅错误信息"
#: install/index.php:413
msgid "2 - Debug messages"
msgstr ""
msgstr "2 - 调试信息"
#: install/index.php:414
msgid "3 - Info messages"
msgstr ""
msgstr "3 - 通常信息"
#: install/index.php:415
msgid "4 - All messages"
msgstr ""
msgstr "4 - 所有信息"
#: install/index.php:437
msgid ""
@@ -407,6 +411,8 @@ msgid ""
"Usually 'localhost'.<br>Optional with '[host]:[port]'. Default port: 3306."
"<br>In a docker compose install type 'wavelog-db'."
msgstr ""
"通常为“localhost”。<br>可能为 “[host]:[port]”。默认端口3306。<br>如在 "
"Docker compose 下,输入 “wavelog-db”。"
#: install/index.php:447
msgid "Database Name"
@@ -432,11 +438,12 @@ msgstr "测试连接"
msgid ""
"Now you can create your first user in Wavelog. Fill out all fields and click "
"continue. Make sure you use a safe password."
msgstr ""
msgstr "您现在可以为 Wavelog "
"创建第一个用户了,填写所有信息点击下一步,确保创建一个高强度的密码。"
#: install/index.php:473
msgid "All fields are required!"
msgstr ""
msgstr "所有字段都需填写!"
#: install/index.php:482
msgid "First Name"
@@ -509,7 +516,7 @@ msgstr "检查单"
#: install/index.php:1060
msgid "Pre-Checks"
msgstr ""
msgstr "事前检查"
#: install/index.php:1069
msgid "Configuration"
@@ -537,23 +544,23 @@ msgstr "现在可以安装 Wavelog 了,需要几分钟的时间。"
#: install/index.php:1106
msgid "Reset"
msgstr ""
msgstr "重置"
#: install/index.php:1111
msgid "Installer Reset"
msgstr ""
msgstr "安装程序重置"
#: install/index.php:1114
msgid "Do you really want to reset all data and start from scratch?"
msgstr ""
msgstr "请您确认清空所有数据,推倒重来?"
#: install/index.php:1117
msgid "Yes"
msgstr ""
msgstr ""
#: install/index.php:1118
msgid "No"
msgstr ""
msgstr ""
#: install/index.php:1128
msgid "Back"
@@ -567,15 +574,15 @@ msgstr "继续"
msgid ""
"You can't continue. Solve the red marked issues, restart the webserver and "
"reload this page."
msgstr ""
msgstr "您需要解决标红的错误才能继续,请重启服务器并刷新网页。"
#: install/index.php:1334
msgid "Password can't contain ' / \\ < >"
msgstr ""
msgstr "密码不能包含 '/?<>"
#: install/index.php:1501
msgid "Error: At least Hostname/IP, Database Name and Username are required."
msgstr ""
msgstr "错误:至少提供 主机名/IP、数据库名称和用户名。"
#: install/index.php:1511
msgid "Connecting..."
@@ -583,7 +590,7 @@ msgstr "连接中…"
#: install/index.php:1535
msgid "Connection was successful and your database should be compatible."
msgstr ""
msgstr "连接成功,您的数据库兼容 Wavelog。"
#: install/index.php:1539
msgid ""
@@ -594,23 +601,23 @@ msgstr "连接成功,但数据库版本有一些老,您可以继续安装但
#: install/index.php:1539
#, php-format
msgid "The min. version for MySQL is %s, for MariaDB it's %s."
msgstr ""
msgstr "MySQL 最低版本 %s或 MariaDB 最低版本 %s。"
#: install/index.php:1651
msgid "At least one field is empty."
msgstr ""
msgstr "有字段未填写。"
#: install/index.php:1681
msgid ""
"The locator seems to be not in the correct format. Should look like AA11AA "
"(6-char grid locator)."
msgstr ""
msgstr "网格格式有误,例如 AA11AA6位"
#: install/index.php:1695
msgid ""
"The e-mail adress does not look correct. Make sure it's a valid e-mail "
"address"
msgstr ""
msgstr "E-mail 地址有误,请重新检查"
#: install/index.php:1722
msgid "Password should be at least 8 characters long"
@@ -626,98 +633,98 @@ msgstr "现在安装"
#: install/index.php:1782
msgid "Install not possible. Checklist incomplete."
msgstr ""
msgstr "无法安装,检查单无法通过。"
#: install/index.php:1898
msgid "PHP Module missing"
msgstr ""
msgstr "PHP 模块未安装"
#: install/index.php:1900
#, php-format
msgid "The PHP module %s is missing."
msgstr ""
msgstr "PHP 模块 %s 未安装。"
#: install/index.php:1901
msgid "Without this module the Wavelog Installer does not work!"
msgstr ""
msgstr "Wavelog 需要这个模块来运行!"
#: install/index.php:1902
#, php-format
msgid "Install %s and restart the webserver."
msgstr ""
msgstr "安装 %s 并重启服务器。"
#: install/run.php:10
msgid "Installation"
msgstr ""
msgstr "安装"
#: install/run.php:12
msgid "Please wait..."
msgstr ""
msgstr "请稍等…"
#: install/run.php:15
msgid "Copy config.php to application/config/"
msgstr ""
msgstr "复制 config.php 到 application/config/"
#: install/run.php:18
msgid "Copy database.php to application/config/"
msgstr ""
msgstr "复制 database.php 到 application/config/"
#: install/run.php:21
msgid "Creating database tables"
msgstr ""
msgstr "创建数据表"
#: install/run.php:24
msgid "Running database migrations"
msgstr ""
msgstr "运行数据库迁移"
#: install/run.php:27
msgid "Updating DXCC data"
msgstr ""
msgstr "更新 DXCC 数据"
#: install/run.php:35
msgid "Lock the installer"
msgstr ""
msgstr "锁定安装程序"
#: install/run.php:39
#, php-format
msgid "All install steps went through. Redirect to user login in %s seconds..."
msgstr ""
msgstr "所有安装步骤已完成,正重定向至登录页,剩余 %s 秒…"
#: install/run.php:42
msgid "Done. Go to the user login ->"
msgstr ""
msgstr "完成,前往登录页 ->"
#: install/run.php:46 install/run.php:125
msgid "Show detailled debug log"
msgstr ""
msgstr "显示详细调试日志"
#: install/run.php:127
msgid "Hide detailled debug log"
msgstr ""
msgstr "隐藏详细调试日志"
#: install/run.php:182
msgid "Could not create application/config/config.php"
msgstr ""
msgstr "无法创建 application/config/config.php"
#: install/run.php:217
msgid "Could not create application/config/database.php"
msgstr ""
msgstr "无法创建 application/config/database.php"
#: install/run.php:251
msgid "Could not create database tables"
msgstr ""
msgstr "无法创建数据表"
#: install/run.php:281
msgid "Could not run database migrations"
msgstr ""
msgstr "无法运行数据库迁移"
#: install/run.php:309
msgid "Could not update DXCC data"
msgstr ""
msgstr "无法更新 DXCC 数据"
#: install/run.php:341
msgid "Could not create install/.lock file"
msgstr ""
msgstr "无法创建 install/.lock 文件"
#~ msgid "On"
#~ msgstr "开启"