From d1842bc81aa5c77f8ce16ab090f92b937f8f4bb1 Mon Sep 17 00:00:00 2001 From: Viola Date: Wed, 10 Jul 2024 00:21:45 +0800 Subject: [PATCH 01/13] Add else clause in case of openssl sign failure #549 In some distro (like RHELs), SHA-1 has been disabled by default. To avoid that a NULL is returned and nothing happens, this else clause is added to log the error. --- application/controllers/Lotw.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/application/controllers/Lotw.php b/application/controllers/Lotw.php index d43e4e5da..a18cd7110 100644 --- a/application/controllers/Lotw.php +++ b/application/controllers/Lotw.php @@ -1001,6 +1001,9 @@ class Lotw extends CI_Controller { } $signature_b64 = base64_encode($signature); return $signature_b64."\n"; + } else { + // in case of deprecation of SHA-1 in some distro + log_message('error', openssl_error_string()); } } else { log_message('error', 'Error signing LoTW log.'); From 4f13f4d339f38dced4eb02e4855bede6bd85f57d Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Wed, 10 Jul 2024 17:35:48 +0200 Subject: [PATCH 02/13] added cache folder to debug permission check --- application/controllers/Debug.php | 4 ++++ application/views/debug/index.php | 11 +++++++++++ 2 files changed, 15 insertions(+) diff --git a/application/controllers/Debug.php b/application/controllers/Debug.php index db057f2ec..e3768f53e 100644 --- a/application/controllers/Debug.php +++ b/application/controllers/Debug.php @@ -42,6 +42,10 @@ class Debug extends CI_Controller $backup_folder = $this->permissions->is_really_writable('backup'); $data['backup_folder'] = $backup_folder; + // Test writing to cache folder + $cache_folder = $this->permissions->is_really_writable('application/cache'); + $data['cache_folder'] = $cache_folder; + // Test writing to updates folder $updates_folder = $this->permissions->is_really_writable('updates'); $data['updates_folder'] = $updates_folder; diff --git a/application/views/debug/index.php b/application/views/debug/index.php index 547cd2144..7edd835d8 100644 --- a/application/views/debug/index.php +++ b/application/views/debug/index.php @@ -105,6 +105,17 @@ + + /cache + + + + + + + + + /updates From 0dd76a7d40ea8d16ac3339f6bc352fa4dd12cd92 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 10 Jul 2024 15:57:57 +0000 Subject: [PATCH 03/13] Run po_gen.sh script to update translation files --- assets/lang_src/messages.pot | 2 +- install/includes/gettext/lang_src/installer.pot | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot index a76159c5e..b8c1a3ba4 100644 --- a/assets/lang_src/messages.pot +++ b/assets/lang_src/messages.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 15:04+0000\n" +"POT-Creation-Date: 2024-07-10 15:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/install/includes/gettext/lang_src/installer.pot b/install/includes/gettext/lang_src/installer.pot index 53acc7bee..fa57e0dd7 100644 --- a/install/includes/gettext/lang_src/installer.pot +++ b/install/includes/gettext/lang_src/installer.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 15:04+0000\n" +"POT-Creation-Date: 2024-07-10 15:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 95a3faccee49c1e6df12acd5621c41cb5190f5fe Mon Sep 17 00:00:00 2001 From: phl0 Date: Wed, 10 Jul 2024 18:00:56 +0200 Subject: [PATCH 04/13] Add error message --- application/controllers/Lotw.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/Lotw.php b/application/controllers/Lotw.php index a18cd7110..81ac3b439 100644 --- a/application/controllers/Lotw.php +++ b/application/controllers/Lotw.php @@ -1003,7 +1003,7 @@ class Lotw extends CI_Controller { return $signature_b64."\n"; } else { // in case of deprecation of SHA-1 in some distro - log_message('error', openssl_error_string()); + log_message('error', 'Error signing LoTW log: '.openssl_error_string()); } } else { log_message('error', 'Error signing LoTW log.'); From e5e51276bc5fb14c946238120a193320dec13852 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 10 Jul 2024 16:01:46 +0000 Subject: [PATCH 05/13] Run po_gen.sh script to update translation files --- assets/lang_src/messages.pot | 2 +- install/includes/gettext/lang_src/installer.pot | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot index b8c1a3ba4..e22b035ee 100644 --- a/assets/lang_src/messages.pot +++ b/assets/lang_src/messages.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 15:57+0000\n" +"POT-Creation-Date: 2024-07-10 16:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/install/includes/gettext/lang_src/installer.pot b/install/includes/gettext/lang_src/installer.pot index fa57e0dd7..408c80572 100644 --- a/install/includes/gettext/lang_src/installer.pot +++ b/install/includes/gettext/lang_src/installer.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 15:57+0000\n" +"POT-Creation-Date: 2024-07-10 16:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 3770e01aafede3926032fc62b573b8090abea9bf Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 10 Jul 2024 16:25:53 +0000 Subject: [PATCH 06/13] Run po_gen.sh script to update translation files --- .../locale/bg_BG/LC_MESSAGES/messages.po | 150 +++++++++--------- .../locale/cs_CZ/LC_MESSAGES/messages.po | 150 +++++++++--------- .../locale/de_DE/LC_MESSAGES/messages.po | 150 +++++++++--------- .../locale/el_GR/LC_MESSAGES/messages.po | 150 +++++++++--------- .../locale/es_ES/LC_MESSAGES/messages.po | 150 +++++++++--------- .../locale/fi_FI/LC_MESSAGES/messages.po | 150 +++++++++--------- .../locale/fr_FR/LC_MESSAGES/messages.po | 150 +++++++++--------- .../locale/it_IT/LC_MESSAGES/messages.po | 150 +++++++++--------- .../locale/nl_NL/LC_MESSAGES/messages.po | 150 +++++++++--------- .../locale/pl_PL/LC_MESSAGES/messages.po | 150 +++++++++--------- .../locale/ru_RU/LC_MESSAGES/messages.po | 150 +++++++++--------- .../locale/sv_SE/LC_MESSAGES/messages.po | 150 +++++++++--------- .../locale/tr_TR/LC_MESSAGES/messages.po | 150 +++++++++--------- .../locale/zh_CN/LC_MESSAGES/messages.po | 150 +++++++++--------- assets/lang_src/messages.pot | 150 +++++++++--------- .../includes/gettext/lang_src/installer.pot | 2 +- 16 files changed, 1141 insertions(+), 1111 deletions(-) diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po index eeeeedc09..4479c2755 100644 --- a/application/locale/bg_BG/LC_MESSAGES/messages.po +++ b/application/locale/bg_BG/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 15:04+0000\n" +"POT-Creation-Date: 2024-07-10 16:25+0000\n" "PO-Revision-Date: 2024-07-09 13:25+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Bulgarian \n" @@ -500,7 +500,7 @@ msgstr "" msgid "Number of days with QSOs each year" msgstr "" -#: application/controllers/Debug.php:75 +#: application/controllers/Debug.php:79 msgid "Debug" msgstr "" @@ -874,7 +874,7 @@ msgstr "" #: application/views/contesting/index.php:203 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:509 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:520 application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 @@ -1147,7 +1147,7 @@ msgstr "" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:510 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:521 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 @@ -2355,7 +2355,7 @@ msgstr "" #: application/views/contesting/index.php:42 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:506 application/views/eqsl/analysis.php:36 +#: application/views/debug/index.php:517 application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2396,7 +2396,7 @@ msgstr "Дата" #: application/views/contesting/index.php:47 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:507 application/views/eqsl/analysis.php:37 +#: application/views/debug/index.php:518 application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2422,7 +2422,7 @@ msgstr "Час" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/debug/index.php:519 application/views/debug/index.php:554 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -2473,8 +2473,8 @@ msgid "Maximum file upload size is " msgstr "" #: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:153 -#: application/views/debug/index.php:498 application/views/hrdlog/export.php:25 +#: application/views/adif/import.php:258 application/views/debug/index.php:164 +#: application/views/debug/index.php:509 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 @@ -4925,166 +4925,168 @@ msgid "This verifies that the folders used by Wavelog have read and write permis msgstr "" #: application/views/debug/index.php:101 application/views/debug/index.php:112 -#: application/views/debug/index.php:123 application/views/debug/index.php:135 +#: application/views/debug/index.php:123 application/views/debug/index.php:134 +#: application/views/debug/index.php:146 msgid "Success" msgstr "" #: application/views/debug/index.php:103 application/views/debug/index.php:114 -#: application/views/debug/index.php:125 application/views/debug/index.php:137 +#: application/views/debug/index.php:125 application/views/debug/index.php:136 +#: application/views/debug/index.php:148 msgid "Failed" msgstr "" -#: application/views/debug/index.php:147 +#: application/views/debug/index.php:158 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:153 +#: application/views/debug/index.php:164 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:155 +#: application/views/debug/index.php:166 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:167 msgid "Go to your application/config Folder and compare config.sample.php with your config.php" msgstr "" -#: application/views/debug/index.php:157 +#: application/views/debug/index.php:168 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Ok" msgstr "" -#: application/views/debug/index.php:170 +#: application/views/debug/index.php:181 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:172 +#: application/views/debug/index.php:183 msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." msgstr "" -#: application/views/debug/index.php:185 +#: application/views/debug/index.php:196 msgid "Modules" msgstr "" -#: application/views/debug/index.php:191 application/views/debug/index.php:202 -#: application/views/debug/index.php:213 application/views/debug/index.php:224 -#: application/views/debug/index.php:235 +#: application/views/debug/index.php:202 application/views/debug/index.php:213 +#: application/views/debug/index.php:224 application/views/debug/index.php:235 +#: application/views/debug/index.php:246 msgid "Installed" msgstr "" -#: application/views/debug/index.php:193 application/views/debug/index.php:204 -#: application/views/debug/index.php:215 application/views/debug/index.php:226 -#: application/views/debug/index.php:237 +#: application/views/debug/index.php:204 application/views/debug/index.php:215 +#: application/views/debug/index.php:226 application/views/debug/index.php:237 +#: application/views/debug/index.php:248 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:244 application/views/qso/index.php:654 +#: application/views/debug/index.php:255 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:373 +#: application/views/debug/index.php:384 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:377 +#: application/views/debug/index.php:388 msgid "Branch" msgstr "" -#: application/views/debug/index.php:388 application/views/debug/index.php:399 -#: application/views/debug/index.php:409 +#: application/views/debug/index.php:399 application/views/debug/index.php:410 +#: application/views/debug/index.php:420 msgid "n/a" msgstr "" -#: application/views/debug/index.php:394 +#: application/views/debug/index.php:405 msgid "Commit" msgstr "" -#: application/views/debug/index.php:404 +#: application/views/debug/index.php:415 msgid "Tag" msgstr "" -#: application/views/debug/index.php:414 +#: application/views/debug/index.php:425 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:426 +#: application/views/debug/index.php:437 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:427 +#: application/views/debug/index.php:438 msgid "Update now" msgstr "" -#: application/views/debug/index.php:445 +#: application/views/debug/index.php:456 msgid "File download date" msgstr "" -#: application/views/debug/index.php:449 +#: application/views/debug/index.php:460 msgid "File" msgstr "" -#: application/views/debug/index.php:450 +#: application/views/debug/index.php:461 msgid "Last update" msgstr "" -#: application/views/debug/index.php:454 +#: application/views/debug/index.php:465 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:456 application/views/debug/index.php:462 -#: application/views/debug/index.php:467 application/views/debug/index.php:472 -#: application/views/debug/index.php:477 application/views/debug/index.php:482 -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:467 application/views/debug/index.php:473 +#: application/views/debug/index.php:478 application/views/debug/index.php:483 +#: application/views/debug/index.php:488 application/views/debug/index.php:493 +#: application/views/debug/index.php:498 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:460 +#: application/views/debug/index.php:471 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:470 +#: application/views/debug/index.php:481 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:475 +#: application/views/debug/index.php:486 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:480 +#: application/views/debug/index.php:491 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:485 +#: application/views/debug/index.php:496 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:494 +#: application/views/debug/index.php:505 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:509 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "The Database contains %d QSOs without a station-profile (location)" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:511 +#: application/views/debug/index.php:522 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:38 #: application/views/station_profile/edit.php:46 @@ -5094,84 +5096,84 @@ msgstr[1] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:547 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:544 +#: application/views/debug/index.php:555 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:545 application/views/debug/index.php:556 +#: application/views/debug/index.php:556 application/views/debug/index.php:567 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:590 +#: application/views/debug/index.php:601 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:591 +#: application/views/debug/index.php:602 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:603 msgid "Czech" msgstr "" -#: application/views/debug/index.php:593 +#: application/views/debug/index.php:604 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:594 +#: application/views/debug/index.php:605 msgid "English" msgstr "" -#: application/views/debug/index.php:595 +#: application/views/debug/index.php:606 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:607 msgid "French" msgstr "" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:608 msgid "German" msgstr "" -#: application/views/debug/index.php:598 +#: application/views/debug/index.php:609 msgid "Greek" msgstr "" -#: application/views/debug/index.php:599 +#: application/views/debug/index.php:610 msgid "Italian" msgstr "" -#: application/views/debug/index.php:600 +#: application/views/debug/index.php:611 msgid "Polish" msgstr "" -#: application/views/debug/index.php:601 +#: application/views/debug/index.php:612 msgid "Russian" msgstr "" -#: application/views/debug/index.php:602 +#: application/views/debug/index.php:613 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:614 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:604 +#: application/views/debug/index.php:615 msgid "Turkish" msgstr "" diff --git a/application/locale/cs_CZ/LC_MESSAGES/messages.po b/application/locale/cs_CZ/LC_MESSAGES/messages.po index c049547e6..5376fd5d1 100644 --- a/application/locale/cs_CZ/LC_MESSAGES/messages.po +++ b/application/locale/cs_CZ/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 15:04+0000\n" +"POT-Creation-Date: 2024-07-10 16:25+0000\n" "PO-Revision-Date: 2024-07-09 13:25+0000\n" "Last-Translator: Ondřej Koloničný \n" "Language-Team: Czech \n" @@ -501,7 +501,7 @@ msgstr "" msgid "Number of days with QSOs each year" msgstr "" -#: application/controllers/Debug.php:75 +#: application/controllers/Debug.php:79 msgid "Debug" msgstr "" @@ -876,7 +876,7 @@ msgstr "" #: application/views/contesting/index.php:203 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:509 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:520 application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 @@ -1149,7 +1149,7 @@ msgstr "Vzdálenost" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:510 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:521 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 @@ -2357,7 +2357,7 @@ msgstr "" #: application/views/contesting/index.php:42 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:506 application/views/eqsl/analysis.php:36 +#: application/views/debug/index.php:517 application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2398,7 +2398,7 @@ msgstr "Datum" #: application/views/contesting/index.php:47 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:507 application/views/eqsl/analysis.php:37 +#: application/views/debug/index.php:518 application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2424,7 +2424,7 @@ msgstr "Čas" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/debug/index.php:519 application/views/debug/index.php:554 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -2475,8 +2475,8 @@ msgid "Maximum file upload size is " msgstr "" #: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:153 -#: application/views/debug/index.php:498 application/views/hrdlog/export.php:25 +#: application/views/adif/import.php:258 application/views/debug/index.php:164 +#: application/views/debug/index.php:509 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 @@ -4928,159 +4928,161 @@ msgid "This verifies that the folders used by Wavelog have read and write permis msgstr "" #: application/views/debug/index.php:101 application/views/debug/index.php:112 -#: application/views/debug/index.php:123 application/views/debug/index.php:135 +#: application/views/debug/index.php:123 application/views/debug/index.php:134 +#: application/views/debug/index.php:146 msgid "Success" msgstr "" #: application/views/debug/index.php:103 application/views/debug/index.php:114 -#: application/views/debug/index.php:125 application/views/debug/index.php:137 +#: application/views/debug/index.php:125 application/views/debug/index.php:136 +#: application/views/debug/index.php:148 msgid "Failed" msgstr "" -#: application/views/debug/index.php:147 +#: application/views/debug/index.php:158 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:153 +#: application/views/debug/index.php:164 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:155 +#: application/views/debug/index.php:166 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:167 msgid "Go to your application/config Folder and compare config.sample.php with your config.php" msgstr "" -#: application/views/debug/index.php:157 +#: application/views/debug/index.php:168 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Ok" msgstr "" -#: application/views/debug/index.php:170 +#: application/views/debug/index.php:181 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:172 +#: application/views/debug/index.php:183 msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." msgstr "" -#: application/views/debug/index.php:185 +#: application/views/debug/index.php:196 msgid "Modules" msgstr "" -#: application/views/debug/index.php:191 application/views/debug/index.php:202 -#: application/views/debug/index.php:213 application/views/debug/index.php:224 -#: application/views/debug/index.php:235 +#: application/views/debug/index.php:202 application/views/debug/index.php:213 +#: application/views/debug/index.php:224 application/views/debug/index.php:235 +#: application/views/debug/index.php:246 msgid "Installed" msgstr "" -#: application/views/debug/index.php:193 application/views/debug/index.php:204 -#: application/views/debug/index.php:215 application/views/debug/index.php:226 -#: application/views/debug/index.php:237 +#: application/views/debug/index.php:204 application/views/debug/index.php:215 +#: application/views/debug/index.php:226 application/views/debug/index.php:237 +#: application/views/debug/index.php:248 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:244 application/views/qso/index.php:654 +#: application/views/debug/index.php:255 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:373 +#: application/views/debug/index.php:384 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:377 +#: application/views/debug/index.php:388 msgid "Branch" msgstr "" -#: application/views/debug/index.php:388 application/views/debug/index.php:399 -#: application/views/debug/index.php:409 +#: application/views/debug/index.php:399 application/views/debug/index.php:410 +#: application/views/debug/index.php:420 msgid "n/a" msgstr "" -#: application/views/debug/index.php:394 +#: application/views/debug/index.php:405 msgid "Commit" msgstr "" -#: application/views/debug/index.php:404 +#: application/views/debug/index.php:415 msgid "Tag" msgstr "" -#: application/views/debug/index.php:414 +#: application/views/debug/index.php:425 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:426 +#: application/views/debug/index.php:437 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:427 +#: application/views/debug/index.php:438 msgid "Update now" msgstr "" -#: application/views/debug/index.php:445 +#: application/views/debug/index.php:456 msgid "File download date" msgstr "" -#: application/views/debug/index.php:449 +#: application/views/debug/index.php:460 msgid "File" msgstr "" -#: application/views/debug/index.php:450 +#: application/views/debug/index.php:461 msgid "Last update" msgstr "" -#: application/views/debug/index.php:454 +#: application/views/debug/index.php:465 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:456 application/views/debug/index.php:462 -#: application/views/debug/index.php:467 application/views/debug/index.php:472 -#: application/views/debug/index.php:477 application/views/debug/index.php:482 -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:467 application/views/debug/index.php:473 +#: application/views/debug/index.php:478 application/views/debug/index.php:483 +#: application/views/debug/index.php:488 application/views/debug/index.php:493 +#: application/views/debug/index.php:498 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:460 +#: application/views/debug/index.php:471 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:470 +#: application/views/debug/index.php:481 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:475 +#: application/views/debug/index.php:486 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:480 +#: application/views/debug/index.php:491 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:485 +#: application/views/debug/index.php:496 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:494 +#: application/views/debug/index.php:505 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:509 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "The Database contains %d QSOs without a station-profile (location)" @@ -5088,7 +5090,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: application/views/debug/index.php:511 +#: application/views/debug/index.php:522 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:38 #: application/views/station_profile/edit.php:46 @@ -5098,84 +5100,84 @@ msgstr[2] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:547 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:544 +#: application/views/debug/index.php:555 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:545 application/views/debug/index.php:556 +#: application/views/debug/index.php:556 application/views/debug/index.php:567 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:590 +#: application/views/debug/index.php:601 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:591 +#: application/views/debug/index.php:602 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:603 msgid "Czech" msgstr "" -#: application/views/debug/index.php:593 +#: application/views/debug/index.php:604 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:594 +#: application/views/debug/index.php:605 msgid "English" msgstr "" -#: application/views/debug/index.php:595 +#: application/views/debug/index.php:606 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:607 msgid "French" msgstr "" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:608 msgid "German" msgstr "" -#: application/views/debug/index.php:598 +#: application/views/debug/index.php:609 msgid "Greek" msgstr "" -#: application/views/debug/index.php:599 +#: application/views/debug/index.php:610 msgid "Italian" msgstr "" -#: application/views/debug/index.php:600 +#: application/views/debug/index.php:611 msgid "Polish" msgstr "" -#: application/views/debug/index.php:601 +#: application/views/debug/index.php:612 msgid "Russian" msgstr "" -#: application/views/debug/index.php:602 +#: application/views/debug/index.php:613 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:614 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:604 +#: application/views/debug/index.php:615 msgid "Turkish" msgstr "" diff --git a/application/locale/de_DE/LC_MESSAGES/messages.po b/application/locale/de_DE/LC_MESSAGES/messages.po index 4929df74a..5aadbfd42 100644 --- a/application/locale/de_DE/LC_MESSAGES/messages.po +++ b/application/locale/de_DE/LC_MESSAGES/messages.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 15:04+0000\n" +"POT-Creation-Date: 2024-07-10 16:25+0000\n" "PO-Revision-Date: 2024-07-09 13:25+0000\n" "Last-Translator: Florian Wolters \n" "Language-Team: German \n" @@ -505,7 +505,7 @@ msgstr "Dashboard" msgid "Number of days with QSOs each year" msgstr "Anzahl der Tage mit QSOs pro Jahr" -#: application/controllers/Debug.php:75 +#: application/controllers/Debug.php:79 msgid "Debug" msgstr "Debug" @@ -879,7 +879,7 @@ msgstr "Clublog" #: application/views/contesting/index.php:203 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:509 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:520 application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 @@ -1152,7 +1152,7 @@ msgstr "Distanz" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:510 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:521 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 @@ -2360,7 +2360,7 @@ msgstr "Die DOK Informationen im Logbuch weichen von denen im DCL ab" #: application/views/contesting/index.php:42 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:506 application/views/eqsl/analysis.php:36 +#: application/views/debug/index.php:517 application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2401,7 +2401,7 @@ msgstr "Datum" #: application/views/contesting/index.php:47 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:507 application/views/eqsl/analysis.php:37 +#: application/views/debug/index.php:518 application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2427,7 +2427,7 @@ msgstr "Zeit" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/debug/index.php:519 application/views/debug/index.php:554 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -2478,8 +2478,8 @@ msgid "Maximum file upload size is " msgstr "Die max. Dateigrösse für Uploads beträgt " #: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:153 -#: application/views/debug/index.php:498 application/views/hrdlog/export.php:25 +#: application/views/adif/import.php:258 application/views/debug/index.php:164 +#: application/views/debug/index.php:509 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 @@ -4930,166 +4930,168 @@ msgid "This verifies that the folders used by Wavelog have read and write permis msgstr "Dies verifiziert, dass die von Wavelog verwendeten Ordner Schreib und Lese-Rechte durch PHP haben." #: application/views/debug/index.php:101 application/views/debug/index.php:112 -#: application/views/debug/index.php:123 application/views/debug/index.php:135 +#: application/views/debug/index.php:123 application/views/debug/index.php:134 +#: application/views/debug/index.php:146 msgid "Success" msgstr "Erfolgreich" #: application/views/debug/index.php:103 application/views/debug/index.php:114 -#: application/views/debug/index.php:125 application/views/debug/index.php:137 +#: application/views/debug/index.php:125 application/views/debug/index.php:136 +#: application/views/debug/index.php:148 msgid "Failed" msgstr "Fehlgeschlagen" -#: application/views/debug/index.php:147 +#: application/views/debug/index.php:158 msgid "Config Maintenance" msgstr "Konfigurations-Wartung" -#: application/views/debug/index.php:153 +#: application/views/debug/index.php:164 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "Dein Authentifizierungsmodus ist veraltet und möglicherweise unsicher" -#: application/views/debug/index.php:155 +#: application/views/debug/index.php:166 #, php-format msgid "Please edit your %s File:" msgstr "Bitte bearbeite deine %s Datei:" -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:167 msgid "Go to your application/config Folder and compare config.sample.php with your config.php" msgstr "Gehe in den application/config Ordner und vergleiche die config.sample.php mit deiner config.php" -#: application/views/debug/index.php:157 +#: application/views/debug/index.php:168 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "Ändere %s zu dem Wert %s (Stark empfohlen)" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Authentication Mode is set correctly" msgstr "Der Authentifizierungsmodus ist korrekt eingestellt" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Ok" msgstr "Ok" -#: application/views/debug/index.php:170 +#: application/views/debug/index.php:181 msgid "Migrate Userdata" msgstr "Benutzerdaten migrieren" -#: application/views/debug/index.php:172 +#: application/views/debug/index.php:183 msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." msgstr "Hier kannst du bestehende QSL-Karten und eQSL-Karten in den neuen Benutzerdaten-Ordner migrieren." -#: application/views/debug/index.php:185 +#: application/views/debug/index.php:196 msgid "Modules" msgstr "Module" -#: application/views/debug/index.php:191 application/views/debug/index.php:202 -#: application/views/debug/index.php:213 application/views/debug/index.php:224 -#: application/views/debug/index.php:235 +#: application/views/debug/index.php:202 application/views/debug/index.php:213 +#: application/views/debug/index.php:224 application/views/debug/index.php:235 +#: application/views/debug/index.php:246 msgid "Installed" msgstr "Installiert" -#: application/views/debug/index.php:193 application/views/debug/index.php:204 -#: application/views/debug/index.php:215 application/views/debug/index.php:226 -#: application/views/debug/index.php:237 +#: application/views/debug/index.php:204 application/views/debug/index.php:215 +#: application/views/debug/index.php:226 application/views/debug/index.php:237 +#: application/views/debug/index.php:248 msgid "Not Installed" msgstr "Nicht installiert" -#: application/views/debug/index.php:244 application/views/qso/index.php:654 +#: application/views/debug/index.php:255 application/views/qso/index.php:654 msgid "Settings" msgstr "Einstellungen" -#: application/views/debug/index.php:373 +#: application/views/debug/index.php:384 msgid "Git Information" msgstr "Git Informationen" -#: application/views/debug/index.php:377 +#: application/views/debug/index.php:388 msgid "Branch" msgstr "Branch" -#: application/views/debug/index.php:388 application/views/debug/index.php:399 -#: application/views/debug/index.php:409 +#: application/views/debug/index.php:399 application/views/debug/index.php:410 +#: application/views/debug/index.php:420 msgid "n/a" msgstr "n/a" -#: application/views/debug/index.php:394 +#: application/views/debug/index.php:405 msgid "Commit" msgstr "Commit" -#: application/views/debug/index.php:404 +#: application/views/debug/index.php:415 msgid "Tag" msgstr "Tag" -#: application/views/debug/index.php:414 +#: application/views/debug/index.php:425 msgid "Last Fetch" msgstr "Letzter Abruf" -#: application/views/debug/index.php:426 +#: application/views/debug/index.php:437 msgid "Check for new version" msgstr "Nach neuer Version suchen" -#: application/views/debug/index.php:427 +#: application/views/debug/index.php:438 msgid "Update now" msgstr "Jetzt aktualisieren" -#: application/views/debug/index.php:445 +#: application/views/debug/index.php:456 msgid "File download date" msgstr "Datum des Datei-Downloads" -#: application/views/debug/index.php:449 +#: application/views/debug/index.php:460 msgid "File" msgstr "Datei" -#: application/views/debug/index.php:450 +#: application/views/debug/index.php:461 msgid "Last update" msgstr "Letzte Aktualisierung" -#: application/views/debug/index.php:454 +#: application/views/debug/index.php:465 msgid "DXCC update from Club Log" msgstr "DXCC-Update von Club Log" -#: application/views/debug/index.php:456 application/views/debug/index.php:462 -#: application/views/debug/index.php:467 application/views/debug/index.php:472 -#: application/views/debug/index.php:477 application/views/debug/index.php:482 -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:467 application/views/debug/index.php:473 +#: application/views/debug/index.php:478 application/views/debug/index.php:483 +#: application/views/debug/index.php:488 application/views/debug/index.php:493 +#: application/views/debug/index.php:498 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "Aktualisierung" -#: application/views/debug/index.php:460 +#: application/views/debug/index.php:471 msgid "DOK file download" msgstr "DOK Datei Download" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "LoTW users download" msgstr "LoTW Benutzer Download" -#: application/views/debug/index.php:470 +#: application/views/debug/index.php:481 msgid "POTA file download" msgstr "POTA Datei Download" -#: application/views/debug/index.php:475 +#: application/views/debug/index.php:486 msgid "SCP file download" msgstr "SCP Datei Download" -#: application/views/debug/index.php:480 +#: application/views/debug/index.php:491 msgid "SOTA file download" msgstr "SOTA Datei Download" -#: application/views/debug/index.php:485 +#: application/views/debug/index.php:496 msgid "WWFF file download" msgstr "WWFF Datei Download" -#: application/views/debug/index.php:494 +#: application/views/debug/index.php:505 msgid "QSO-DB Maintenance" msgstr "QSO-DB Wartung" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:509 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "The Database contains %d QSOs without a station-profile (location)" msgstr[0] "Die Datenbank enthält %d QSO ohne Stationsprofil (Standort)" msgstr[1] "Die Datenbank enthält %d QSOs ohne Stationsprofil (Standort)" -#: application/views/debug/index.php:511 +#: application/views/debug/index.php:522 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:38 #: application/views/station_profile/edit.php:46 @@ -5099,84 +5101,84 @@ msgstr[1] "Die Datenbank enthält %d QSOs ohne Stationsprofil (Standort)" msgid "Station Callsign" msgstr "Stations Rufzeichen" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:547 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "Bitte markiere die QSOs und weise sie einem vorhandenen Stationsstandort zu:" -#: application/views/debug/index.php:544 +#: application/views/debug/index.php:555 msgctxt "Stationlocation" msgid "Target Location" msgstr "Ziel Standort" -#: application/views/debug/index.php:545 application/views/debug/index.php:556 +#: application/views/debug/index.php:556 application/views/debug/index.php:567 msgid "Reassign" msgstr "Neu zuweisen" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "Jedes QSO in deiner Datenbank ist einem Stationsprofil (Standort) zugeordnet" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Everything ok" msgstr "Alles in Ordnung" -#: application/views/debug/index.php:590 +#: application/views/debug/index.php:601 msgid "Bulgarian" msgstr "Bulgarisch" -#: application/views/debug/index.php:591 +#: application/views/debug/index.php:602 msgid "Chinese (Simplified)" msgstr "Chinesisch (Vereinfacht)" -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:603 msgid "Czech" msgstr "Tschechisch" -#: application/views/debug/index.php:593 +#: application/views/debug/index.php:604 msgid "Dutch" msgstr "Niederländisch" -#: application/views/debug/index.php:594 +#: application/views/debug/index.php:605 msgid "English" msgstr "Englisch" -#: application/views/debug/index.php:595 +#: application/views/debug/index.php:606 msgid "Finnish" msgstr "Finnisch" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:607 msgid "French" msgstr "Französisch" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:608 msgid "German" msgstr "Deutsch" -#: application/views/debug/index.php:598 +#: application/views/debug/index.php:609 msgid "Greek" msgstr "Griechisch" -#: application/views/debug/index.php:599 +#: application/views/debug/index.php:610 msgid "Italian" msgstr "Italienisch" -#: application/views/debug/index.php:600 +#: application/views/debug/index.php:611 msgid "Polish" msgstr "Polnisch" -#: application/views/debug/index.php:601 +#: application/views/debug/index.php:612 msgid "Russian" msgstr "Russisch" -#: application/views/debug/index.php:602 +#: application/views/debug/index.php:613 msgid "Spanish" msgstr "Spanisch" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:614 msgid "Swedish" msgstr "Schwedisch" -#: application/views/debug/index.php:604 +#: application/views/debug/index.php:615 msgid "Turkish" msgstr "Türkisch" diff --git a/application/locale/el_GR/LC_MESSAGES/messages.po b/application/locale/el_GR/LC_MESSAGES/messages.po index a7cdee1b8..9f988f8c6 100644 --- a/application/locale/el_GR/LC_MESSAGES/messages.po +++ b/application/locale/el_GR/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 15:04+0000\n" +"POT-Creation-Date: 2024-07-10 16:25+0000\n" "PO-Revision-Date: 2024-07-09 13:25+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Greek \n" @@ -501,7 +501,7 @@ msgstr "" msgid "Number of days with QSOs each year" msgstr "" -#: application/controllers/Debug.php:75 +#: application/controllers/Debug.php:79 msgid "Debug" msgstr "" @@ -875,7 +875,7 @@ msgstr "" #: application/views/contesting/index.php:203 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:509 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:520 application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 @@ -1148,7 +1148,7 @@ msgstr "" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:510 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:521 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 @@ -2356,7 +2356,7 @@ msgstr "" #: application/views/contesting/index.php:42 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:506 application/views/eqsl/analysis.php:36 +#: application/views/debug/index.php:517 application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2397,7 +2397,7 @@ msgstr "Ημερομηνία" #: application/views/contesting/index.php:47 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:507 application/views/eqsl/analysis.php:37 +#: application/views/debug/index.php:518 application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2423,7 +2423,7 @@ msgstr "Ωρα" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/debug/index.php:519 application/views/debug/index.php:554 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -2474,8 +2474,8 @@ msgid "Maximum file upload size is " msgstr "" #: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:153 -#: application/views/debug/index.php:498 application/views/hrdlog/export.php:25 +#: application/views/adif/import.php:258 application/views/debug/index.php:164 +#: application/views/debug/index.php:509 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 @@ -4926,166 +4926,168 @@ msgid "This verifies that the folders used by Wavelog have read and write permis msgstr "" #: application/views/debug/index.php:101 application/views/debug/index.php:112 -#: application/views/debug/index.php:123 application/views/debug/index.php:135 +#: application/views/debug/index.php:123 application/views/debug/index.php:134 +#: application/views/debug/index.php:146 msgid "Success" msgstr "" #: application/views/debug/index.php:103 application/views/debug/index.php:114 -#: application/views/debug/index.php:125 application/views/debug/index.php:137 +#: application/views/debug/index.php:125 application/views/debug/index.php:136 +#: application/views/debug/index.php:148 msgid "Failed" msgstr "" -#: application/views/debug/index.php:147 +#: application/views/debug/index.php:158 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:153 +#: application/views/debug/index.php:164 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:155 +#: application/views/debug/index.php:166 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:167 msgid "Go to your application/config Folder and compare config.sample.php with your config.php" msgstr "" -#: application/views/debug/index.php:157 +#: application/views/debug/index.php:168 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Ok" msgstr "" -#: application/views/debug/index.php:170 +#: application/views/debug/index.php:181 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:172 +#: application/views/debug/index.php:183 msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." msgstr "" -#: application/views/debug/index.php:185 +#: application/views/debug/index.php:196 msgid "Modules" msgstr "" -#: application/views/debug/index.php:191 application/views/debug/index.php:202 -#: application/views/debug/index.php:213 application/views/debug/index.php:224 -#: application/views/debug/index.php:235 +#: application/views/debug/index.php:202 application/views/debug/index.php:213 +#: application/views/debug/index.php:224 application/views/debug/index.php:235 +#: application/views/debug/index.php:246 msgid "Installed" msgstr "" -#: application/views/debug/index.php:193 application/views/debug/index.php:204 -#: application/views/debug/index.php:215 application/views/debug/index.php:226 -#: application/views/debug/index.php:237 +#: application/views/debug/index.php:204 application/views/debug/index.php:215 +#: application/views/debug/index.php:226 application/views/debug/index.php:237 +#: application/views/debug/index.php:248 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:244 application/views/qso/index.php:654 +#: application/views/debug/index.php:255 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:373 +#: application/views/debug/index.php:384 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:377 +#: application/views/debug/index.php:388 msgid "Branch" msgstr "" -#: application/views/debug/index.php:388 application/views/debug/index.php:399 -#: application/views/debug/index.php:409 +#: application/views/debug/index.php:399 application/views/debug/index.php:410 +#: application/views/debug/index.php:420 msgid "n/a" msgstr "" -#: application/views/debug/index.php:394 +#: application/views/debug/index.php:405 msgid "Commit" msgstr "" -#: application/views/debug/index.php:404 +#: application/views/debug/index.php:415 msgid "Tag" msgstr "" -#: application/views/debug/index.php:414 +#: application/views/debug/index.php:425 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:426 +#: application/views/debug/index.php:437 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:427 +#: application/views/debug/index.php:438 msgid "Update now" msgstr "" -#: application/views/debug/index.php:445 +#: application/views/debug/index.php:456 msgid "File download date" msgstr "" -#: application/views/debug/index.php:449 +#: application/views/debug/index.php:460 msgid "File" msgstr "" -#: application/views/debug/index.php:450 +#: application/views/debug/index.php:461 msgid "Last update" msgstr "" -#: application/views/debug/index.php:454 +#: application/views/debug/index.php:465 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:456 application/views/debug/index.php:462 -#: application/views/debug/index.php:467 application/views/debug/index.php:472 -#: application/views/debug/index.php:477 application/views/debug/index.php:482 -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:467 application/views/debug/index.php:473 +#: application/views/debug/index.php:478 application/views/debug/index.php:483 +#: application/views/debug/index.php:488 application/views/debug/index.php:493 +#: application/views/debug/index.php:498 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:460 +#: application/views/debug/index.php:471 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:470 +#: application/views/debug/index.php:481 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:475 +#: application/views/debug/index.php:486 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:480 +#: application/views/debug/index.php:491 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:485 +#: application/views/debug/index.php:496 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:494 +#: application/views/debug/index.php:505 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:509 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "The Database contains %d QSOs without a station-profile (location)" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:511 +#: application/views/debug/index.php:522 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:38 #: application/views/station_profile/edit.php:46 @@ -5095,84 +5097,84 @@ msgstr[1] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:547 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:544 +#: application/views/debug/index.php:555 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:545 application/views/debug/index.php:556 +#: application/views/debug/index.php:556 application/views/debug/index.php:567 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:590 +#: application/views/debug/index.php:601 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:591 +#: application/views/debug/index.php:602 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:603 msgid "Czech" msgstr "" -#: application/views/debug/index.php:593 +#: application/views/debug/index.php:604 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:594 +#: application/views/debug/index.php:605 msgid "English" msgstr "" -#: application/views/debug/index.php:595 +#: application/views/debug/index.php:606 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:607 msgid "French" msgstr "" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:608 msgid "German" msgstr "" -#: application/views/debug/index.php:598 +#: application/views/debug/index.php:609 msgid "Greek" msgstr "" -#: application/views/debug/index.php:599 +#: application/views/debug/index.php:610 msgid "Italian" msgstr "" -#: application/views/debug/index.php:600 +#: application/views/debug/index.php:611 msgid "Polish" msgstr "" -#: application/views/debug/index.php:601 +#: application/views/debug/index.php:612 msgid "Russian" msgstr "" -#: application/views/debug/index.php:602 +#: application/views/debug/index.php:613 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:614 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:604 +#: application/views/debug/index.php:615 msgid "Turkish" msgstr "" diff --git a/application/locale/es_ES/LC_MESSAGES/messages.po b/application/locale/es_ES/LC_MESSAGES/messages.po index df9bf78f2..801605e95 100644 --- a/application/locale/es_ES/LC_MESSAGES/messages.po +++ b/application/locale/es_ES/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 15:04+0000\n" +"POT-Creation-Date: 2024-07-10 16:25+0000\n" "PO-Revision-Date: 2024-07-09 13:25+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Spanish \n" @@ -501,7 +501,7 @@ msgstr "Panel de control" msgid "Number of days with QSOs each year" msgstr "Número de días con QSOs cada año" -#: application/controllers/Debug.php:75 +#: application/controllers/Debug.php:79 msgid "Debug" msgstr "Depuración" @@ -875,7 +875,7 @@ msgstr "" #: application/views/contesting/index.php:203 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:509 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:520 application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 @@ -1148,7 +1148,7 @@ msgstr "Distancia" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:510 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:521 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 @@ -2356,7 +2356,7 @@ msgstr "Hay datos diferentes para DOKs en su libro comparados con DCL" #: application/views/contesting/index.php:42 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:506 application/views/eqsl/analysis.php:36 +#: application/views/debug/index.php:517 application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2397,7 +2397,7 @@ msgstr "Fecha" #: application/views/contesting/index.php:47 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:507 application/views/eqsl/analysis.php:37 +#: application/views/debug/index.php:518 application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2423,7 +2423,7 @@ msgstr "Tiempo Test" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/debug/index.php:519 application/views/debug/index.php:554 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -2474,8 +2474,8 @@ msgid "Maximum file upload size is " msgstr "El tamaño máximo del archivo subido es " #: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:153 -#: application/views/debug/index.php:498 application/views/hrdlog/export.php:25 +#: application/views/adif/import.php:258 application/views/debug/index.php:164 +#: application/views/debug/index.php:509 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 @@ -4926,166 +4926,168 @@ msgid "This verifies that the folders used by Wavelog have read and write permis msgstr "" #: application/views/debug/index.php:101 application/views/debug/index.php:112 -#: application/views/debug/index.php:123 application/views/debug/index.php:135 +#: application/views/debug/index.php:123 application/views/debug/index.php:134 +#: application/views/debug/index.php:146 msgid "Success" msgstr "" #: application/views/debug/index.php:103 application/views/debug/index.php:114 -#: application/views/debug/index.php:125 application/views/debug/index.php:137 +#: application/views/debug/index.php:125 application/views/debug/index.php:136 +#: application/views/debug/index.php:148 msgid "Failed" msgstr "" -#: application/views/debug/index.php:147 +#: application/views/debug/index.php:158 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:153 +#: application/views/debug/index.php:164 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:155 +#: application/views/debug/index.php:166 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:167 msgid "Go to your application/config Folder and compare config.sample.php with your config.php" msgstr "" -#: application/views/debug/index.php:157 +#: application/views/debug/index.php:168 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Ok" msgstr "" -#: application/views/debug/index.php:170 +#: application/views/debug/index.php:181 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:172 +#: application/views/debug/index.php:183 msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." msgstr "" -#: application/views/debug/index.php:185 +#: application/views/debug/index.php:196 msgid "Modules" msgstr "" -#: application/views/debug/index.php:191 application/views/debug/index.php:202 -#: application/views/debug/index.php:213 application/views/debug/index.php:224 -#: application/views/debug/index.php:235 +#: application/views/debug/index.php:202 application/views/debug/index.php:213 +#: application/views/debug/index.php:224 application/views/debug/index.php:235 +#: application/views/debug/index.php:246 msgid "Installed" msgstr "" -#: application/views/debug/index.php:193 application/views/debug/index.php:204 -#: application/views/debug/index.php:215 application/views/debug/index.php:226 -#: application/views/debug/index.php:237 +#: application/views/debug/index.php:204 application/views/debug/index.php:215 +#: application/views/debug/index.php:226 application/views/debug/index.php:237 +#: application/views/debug/index.php:248 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:244 application/views/qso/index.php:654 +#: application/views/debug/index.php:255 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:373 +#: application/views/debug/index.php:384 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:377 +#: application/views/debug/index.php:388 msgid "Branch" msgstr "" -#: application/views/debug/index.php:388 application/views/debug/index.php:399 -#: application/views/debug/index.php:409 +#: application/views/debug/index.php:399 application/views/debug/index.php:410 +#: application/views/debug/index.php:420 msgid "n/a" msgstr "" -#: application/views/debug/index.php:394 +#: application/views/debug/index.php:405 msgid "Commit" msgstr "" -#: application/views/debug/index.php:404 +#: application/views/debug/index.php:415 msgid "Tag" msgstr "" -#: application/views/debug/index.php:414 +#: application/views/debug/index.php:425 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:426 +#: application/views/debug/index.php:437 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:427 +#: application/views/debug/index.php:438 msgid "Update now" msgstr "" -#: application/views/debug/index.php:445 +#: application/views/debug/index.php:456 msgid "File download date" msgstr "" -#: application/views/debug/index.php:449 +#: application/views/debug/index.php:460 msgid "File" msgstr "" -#: application/views/debug/index.php:450 +#: application/views/debug/index.php:461 msgid "Last update" msgstr "" -#: application/views/debug/index.php:454 +#: application/views/debug/index.php:465 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:456 application/views/debug/index.php:462 -#: application/views/debug/index.php:467 application/views/debug/index.php:472 -#: application/views/debug/index.php:477 application/views/debug/index.php:482 -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:467 application/views/debug/index.php:473 +#: application/views/debug/index.php:478 application/views/debug/index.php:483 +#: application/views/debug/index.php:488 application/views/debug/index.php:493 +#: application/views/debug/index.php:498 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "Actualizar" -#: application/views/debug/index.php:460 +#: application/views/debug/index.php:471 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:470 +#: application/views/debug/index.php:481 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:475 +#: application/views/debug/index.php:486 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:480 +#: application/views/debug/index.php:491 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:485 +#: application/views/debug/index.php:496 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:494 +#: application/views/debug/index.php:505 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:509 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "The Database contains %d QSOs without a station-profile (location)" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:511 +#: application/views/debug/index.php:522 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:38 #: application/views/station_profile/edit.php:46 @@ -5095,84 +5097,84 @@ msgstr[1] "" msgid "Station Callsign" msgstr "Indicativo de la Estación" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:547 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:544 +#: application/views/debug/index.php:555 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:545 application/views/debug/index.php:556 +#: application/views/debug/index.php:556 application/views/debug/index.php:567 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:590 +#: application/views/debug/index.php:601 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:591 +#: application/views/debug/index.php:602 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:603 msgid "Czech" msgstr "" -#: application/views/debug/index.php:593 +#: application/views/debug/index.php:604 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:594 +#: application/views/debug/index.php:605 msgid "English" msgstr "" -#: application/views/debug/index.php:595 +#: application/views/debug/index.php:606 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:607 msgid "French" msgstr "" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:608 msgid "German" msgstr "" -#: application/views/debug/index.php:598 +#: application/views/debug/index.php:609 msgid "Greek" msgstr "" -#: application/views/debug/index.php:599 +#: application/views/debug/index.php:610 msgid "Italian" msgstr "" -#: application/views/debug/index.php:600 +#: application/views/debug/index.php:611 msgid "Polish" msgstr "" -#: application/views/debug/index.php:601 +#: application/views/debug/index.php:612 msgid "Russian" msgstr "" -#: application/views/debug/index.php:602 +#: application/views/debug/index.php:613 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:614 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:604 +#: application/views/debug/index.php:615 msgid "Turkish" msgstr "" diff --git a/application/locale/fi_FI/LC_MESSAGES/messages.po b/application/locale/fi_FI/LC_MESSAGES/messages.po index 17c857a0b..ba5316dd2 100644 --- a/application/locale/fi_FI/LC_MESSAGES/messages.po +++ b/application/locale/fi_FI/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 15:04+0000\n" +"POT-Creation-Date: 2024-07-10 16:25+0000\n" "PO-Revision-Date: 2024-07-09 13:25+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Finnish \n" @@ -500,7 +500,7 @@ msgstr "" msgid "Number of days with QSOs each year" msgstr "" -#: application/controllers/Debug.php:75 +#: application/controllers/Debug.php:79 msgid "Debug" msgstr "" @@ -874,7 +874,7 @@ msgstr "" #: application/views/contesting/index.php:203 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:509 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:520 application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 @@ -1147,7 +1147,7 @@ msgstr "Etäisyys" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:510 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:521 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 @@ -2355,7 +2355,7 @@ msgstr "" #: application/views/contesting/index.php:42 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:506 application/views/eqsl/analysis.php:36 +#: application/views/debug/index.php:517 application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2396,7 +2396,7 @@ msgstr "Päivä" #: application/views/contesting/index.php:47 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:507 application/views/eqsl/analysis.php:37 +#: application/views/debug/index.php:518 application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2422,7 +2422,7 @@ msgstr "Aika" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/debug/index.php:519 application/views/debug/index.php:554 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -2473,8 +2473,8 @@ msgid "Maximum file upload size is " msgstr "" #: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:153 -#: application/views/debug/index.php:498 application/views/hrdlog/export.php:25 +#: application/views/adif/import.php:258 application/views/debug/index.php:164 +#: application/views/debug/index.php:509 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 @@ -4925,166 +4925,168 @@ msgid "This verifies that the folders used by Wavelog have read and write permis msgstr "" #: application/views/debug/index.php:101 application/views/debug/index.php:112 -#: application/views/debug/index.php:123 application/views/debug/index.php:135 +#: application/views/debug/index.php:123 application/views/debug/index.php:134 +#: application/views/debug/index.php:146 msgid "Success" msgstr "" #: application/views/debug/index.php:103 application/views/debug/index.php:114 -#: application/views/debug/index.php:125 application/views/debug/index.php:137 +#: application/views/debug/index.php:125 application/views/debug/index.php:136 +#: application/views/debug/index.php:148 msgid "Failed" msgstr "" -#: application/views/debug/index.php:147 +#: application/views/debug/index.php:158 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:153 +#: application/views/debug/index.php:164 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:155 +#: application/views/debug/index.php:166 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:167 msgid "Go to your application/config Folder and compare config.sample.php with your config.php" msgstr "" -#: application/views/debug/index.php:157 +#: application/views/debug/index.php:168 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Ok" msgstr "" -#: application/views/debug/index.php:170 +#: application/views/debug/index.php:181 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:172 +#: application/views/debug/index.php:183 msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." msgstr "" -#: application/views/debug/index.php:185 +#: application/views/debug/index.php:196 msgid "Modules" msgstr "" -#: application/views/debug/index.php:191 application/views/debug/index.php:202 -#: application/views/debug/index.php:213 application/views/debug/index.php:224 -#: application/views/debug/index.php:235 +#: application/views/debug/index.php:202 application/views/debug/index.php:213 +#: application/views/debug/index.php:224 application/views/debug/index.php:235 +#: application/views/debug/index.php:246 msgid "Installed" msgstr "" -#: application/views/debug/index.php:193 application/views/debug/index.php:204 -#: application/views/debug/index.php:215 application/views/debug/index.php:226 -#: application/views/debug/index.php:237 +#: application/views/debug/index.php:204 application/views/debug/index.php:215 +#: application/views/debug/index.php:226 application/views/debug/index.php:237 +#: application/views/debug/index.php:248 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:244 application/views/qso/index.php:654 +#: application/views/debug/index.php:255 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:373 +#: application/views/debug/index.php:384 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:377 +#: application/views/debug/index.php:388 msgid "Branch" msgstr "" -#: application/views/debug/index.php:388 application/views/debug/index.php:399 -#: application/views/debug/index.php:409 +#: application/views/debug/index.php:399 application/views/debug/index.php:410 +#: application/views/debug/index.php:420 msgid "n/a" msgstr "" -#: application/views/debug/index.php:394 +#: application/views/debug/index.php:405 msgid "Commit" msgstr "" -#: application/views/debug/index.php:404 +#: application/views/debug/index.php:415 msgid "Tag" msgstr "" -#: application/views/debug/index.php:414 +#: application/views/debug/index.php:425 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:426 +#: application/views/debug/index.php:437 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:427 +#: application/views/debug/index.php:438 msgid "Update now" msgstr "" -#: application/views/debug/index.php:445 +#: application/views/debug/index.php:456 msgid "File download date" msgstr "" -#: application/views/debug/index.php:449 +#: application/views/debug/index.php:460 msgid "File" msgstr "" -#: application/views/debug/index.php:450 +#: application/views/debug/index.php:461 msgid "Last update" msgstr "" -#: application/views/debug/index.php:454 +#: application/views/debug/index.php:465 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:456 application/views/debug/index.php:462 -#: application/views/debug/index.php:467 application/views/debug/index.php:472 -#: application/views/debug/index.php:477 application/views/debug/index.php:482 -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:467 application/views/debug/index.php:473 +#: application/views/debug/index.php:478 application/views/debug/index.php:483 +#: application/views/debug/index.php:488 application/views/debug/index.php:493 +#: application/views/debug/index.php:498 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:460 +#: application/views/debug/index.php:471 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:470 +#: application/views/debug/index.php:481 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:475 +#: application/views/debug/index.php:486 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:480 +#: application/views/debug/index.php:491 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:485 +#: application/views/debug/index.php:496 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:494 +#: application/views/debug/index.php:505 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:509 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "The Database contains %d QSOs without a station-profile (location)" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:511 +#: application/views/debug/index.php:522 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:38 #: application/views/station_profile/edit.php:46 @@ -5094,84 +5096,84 @@ msgstr[1] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:547 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:544 +#: application/views/debug/index.php:555 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:545 application/views/debug/index.php:556 +#: application/views/debug/index.php:556 application/views/debug/index.php:567 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:590 +#: application/views/debug/index.php:601 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:591 +#: application/views/debug/index.php:602 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:603 msgid "Czech" msgstr "" -#: application/views/debug/index.php:593 +#: application/views/debug/index.php:604 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:594 +#: application/views/debug/index.php:605 msgid "English" msgstr "" -#: application/views/debug/index.php:595 +#: application/views/debug/index.php:606 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:607 msgid "French" msgstr "" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:608 msgid "German" msgstr "" -#: application/views/debug/index.php:598 +#: application/views/debug/index.php:609 msgid "Greek" msgstr "" -#: application/views/debug/index.php:599 +#: application/views/debug/index.php:610 msgid "Italian" msgstr "" -#: application/views/debug/index.php:600 +#: application/views/debug/index.php:611 msgid "Polish" msgstr "" -#: application/views/debug/index.php:601 +#: application/views/debug/index.php:612 msgid "Russian" msgstr "" -#: application/views/debug/index.php:602 +#: application/views/debug/index.php:613 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:614 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:604 +#: application/views/debug/index.php:615 msgid "Turkish" msgstr "" diff --git a/application/locale/fr_FR/LC_MESSAGES/messages.po b/application/locale/fr_FR/LC_MESSAGES/messages.po index 5fbe76153..44798345f 100644 --- a/application/locale/fr_FR/LC_MESSAGES/messages.po +++ b/application/locale/fr_FR/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 15:04+0000\n" +"POT-Creation-Date: 2024-07-10 16:25+0000\n" "PO-Revision-Date: 2024-07-09 13:26+0000\n" "Last-Translator: Aurélien Barrau \n" "Language-Team: French \n" @@ -501,7 +501,7 @@ msgstr "Tableau de bord" msgid "Number of days with QSOs each year" msgstr "Nombre de jours par an avec les QSO" -#: application/controllers/Debug.php:75 +#: application/controllers/Debug.php:79 msgid "Debug" msgstr "Debug" @@ -875,7 +875,7 @@ msgstr "Clublog" #: application/views/contesting/index.php:203 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:509 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:520 application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 @@ -1148,7 +1148,7 @@ msgstr "Distance" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:510 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:521 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 @@ -2356,7 +2356,7 @@ msgstr "Différence de données DOK entre votre journal de travail et DCL" #: application/views/contesting/index.php:42 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:506 application/views/eqsl/analysis.php:36 +#: application/views/debug/index.php:517 application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2397,7 +2397,7 @@ msgstr "" #: application/views/contesting/index.php:47 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:507 application/views/eqsl/analysis.php:37 +#: application/views/debug/index.php:518 application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2423,7 +2423,7 @@ msgstr "Heure" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/debug/index.php:519 application/views/debug/index.php:554 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -2474,8 +2474,8 @@ msgid "Maximum file upload size is " msgstr "La taille maximum d'un fichier à télécharger est " #: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:153 -#: application/views/debug/index.php:498 application/views/hrdlog/export.php:25 +#: application/views/adif/import.php:258 application/views/debug/index.php:164 +#: application/views/debug/index.php:509 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 @@ -4926,166 +4926,168 @@ msgid "This verifies that the folders used by Wavelog have read and write permis msgstr "" #: application/views/debug/index.php:101 application/views/debug/index.php:112 -#: application/views/debug/index.php:123 application/views/debug/index.php:135 +#: application/views/debug/index.php:123 application/views/debug/index.php:134 +#: application/views/debug/index.php:146 msgid "Success" msgstr "" #: application/views/debug/index.php:103 application/views/debug/index.php:114 -#: application/views/debug/index.php:125 application/views/debug/index.php:137 +#: application/views/debug/index.php:125 application/views/debug/index.php:136 +#: application/views/debug/index.php:148 msgid "Failed" msgstr "" -#: application/views/debug/index.php:147 +#: application/views/debug/index.php:158 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:153 +#: application/views/debug/index.php:164 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:155 +#: application/views/debug/index.php:166 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:167 msgid "Go to your application/config Folder and compare config.sample.php with your config.php" msgstr "" -#: application/views/debug/index.php:157 +#: application/views/debug/index.php:168 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Ok" msgstr "" -#: application/views/debug/index.php:170 +#: application/views/debug/index.php:181 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:172 +#: application/views/debug/index.php:183 msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." msgstr "" -#: application/views/debug/index.php:185 +#: application/views/debug/index.php:196 msgid "Modules" msgstr "" -#: application/views/debug/index.php:191 application/views/debug/index.php:202 -#: application/views/debug/index.php:213 application/views/debug/index.php:224 -#: application/views/debug/index.php:235 +#: application/views/debug/index.php:202 application/views/debug/index.php:213 +#: application/views/debug/index.php:224 application/views/debug/index.php:235 +#: application/views/debug/index.php:246 msgid "Installed" msgstr "" -#: application/views/debug/index.php:193 application/views/debug/index.php:204 -#: application/views/debug/index.php:215 application/views/debug/index.php:226 -#: application/views/debug/index.php:237 +#: application/views/debug/index.php:204 application/views/debug/index.php:215 +#: application/views/debug/index.php:226 application/views/debug/index.php:237 +#: application/views/debug/index.php:248 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:244 application/views/qso/index.php:654 +#: application/views/debug/index.php:255 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:373 +#: application/views/debug/index.php:384 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:377 +#: application/views/debug/index.php:388 msgid "Branch" msgstr "" -#: application/views/debug/index.php:388 application/views/debug/index.php:399 -#: application/views/debug/index.php:409 +#: application/views/debug/index.php:399 application/views/debug/index.php:410 +#: application/views/debug/index.php:420 msgid "n/a" msgstr "" -#: application/views/debug/index.php:394 +#: application/views/debug/index.php:405 msgid "Commit" msgstr "" -#: application/views/debug/index.php:404 +#: application/views/debug/index.php:415 msgid "Tag" msgstr "" -#: application/views/debug/index.php:414 +#: application/views/debug/index.php:425 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:426 +#: application/views/debug/index.php:437 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:427 +#: application/views/debug/index.php:438 msgid "Update now" msgstr "" -#: application/views/debug/index.php:445 +#: application/views/debug/index.php:456 msgid "File download date" msgstr "" -#: application/views/debug/index.php:449 +#: application/views/debug/index.php:460 msgid "File" msgstr "" -#: application/views/debug/index.php:450 +#: application/views/debug/index.php:461 msgid "Last update" msgstr "" -#: application/views/debug/index.php:454 +#: application/views/debug/index.php:465 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:456 application/views/debug/index.php:462 -#: application/views/debug/index.php:467 application/views/debug/index.php:472 -#: application/views/debug/index.php:477 application/views/debug/index.php:482 -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:467 application/views/debug/index.php:473 +#: application/views/debug/index.php:478 application/views/debug/index.php:483 +#: application/views/debug/index.php:488 application/views/debug/index.php:493 +#: application/views/debug/index.php:498 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "Mettre à jour" -#: application/views/debug/index.php:460 +#: application/views/debug/index.php:471 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:470 +#: application/views/debug/index.php:481 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:475 +#: application/views/debug/index.php:486 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:480 +#: application/views/debug/index.php:491 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:485 +#: application/views/debug/index.php:496 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:494 +#: application/views/debug/index.php:505 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:509 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "The Database contains %d QSOs without a station-profile (location)" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:511 +#: application/views/debug/index.php:522 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:38 #: application/views/station_profile/edit.php:46 @@ -5095,84 +5097,84 @@ msgstr[1] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:547 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:544 +#: application/views/debug/index.php:555 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:545 application/views/debug/index.php:556 +#: application/views/debug/index.php:556 application/views/debug/index.php:567 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:590 +#: application/views/debug/index.php:601 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:591 +#: application/views/debug/index.php:602 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:603 msgid "Czech" msgstr "" -#: application/views/debug/index.php:593 +#: application/views/debug/index.php:604 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:594 +#: application/views/debug/index.php:605 msgid "English" msgstr "" -#: application/views/debug/index.php:595 +#: application/views/debug/index.php:606 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:607 msgid "French" msgstr "" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:608 msgid "German" msgstr "" -#: application/views/debug/index.php:598 +#: application/views/debug/index.php:609 msgid "Greek" msgstr "" -#: application/views/debug/index.php:599 +#: application/views/debug/index.php:610 msgid "Italian" msgstr "" -#: application/views/debug/index.php:600 +#: application/views/debug/index.php:611 msgid "Polish" msgstr "" -#: application/views/debug/index.php:601 +#: application/views/debug/index.php:612 msgid "Russian" msgstr "" -#: application/views/debug/index.php:602 +#: application/views/debug/index.php:613 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:614 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:604 +#: application/views/debug/index.php:615 msgid "Turkish" msgstr "" diff --git a/application/locale/it_IT/LC_MESSAGES/messages.po b/application/locale/it_IT/LC_MESSAGES/messages.po index a5e1a7866..38c5e5b2c 100644 --- a/application/locale/it_IT/LC_MESSAGES/messages.po +++ b/application/locale/it_IT/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 15:04+0000\n" +"POT-Creation-Date: 2024-07-10 16:25+0000\n" "PO-Revision-Date: 2024-07-09 13:26+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Italian \n" @@ -500,7 +500,7 @@ msgstr "" msgid "Number of days with QSOs each year" msgstr "" -#: application/controllers/Debug.php:75 +#: application/controllers/Debug.php:79 msgid "Debug" msgstr "" @@ -874,7 +874,7 @@ msgstr "" #: application/views/contesting/index.php:203 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:509 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:520 application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 @@ -1147,7 +1147,7 @@ msgstr "" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:510 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:521 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 @@ -2355,7 +2355,7 @@ msgstr "" #: application/views/contesting/index.php:42 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:506 application/views/eqsl/analysis.php:36 +#: application/views/debug/index.php:517 application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2396,7 +2396,7 @@ msgstr "Data" #: application/views/contesting/index.php:47 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:507 application/views/eqsl/analysis.php:37 +#: application/views/debug/index.php:518 application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2422,7 +2422,7 @@ msgstr "Orario" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/debug/index.php:519 application/views/debug/index.php:554 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -2473,8 +2473,8 @@ msgid "Maximum file upload size is " msgstr "" #: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:153 -#: application/views/debug/index.php:498 application/views/hrdlog/export.php:25 +#: application/views/adif/import.php:258 application/views/debug/index.php:164 +#: application/views/debug/index.php:509 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 @@ -4925,166 +4925,168 @@ msgid "This verifies that the folders used by Wavelog have read and write permis msgstr "" #: application/views/debug/index.php:101 application/views/debug/index.php:112 -#: application/views/debug/index.php:123 application/views/debug/index.php:135 +#: application/views/debug/index.php:123 application/views/debug/index.php:134 +#: application/views/debug/index.php:146 msgid "Success" msgstr "" #: application/views/debug/index.php:103 application/views/debug/index.php:114 -#: application/views/debug/index.php:125 application/views/debug/index.php:137 +#: application/views/debug/index.php:125 application/views/debug/index.php:136 +#: application/views/debug/index.php:148 msgid "Failed" msgstr "" -#: application/views/debug/index.php:147 +#: application/views/debug/index.php:158 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:153 +#: application/views/debug/index.php:164 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:155 +#: application/views/debug/index.php:166 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:167 msgid "Go to your application/config Folder and compare config.sample.php with your config.php" msgstr "" -#: application/views/debug/index.php:157 +#: application/views/debug/index.php:168 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Ok" msgstr "" -#: application/views/debug/index.php:170 +#: application/views/debug/index.php:181 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:172 +#: application/views/debug/index.php:183 msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." msgstr "" -#: application/views/debug/index.php:185 +#: application/views/debug/index.php:196 msgid "Modules" msgstr "" -#: application/views/debug/index.php:191 application/views/debug/index.php:202 -#: application/views/debug/index.php:213 application/views/debug/index.php:224 -#: application/views/debug/index.php:235 +#: application/views/debug/index.php:202 application/views/debug/index.php:213 +#: application/views/debug/index.php:224 application/views/debug/index.php:235 +#: application/views/debug/index.php:246 msgid "Installed" msgstr "" -#: application/views/debug/index.php:193 application/views/debug/index.php:204 -#: application/views/debug/index.php:215 application/views/debug/index.php:226 -#: application/views/debug/index.php:237 +#: application/views/debug/index.php:204 application/views/debug/index.php:215 +#: application/views/debug/index.php:226 application/views/debug/index.php:237 +#: application/views/debug/index.php:248 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:244 application/views/qso/index.php:654 +#: application/views/debug/index.php:255 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:373 +#: application/views/debug/index.php:384 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:377 +#: application/views/debug/index.php:388 msgid "Branch" msgstr "" -#: application/views/debug/index.php:388 application/views/debug/index.php:399 -#: application/views/debug/index.php:409 +#: application/views/debug/index.php:399 application/views/debug/index.php:410 +#: application/views/debug/index.php:420 msgid "n/a" msgstr "" -#: application/views/debug/index.php:394 +#: application/views/debug/index.php:405 msgid "Commit" msgstr "" -#: application/views/debug/index.php:404 +#: application/views/debug/index.php:415 msgid "Tag" msgstr "" -#: application/views/debug/index.php:414 +#: application/views/debug/index.php:425 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:426 +#: application/views/debug/index.php:437 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:427 +#: application/views/debug/index.php:438 msgid "Update now" msgstr "" -#: application/views/debug/index.php:445 +#: application/views/debug/index.php:456 msgid "File download date" msgstr "" -#: application/views/debug/index.php:449 +#: application/views/debug/index.php:460 msgid "File" msgstr "" -#: application/views/debug/index.php:450 +#: application/views/debug/index.php:461 msgid "Last update" msgstr "" -#: application/views/debug/index.php:454 +#: application/views/debug/index.php:465 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:456 application/views/debug/index.php:462 -#: application/views/debug/index.php:467 application/views/debug/index.php:472 -#: application/views/debug/index.php:477 application/views/debug/index.php:482 -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:467 application/views/debug/index.php:473 +#: application/views/debug/index.php:478 application/views/debug/index.php:483 +#: application/views/debug/index.php:488 application/views/debug/index.php:493 +#: application/views/debug/index.php:498 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:460 +#: application/views/debug/index.php:471 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:470 +#: application/views/debug/index.php:481 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:475 +#: application/views/debug/index.php:486 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:480 +#: application/views/debug/index.php:491 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:485 +#: application/views/debug/index.php:496 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:494 +#: application/views/debug/index.php:505 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:509 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "The Database contains %d QSOs without a station-profile (location)" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:511 +#: application/views/debug/index.php:522 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:38 #: application/views/station_profile/edit.php:46 @@ -5094,84 +5096,84 @@ msgstr[1] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:547 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:544 +#: application/views/debug/index.php:555 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:545 application/views/debug/index.php:556 +#: application/views/debug/index.php:556 application/views/debug/index.php:567 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:590 +#: application/views/debug/index.php:601 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:591 +#: application/views/debug/index.php:602 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:603 msgid "Czech" msgstr "" -#: application/views/debug/index.php:593 +#: application/views/debug/index.php:604 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:594 +#: application/views/debug/index.php:605 msgid "English" msgstr "" -#: application/views/debug/index.php:595 +#: application/views/debug/index.php:606 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:607 msgid "French" msgstr "" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:608 msgid "German" msgstr "" -#: application/views/debug/index.php:598 +#: application/views/debug/index.php:609 msgid "Greek" msgstr "" -#: application/views/debug/index.php:599 +#: application/views/debug/index.php:610 msgid "Italian" msgstr "" -#: application/views/debug/index.php:600 +#: application/views/debug/index.php:611 msgid "Polish" msgstr "" -#: application/views/debug/index.php:601 +#: application/views/debug/index.php:612 msgid "Russian" msgstr "" -#: application/views/debug/index.php:602 +#: application/views/debug/index.php:613 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:614 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:604 +#: application/views/debug/index.php:615 msgid "Turkish" msgstr "" diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.po b/application/locale/nl_NL/LC_MESSAGES/messages.po index d8c331f04..3d124e00c 100644 --- a/application/locale/nl_NL/LC_MESSAGES/messages.po +++ b/application/locale/nl_NL/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 15:04+0000\n" +"POT-Creation-Date: 2024-07-10 16:25+0000\n" "PO-Revision-Date: 2024-07-09 13:26+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Dutch \n" @@ -500,7 +500,7 @@ msgstr "" msgid "Number of days with QSOs each year" msgstr "" -#: application/controllers/Debug.php:75 +#: application/controllers/Debug.php:79 msgid "Debug" msgstr "" @@ -874,7 +874,7 @@ msgstr "" #: application/views/contesting/index.php:203 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:509 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:520 application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 @@ -1147,7 +1147,7 @@ msgstr "" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:510 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:521 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 @@ -2355,7 +2355,7 @@ msgstr "" #: application/views/contesting/index.php:42 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:506 application/views/eqsl/analysis.php:36 +#: application/views/debug/index.php:517 application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2396,7 +2396,7 @@ msgstr "Datum" #: application/views/contesting/index.php:47 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:507 application/views/eqsl/analysis.php:37 +#: application/views/debug/index.php:518 application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2422,7 +2422,7 @@ msgstr "Tijd" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/debug/index.php:519 application/views/debug/index.php:554 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -2473,8 +2473,8 @@ msgid "Maximum file upload size is " msgstr "" #: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:153 -#: application/views/debug/index.php:498 application/views/hrdlog/export.php:25 +#: application/views/adif/import.php:258 application/views/debug/index.php:164 +#: application/views/debug/index.php:509 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 @@ -4925,166 +4925,168 @@ msgid "This verifies that the folders used by Wavelog have read and write permis msgstr "" #: application/views/debug/index.php:101 application/views/debug/index.php:112 -#: application/views/debug/index.php:123 application/views/debug/index.php:135 +#: application/views/debug/index.php:123 application/views/debug/index.php:134 +#: application/views/debug/index.php:146 msgid "Success" msgstr "" #: application/views/debug/index.php:103 application/views/debug/index.php:114 -#: application/views/debug/index.php:125 application/views/debug/index.php:137 +#: application/views/debug/index.php:125 application/views/debug/index.php:136 +#: application/views/debug/index.php:148 msgid "Failed" msgstr "" -#: application/views/debug/index.php:147 +#: application/views/debug/index.php:158 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:153 +#: application/views/debug/index.php:164 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:155 +#: application/views/debug/index.php:166 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:167 msgid "Go to your application/config Folder and compare config.sample.php with your config.php" msgstr "" -#: application/views/debug/index.php:157 +#: application/views/debug/index.php:168 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Ok" msgstr "" -#: application/views/debug/index.php:170 +#: application/views/debug/index.php:181 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:172 +#: application/views/debug/index.php:183 msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." msgstr "" -#: application/views/debug/index.php:185 +#: application/views/debug/index.php:196 msgid "Modules" msgstr "" -#: application/views/debug/index.php:191 application/views/debug/index.php:202 -#: application/views/debug/index.php:213 application/views/debug/index.php:224 -#: application/views/debug/index.php:235 +#: application/views/debug/index.php:202 application/views/debug/index.php:213 +#: application/views/debug/index.php:224 application/views/debug/index.php:235 +#: application/views/debug/index.php:246 msgid "Installed" msgstr "" -#: application/views/debug/index.php:193 application/views/debug/index.php:204 -#: application/views/debug/index.php:215 application/views/debug/index.php:226 -#: application/views/debug/index.php:237 +#: application/views/debug/index.php:204 application/views/debug/index.php:215 +#: application/views/debug/index.php:226 application/views/debug/index.php:237 +#: application/views/debug/index.php:248 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:244 application/views/qso/index.php:654 +#: application/views/debug/index.php:255 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:373 +#: application/views/debug/index.php:384 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:377 +#: application/views/debug/index.php:388 msgid "Branch" msgstr "" -#: application/views/debug/index.php:388 application/views/debug/index.php:399 -#: application/views/debug/index.php:409 +#: application/views/debug/index.php:399 application/views/debug/index.php:410 +#: application/views/debug/index.php:420 msgid "n/a" msgstr "" -#: application/views/debug/index.php:394 +#: application/views/debug/index.php:405 msgid "Commit" msgstr "" -#: application/views/debug/index.php:404 +#: application/views/debug/index.php:415 msgid "Tag" msgstr "" -#: application/views/debug/index.php:414 +#: application/views/debug/index.php:425 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:426 +#: application/views/debug/index.php:437 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:427 +#: application/views/debug/index.php:438 msgid "Update now" msgstr "" -#: application/views/debug/index.php:445 +#: application/views/debug/index.php:456 msgid "File download date" msgstr "" -#: application/views/debug/index.php:449 +#: application/views/debug/index.php:460 msgid "File" msgstr "" -#: application/views/debug/index.php:450 +#: application/views/debug/index.php:461 msgid "Last update" msgstr "" -#: application/views/debug/index.php:454 +#: application/views/debug/index.php:465 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:456 application/views/debug/index.php:462 -#: application/views/debug/index.php:467 application/views/debug/index.php:472 -#: application/views/debug/index.php:477 application/views/debug/index.php:482 -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:467 application/views/debug/index.php:473 +#: application/views/debug/index.php:478 application/views/debug/index.php:483 +#: application/views/debug/index.php:488 application/views/debug/index.php:493 +#: application/views/debug/index.php:498 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:460 +#: application/views/debug/index.php:471 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:470 +#: application/views/debug/index.php:481 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:475 +#: application/views/debug/index.php:486 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:480 +#: application/views/debug/index.php:491 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:485 +#: application/views/debug/index.php:496 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:494 +#: application/views/debug/index.php:505 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:509 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "The Database contains %d QSOs without a station-profile (location)" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:511 +#: application/views/debug/index.php:522 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:38 #: application/views/station_profile/edit.php:46 @@ -5094,84 +5096,84 @@ msgstr[1] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:547 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:544 +#: application/views/debug/index.php:555 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:545 application/views/debug/index.php:556 +#: application/views/debug/index.php:556 application/views/debug/index.php:567 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:590 +#: application/views/debug/index.php:601 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:591 +#: application/views/debug/index.php:602 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:603 msgid "Czech" msgstr "" -#: application/views/debug/index.php:593 +#: application/views/debug/index.php:604 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:594 +#: application/views/debug/index.php:605 msgid "English" msgstr "" -#: application/views/debug/index.php:595 +#: application/views/debug/index.php:606 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:607 msgid "French" msgstr "" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:608 msgid "German" msgstr "" -#: application/views/debug/index.php:598 +#: application/views/debug/index.php:609 msgid "Greek" msgstr "" -#: application/views/debug/index.php:599 +#: application/views/debug/index.php:610 msgid "Italian" msgstr "" -#: application/views/debug/index.php:600 +#: application/views/debug/index.php:611 msgid "Polish" msgstr "" -#: application/views/debug/index.php:601 +#: application/views/debug/index.php:612 msgid "Russian" msgstr "" -#: application/views/debug/index.php:602 +#: application/views/debug/index.php:613 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:614 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:604 +#: application/views/debug/index.php:615 msgid "Turkish" msgstr "" diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.po b/application/locale/pl_PL/LC_MESSAGES/messages.po index 889cc0b4a..49c8e0596 100644 --- a/application/locale/pl_PL/LC_MESSAGES/messages.po +++ b/application/locale/pl_PL/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 15:04+0000\n" +"POT-Creation-Date: 2024-07-10 16:25+0000\n" "PO-Revision-Date: 2024-07-09 13:26+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Polish \n" @@ -500,7 +500,7 @@ msgstr "" msgid "Number of days with QSOs each year" msgstr "" -#: application/controllers/Debug.php:75 +#: application/controllers/Debug.php:79 msgid "Debug" msgstr "" @@ -875,7 +875,7 @@ msgstr "" #: application/views/contesting/index.php:203 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:509 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:520 application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 @@ -1148,7 +1148,7 @@ msgstr "" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:510 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:521 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 @@ -2356,7 +2356,7 @@ msgstr "" #: application/views/contesting/index.php:42 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:506 application/views/eqsl/analysis.php:36 +#: application/views/debug/index.php:517 application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2397,7 +2397,7 @@ msgstr "Data" #: application/views/contesting/index.php:47 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:507 application/views/eqsl/analysis.php:37 +#: application/views/debug/index.php:518 application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2423,7 +2423,7 @@ msgstr "Godzina" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/debug/index.php:519 application/views/debug/index.php:554 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -2474,8 +2474,8 @@ msgid "Maximum file upload size is " msgstr "" #: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:153 -#: application/views/debug/index.php:498 application/views/hrdlog/export.php:25 +#: application/views/adif/import.php:258 application/views/debug/index.php:164 +#: application/views/debug/index.php:509 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 @@ -4927,159 +4927,161 @@ msgid "This verifies that the folders used by Wavelog have read and write permis msgstr "" #: application/views/debug/index.php:101 application/views/debug/index.php:112 -#: application/views/debug/index.php:123 application/views/debug/index.php:135 +#: application/views/debug/index.php:123 application/views/debug/index.php:134 +#: application/views/debug/index.php:146 msgid "Success" msgstr "" #: application/views/debug/index.php:103 application/views/debug/index.php:114 -#: application/views/debug/index.php:125 application/views/debug/index.php:137 +#: application/views/debug/index.php:125 application/views/debug/index.php:136 +#: application/views/debug/index.php:148 msgid "Failed" msgstr "" -#: application/views/debug/index.php:147 +#: application/views/debug/index.php:158 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:153 +#: application/views/debug/index.php:164 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:155 +#: application/views/debug/index.php:166 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:167 msgid "Go to your application/config Folder and compare config.sample.php with your config.php" msgstr "" -#: application/views/debug/index.php:157 +#: application/views/debug/index.php:168 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Ok" msgstr "" -#: application/views/debug/index.php:170 +#: application/views/debug/index.php:181 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:172 +#: application/views/debug/index.php:183 msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." msgstr "" -#: application/views/debug/index.php:185 +#: application/views/debug/index.php:196 msgid "Modules" msgstr "" -#: application/views/debug/index.php:191 application/views/debug/index.php:202 -#: application/views/debug/index.php:213 application/views/debug/index.php:224 -#: application/views/debug/index.php:235 +#: application/views/debug/index.php:202 application/views/debug/index.php:213 +#: application/views/debug/index.php:224 application/views/debug/index.php:235 +#: application/views/debug/index.php:246 msgid "Installed" msgstr "" -#: application/views/debug/index.php:193 application/views/debug/index.php:204 -#: application/views/debug/index.php:215 application/views/debug/index.php:226 -#: application/views/debug/index.php:237 +#: application/views/debug/index.php:204 application/views/debug/index.php:215 +#: application/views/debug/index.php:226 application/views/debug/index.php:237 +#: application/views/debug/index.php:248 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:244 application/views/qso/index.php:654 +#: application/views/debug/index.php:255 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:373 +#: application/views/debug/index.php:384 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:377 +#: application/views/debug/index.php:388 msgid "Branch" msgstr "" -#: application/views/debug/index.php:388 application/views/debug/index.php:399 -#: application/views/debug/index.php:409 +#: application/views/debug/index.php:399 application/views/debug/index.php:410 +#: application/views/debug/index.php:420 msgid "n/a" msgstr "" -#: application/views/debug/index.php:394 +#: application/views/debug/index.php:405 msgid "Commit" msgstr "" -#: application/views/debug/index.php:404 +#: application/views/debug/index.php:415 msgid "Tag" msgstr "" -#: application/views/debug/index.php:414 +#: application/views/debug/index.php:425 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:426 +#: application/views/debug/index.php:437 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:427 +#: application/views/debug/index.php:438 msgid "Update now" msgstr "" -#: application/views/debug/index.php:445 +#: application/views/debug/index.php:456 msgid "File download date" msgstr "" -#: application/views/debug/index.php:449 +#: application/views/debug/index.php:460 msgid "File" msgstr "" -#: application/views/debug/index.php:450 +#: application/views/debug/index.php:461 msgid "Last update" msgstr "" -#: application/views/debug/index.php:454 +#: application/views/debug/index.php:465 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:456 application/views/debug/index.php:462 -#: application/views/debug/index.php:467 application/views/debug/index.php:472 -#: application/views/debug/index.php:477 application/views/debug/index.php:482 -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:467 application/views/debug/index.php:473 +#: application/views/debug/index.php:478 application/views/debug/index.php:483 +#: application/views/debug/index.php:488 application/views/debug/index.php:493 +#: application/views/debug/index.php:498 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:460 +#: application/views/debug/index.php:471 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:470 +#: application/views/debug/index.php:481 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:475 +#: application/views/debug/index.php:486 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:480 +#: application/views/debug/index.php:491 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:485 +#: application/views/debug/index.php:496 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:494 +#: application/views/debug/index.php:505 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:509 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "The Database contains %d QSOs without a station-profile (location)" @@ -5087,7 +5089,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: application/views/debug/index.php:511 +#: application/views/debug/index.php:522 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:38 #: application/views/station_profile/edit.php:46 @@ -5097,84 +5099,84 @@ msgstr[2] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:547 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:544 +#: application/views/debug/index.php:555 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:545 application/views/debug/index.php:556 +#: application/views/debug/index.php:556 application/views/debug/index.php:567 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:590 +#: application/views/debug/index.php:601 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:591 +#: application/views/debug/index.php:602 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:603 msgid "Czech" msgstr "" -#: application/views/debug/index.php:593 +#: application/views/debug/index.php:604 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:594 +#: application/views/debug/index.php:605 msgid "English" msgstr "" -#: application/views/debug/index.php:595 +#: application/views/debug/index.php:606 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:607 msgid "French" msgstr "" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:608 msgid "German" msgstr "" -#: application/views/debug/index.php:598 +#: application/views/debug/index.php:609 msgid "Greek" msgstr "" -#: application/views/debug/index.php:599 +#: application/views/debug/index.php:610 msgid "Italian" msgstr "" -#: application/views/debug/index.php:600 +#: application/views/debug/index.php:611 msgid "Polish" msgstr "" -#: application/views/debug/index.php:601 +#: application/views/debug/index.php:612 msgid "Russian" msgstr "" -#: application/views/debug/index.php:602 +#: application/views/debug/index.php:613 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:614 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:604 +#: application/views/debug/index.php:615 msgid "Turkish" msgstr "" diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.po b/application/locale/ru_RU/LC_MESSAGES/messages.po index c30923a97..d634b5610 100644 --- a/application/locale/ru_RU/LC_MESSAGES/messages.po +++ b/application/locale/ru_RU/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 15:04+0000\n" +"POT-Creation-Date: 2024-07-10 16:25+0000\n" "PO-Revision-Date: 2024-07-09 20:46+0000\n" "Last-Translator: Michael Skolsky \n" "Language-Team: Russian \n" @@ -501,7 +501,7 @@ msgstr "Панель управления" msgid "Number of days with QSOs each year" msgstr "Количество дней с QSO в каждом году" -#: application/controllers/Debug.php:75 +#: application/controllers/Debug.php:79 msgid "Debug" msgstr "Отладка" @@ -876,7 +876,7 @@ msgstr "Clublog" #: application/views/contesting/index.php:203 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:509 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:520 application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 @@ -1149,7 +1149,7 @@ msgstr "Дистанция" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:510 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:521 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 @@ -2357,7 +2357,7 @@ msgstr "Данные DOK в вашем логе отличаются от DCL" #: application/views/contesting/index.php:42 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:506 application/views/eqsl/analysis.php:36 +#: application/views/debug/index.php:517 application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2398,7 +2398,7 @@ msgstr "Дата" #: application/views/contesting/index.php:47 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:507 application/views/eqsl/analysis.php:37 +#: application/views/debug/index.php:518 application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2424,7 +2424,7 @@ msgstr "Время" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/debug/index.php:519 application/views/debug/index.php:554 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -2475,8 +2475,8 @@ msgid "Maximum file upload size is " msgstr "Максимальный размер загружаемого файла " #: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:153 -#: application/views/debug/index.php:498 application/views/hrdlog/export.php:25 +#: application/views/adif/import.php:258 application/views/debug/index.php:164 +#: application/views/debug/index.php:509 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 @@ -4928,159 +4928,161 @@ msgid "This verifies that the folders used by Wavelog have read and write permis msgstr "Это проверяет, что папки, используемые Wavelog, имеют права на чтение и запись в PHP." #: application/views/debug/index.php:101 application/views/debug/index.php:112 -#: application/views/debug/index.php:123 application/views/debug/index.php:135 +#: application/views/debug/index.php:123 application/views/debug/index.php:134 +#: application/views/debug/index.php:146 msgid "Success" msgstr "Успешно" #: application/views/debug/index.php:103 application/views/debug/index.php:114 -#: application/views/debug/index.php:125 application/views/debug/index.php:137 +#: application/views/debug/index.php:125 application/views/debug/index.php:136 +#: application/views/debug/index.php:148 msgid "Failed" msgstr "Ошибка" -#: application/views/debug/index.php:147 +#: application/views/debug/index.php:158 msgid "Config Maintenance" msgstr "Настройка режима обслуживания" -#: application/views/debug/index.php:153 +#: application/views/debug/index.php:164 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "Ваш режим аутентификации устарел и, возможно, небезопасен" -#: application/views/debug/index.php:155 +#: application/views/debug/index.php:166 #, php-format msgid "Please edit your %s File:" msgstr "Пожалуйста, отредактируйте ваш %s файл:" -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:167 msgid "Go to your application/config Folder and compare config.sample.php with your config.php" msgstr "Перейдите в папку application/config и сравните config.sample.php с вашим config.php" -#: application/views/debug/index.php:157 +#: application/views/debug/index.php:168 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "Замените %s на значение %s (настоятельно рекомендуется)" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Authentication Mode is set correctly" msgstr "Режим аутентификации установлен правильно" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Ok" msgstr "ОК" -#: application/views/debug/index.php:170 +#: application/views/debug/index.php:181 msgid "Migrate Userdata" msgstr "Перенести пользовательский данные" -#: application/views/debug/index.php:172 +#: application/views/debug/index.php:183 msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." msgstr "Здесь вы можете перенести существующие QSL-карточки и eQSL-карточки в новую папку userdata." -#: application/views/debug/index.php:185 +#: application/views/debug/index.php:196 msgid "Modules" msgstr "Модули" -#: application/views/debug/index.php:191 application/views/debug/index.php:202 -#: application/views/debug/index.php:213 application/views/debug/index.php:224 -#: application/views/debug/index.php:235 +#: application/views/debug/index.php:202 application/views/debug/index.php:213 +#: application/views/debug/index.php:224 application/views/debug/index.php:235 +#: application/views/debug/index.php:246 msgid "Installed" msgstr "Установленные" -#: application/views/debug/index.php:193 application/views/debug/index.php:204 -#: application/views/debug/index.php:215 application/views/debug/index.php:226 -#: application/views/debug/index.php:237 +#: application/views/debug/index.php:204 application/views/debug/index.php:215 +#: application/views/debug/index.php:226 application/views/debug/index.php:237 +#: application/views/debug/index.php:248 msgid "Not Installed" msgstr "Не установленные" -#: application/views/debug/index.php:244 application/views/qso/index.php:654 +#: application/views/debug/index.php:255 application/views/qso/index.php:654 msgid "Settings" msgstr "Настройки" -#: application/views/debug/index.php:373 +#: application/views/debug/index.php:384 msgid "Git Information" msgstr "Информация Git" -#: application/views/debug/index.php:377 +#: application/views/debug/index.php:388 msgid "Branch" msgstr "Ветка" -#: application/views/debug/index.php:388 application/views/debug/index.php:399 -#: application/views/debug/index.php:409 +#: application/views/debug/index.php:399 application/views/debug/index.php:410 +#: application/views/debug/index.php:420 msgid "n/a" msgstr "недоступно" -#: application/views/debug/index.php:394 +#: application/views/debug/index.php:405 msgid "Commit" msgstr "Коммит" -#: application/views/debug/index.php:404 +#: application/views/debug/index.php:415 msgid "Tag" msgstr "Тэг" -#: application/views/debug/index.php:414 +#: application/views/debug/index.php:425 msgid "Last Fetch" msgstr "Последнее обновление" -#: application/views/debug/index.php:426 +#: application/views/debug/index.php:437 msgid "Check for new version" msgstr "Проверить наличие новой версии" -#: application/views/debug/index.php:427 +#: application/views/debug/index.php:438 msgid "Update now" msgstr "Обновить сейчас" -#: application/views/debug/index.php:445 +#: application/views/debug/index.php:456 msgid "File download date" msgstr "Дата скачивания файла" -#: application/views/debug/index.php:449 +#: application/views/debug/index.php:460 msgid "File" msgstr "Файл" -#: application/views/debug/index.php:450 +#: application/views/debug/index.php:461 msgid "Last update" msgstr "Последнее обновление" -#: application/views/debug/index.php:454 +#: application/views/debug/index.php:465 msgid "DXCC update from Club Log" msgstr "Обновление DXCC из Clublog" -#: application/views/debug/index.php:456 application/views/debug/index.php:462 -#: application/views/debug/index.php:467 application/views/debug/index.php:472 -#: application/views/debug/index.php:477 application/views/debug/index.php:482 -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:467 application/views/debug/index.php:473 +#: application/views/debug/index.php:478 application/views/debug/index.php:483 +#: application/views/debug/index.php:488 application/views/debug/index.php:493 +#: application/views/debug/index.php:498 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "Обновить" -#: application/views/debug/index.php:460 +#: application/views/debug/index.php:471 msgid "DOK file download" msgstr "Скачать файл DOK" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "LoTW users download" msgstr "Скачать список пользователей LoTW" -#: application/views/debug/index.php:470 +#: application/views/debug/index.php:481 msgid "POTA file download" msgstr "Скачать файл POTA" -#: application/views/debug/index.php:475 +#: application/views/debug/index.php:486 msgid "SCP file download" msgstr "Скачать файл SCP" -#: application/views/debug/index.php:480 +#: application/views/debug/index.php:491 msgid "SOTA file download" msgstr "Скачать файл SOTA" -#: application/views/debug/index.php:485 +#: application/views/debug/index.php:496 msgid "WWFF file download" msgstr "Скачать файл WWFF" -#: application/views/debug/index.php:494 +#: application/views/debug/index.php:505 msgid "QSO-DB Maintenance" msgstr "Обслуживание БД QSO" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:509 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "The Database contains %d QSOs without a station-profile (location)" @@ -5088,7 +5090,7 @@ msgstr[0] "База данных содержит %d QSO без привязан msgstr[1] "База данных содержит %d QSO без привязанного профиля QTH" msgstr[2] "База данных содержит %d QSO без привязанного профиля QTH" -#: application/views/debug/index.php:511 +#: application/views/debug/index.php:522 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:38 #: application/views/station_profile/edit.php:46 @@ -5098,84 +5100,84 @@ msgstr[2] "База данных содержит %d QSO без привязан msgid "Station Callsign" msgstr "Позывной" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:547 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "Пожалуйста, отметьте QSO и привяжите их к существующему профилю QTH:" -#: application/views/debug/index.php:544 +#: application/views/debug/index.php:555 msgctxt "Stationlocation" msgid "Target Location" msgstr "Целевой профиль QTH" -#: application/views/debug/index.php:545 application/views/debug/index.php:556 +#: application/views/debug/index.php:556 application/views/debug/index.php:567 msgid "Reassign" msgstr "Переназначить" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "Каждое QSO в вашей базе данных привязано к соответствующему профилю QTH" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Everything ok" msgstr "Всё ОК" -#: application/views/debug/index.php:590 +#: application/views/debug/index.php:601 msgid "Bulgarian" msgstr "Болгарский" -#: application/views/debug/index.php:591 +#: application/views/debug/index.php:602 msgid "Chinese (Simplified)" msgstr "Китайский (упрощённый)" -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:603 msgid "Czech" msgstr "Чешский" -#: application/views/debug/index.php:593 +#: application/views/debug/index.php:604 msgid "Dutch" msgstr "Голландский" -#: application/views/debug/index.php:594 +#: application/views/debug/index.php:605 msgid "English" msgstr "Английский" -#: application/views/debug/index.php:595 +#: application/views/debug/index.php:606 msgid "Finnish" msgstr "Финский" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:607 msgid "French" msgstr "Французский" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:608 msgid "German" msgstr "Немецкий" -#: application/views/debug/index.php:598 +#: application/views/debug/index.php:609 msgid "Greek" msgstr "Греческий" -#: application/views/debug/index.php:599 +#: application/views/debug/index.php:610 msgid "Italian" msgstr "Итальянский" -#: application/views/debug/index.php:600 +#: application/views/debug/index.php:611 msgid "Polish" msgstr "Польский" -#: application/views/debug/index.php:601 +#: application/views/debug/index.php:612 msgid "Russian" msgstr "Русский" -#: application/views/debug/index.php:602 +#: application/views/debug/index.php:613 msgid "Spanish" msgstr "Испанский" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:614 msgid "Swedish" msgstr "Шведский" -#: application/views/debug/index.php:604 +#: application/views/debug/index.php:615 msgid "Turkish" msgstr "Турецкий" diff --git a/application/locale/sv_SE/LC_MESSAGES/messages.po b/application/locale/sv_SE/LC_MESSAGES/messages.po index 72451e8f5..1c59a45a2 100644 --- a/application/locale/sv_SE/LC_MESSAGES/messages.po +++ b/application/locale/sv_SE/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 15:04+0000\n" +"POT-Creation-Date: 2024-07-10 16:25+0000\n" "PO-Revision-Date: 2024-07-09 13:26+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Swedish \n" @@ -500,7 +500,7 @@ msgstr "" msgid "Number of days with QSOs each year" msgstr "" -#: application/controllers/Debug.php:75 +#: application/controllers/Debug.php:79 msgid "Debug" msgstr "" @@ -874,7 +874,7 @@ msgstr "" #: application/views/contesting/index.php:203 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:509 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:520 application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 @@ -1147,7 +1147,7 @@ msgstr "" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:510 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:521 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 @@ -2355,7 +2355,7 @@ msgstr "" #: application/views/contesting/index.php:42 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:506 application/views/eqsl/analysis.php:36 +#: application/views/debug/index.php:517 application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2396,7 +2396,7 @@ msgstr "Datum" #: application/views/contesting/index.php:47 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:507 application/views/eqsl/analysis.php:37 +#: application/views/debug/index.php:518 application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2422,7 +2422,7 @@ msgstr "Tid" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/debug/index.php:519 application/views/debug/index.php:554 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -2473,8 +2473,8 @@ msgid "Maximum file upload size is " msgstr "" #: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:153 -#: application/views/debug/index.php:498 application/views/hrdlog/export.php:25 +#: application/views/adif/import.php:258 application/views/debug/index.php:164 +#: application/views/debug/index.php:509 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 @@ -4925,166 +4925,168 @@ msgid "This verifies that the folders used by Wavelog have read and write permis msgstr "" #: application/views/debug/index.php:101 application/views/debug/index.php:112 -#: application/views/debug/index.php:123 application/views/debug/index.php:135 +#: application/views/debug/index.php:123 application/views/debug/index.php:134 +#: application/views/debug/index.php:146 msgid "Success" msgstr "" #: application/views/debug/index.php:103 application/views/debug/index.php:114 -#: application/views/debug/index.php:125 application/views/debug/index.php:137 +#: application/views/debug/index.php:125 application/views/debug/index.php:136 +#: application/views/debug/index.php:148 msgid "Failed" msgstr "" -#: application/views/debug/index.php:147 +#: application/views/debug/index.php:158 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:153 +#: application/views/debug/index.php:164 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:155 +#: application/views/debug/index.php:166 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:167 msgid "Go to your application/config Folder and compare config.sample.php with your config.php" msgstr "" -#: application/views/debug/index.php:157 +#: application/views/debug/index.php:168 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Ok" msgstr "" -#: application/views/debug/index.php:170 +#: application/views/debug/index.php:181 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:172 +#: application/views/debug/index.php:183 msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." msgstr "" -#: application/views/debug/index.php:185 +#: application/views/debug/index.php:196 msgid "Modules" msgstr "" -#: application/views/debug/index.php:191 application/views/debug/index.php:202 -#: application/views/debug/index.php:213 application/views/debug/index.php:224 -#: application/views/debug/index.php:235 +#: application/views/debug/index.php:202 application/views/debug/index.php:213 +#: application/views/debug/index.php:224 application/views/debug/index.php:235 +#: application/views/debug/index.php:246 msgid "Installed" msgstr "" -#: application/views/debug/index.php:193 application/views/debug/index.php:204 -#: application/views/debug/index.php:215 application/views/debug/index.php:226 -#: application/views/debug/index.php:237 +#: application/views/debug/index.php:204 application/views/debug/index.php:215 +#: application/views/debug/index.php:226 application/views/debug/index.php:237 +#: application/views/debug/index.php:248 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:244 application/views/qso/index.php:654 +#: application/views/debug/index.php:255 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:373 +#: application/views/debug/index.php:384 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:377 +#: application/views/debug/index.php:388 msgid "Branch" msgstr "" -#: application/views/debug/index.php:388 application/views/debug/index.php:399 -#: application/views/debug/index.php:409 +#: application/views/debug/index.php:399 application/views/debug/index.php:410 +#: application/views/debug/index.php:420 msgid "n/a" msgstr "" -#: application/views/debug/index.php:394 +#: application/views/debug/index.php:405 msgid "Commit" msgstr "" -#: application/views/debug/index.php:404 +#: application/views/debug/index.php:415 msgid "Tag" msgstr "" -#: application/views/debug/index.php:414 +#: application/views/debug/index.php:425 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:426 +#: application/views/debug/index.php:437 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:427 +#: application/views/debug/index.php:438 msgid "Update now" msgstr "" -#: application/views/debug/index.php:445 +#: application/views/debug/index.php:456 msgid "File download date" msgstr "" -#: application/views/debug/index.php:449 +#: application/views/debug/index.php:460 msgid "File" msgstr "" -#: application/views/debug/index.php:450 +#: application/views/debug/index.php:461 msgid "Last update" msgstr "" -#: application/views/debug/index.php:454 +#: application/views/debug/index.php:465 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:456 application/views/debug/index.php:462 -#: application/views/debug/index.php:467 application/views/debug/index.php:472 -#: application/views/debug/index.php:477 application/views/debug/index.php:482 -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:467 application/views/debug/index.php:473 +#: application/views/debug/index.php:478 application/views/debug/index.php:483 +#: application/views/debug/index.php:488 application/views/debug/index.php:493 +#: application/views/debug/index.php:498 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:460 +#: application/views/debug/index.php:471 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:470 +#: application/views/debug/index.php:481 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:475 +#: application/views/debug/index.php:486 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:480 +#: application/views/debug/index.php:491 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:485 +#: application/views/debug/index.php:496 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:494 +#: application/views/debug/index.php:505 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:509 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "The Database contains %d QSOs without a station-profile (location)" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:511 +#: application/views/debug/index.php:522 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:38 #: application/views/station_profile/edit.php:46 @@ -5094,84 +5096,84 @@ msgstr[1] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:547 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:544 +#: application/views/debug/index.php:555 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:545 application/views/debug/index.php:556 +#: application/views/debug/index.php:556 application/views/debug/index.php:567 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:590 +#: application/views/debug/index.php:601 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:591 +#: application/views/debug/index.php:602 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:603 msgid "Czech" msgstr "" -#: application/views/debug/index.php:593 +#: application/views/debug/index.php:604 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:594 +#: application/views/debug/index.php:605 msgid "English" msgstr "" -#: application/views/debug/index.php:595 +#: application/views/debug/index.php:606 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:607 msgid "French" msgstr "" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:608 msgid "German" msgstr "" -#: application/views/debug/index.php:598 +#: application/views/debug/index.php:609 msgid "Greek" msgstr "" -#: application/views/debug/index.php:599 +#: application/views/debug/index.php:610 msgid "Italian" msgstr "" -#: application/views/debug/index.php:600 +#: application/views/debug/index.php:611 msgid "Polish" msgstr "" -#: application/views/debug/index.php:601 +#: application/views/debug/index.php:612 msgid "Russian" msgstr "" -#: application/views/debug/index.php:602 +#: application/views/debug/index.php:613 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:614 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:604 +#: application/views/debug/index.php:615 msgid "Turkish" msgstr "" diff --git a/application/locale/tr_TR/LC_MESSAGES/messages.po b/application/locale/tr_TR/LC_MESSAGES/messages.po index 0d45acb44..6d2d3f664 100644 --- a/application/locale/tr_TR/LC_MESSAGES/messages.po +++ b/application/locale/tr_TR/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 15:04+0000\n" +"POT-Creation-Date: 2024-07-10 16:25+0000\n" "PO-Revision-Date: 2024-07-09 13:26+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Turkish \n" @@ -500,7 +500,7 @@ msgstr "" msgid "Number of days with QSOs each year" msgstr "" -#: application/controllers/Debug.php:75 +#: application/controllers/Debug.php:79 msgid "Debug" msgstr "" @@ -874,7 +874,7 @@ msgstr "" #: application/views/contesting/index.php:203 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:509 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:520 application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 @@ -1147,7 +1147,7 @@ msgstr "" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:510 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:521 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 @@ -2355,7 +2355,7 @@ msgstr "" #: application/views/contesting/index.php:42 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:506 application/views/eqsl/analysis.php:36 +#: application/views/debug/index.php:517 application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2396,7 +2396,7 @@ msgstr "Tarih" #: application/views/contesting/index.php:47 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:507 application/views/eqsl/analysis.php:37 +#: application/views/debug/index.php:518 application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2422,7 +2422,7 @@ msgstr "Saat" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/debug/index.php:519 application/views/debug/index.php:554 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -2473,8 +2473,8 @@ msgid "Maximum file upload size is " msgstr "" #: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:153 -#: application/views/debug/index.php:498 application/views/hrdlog/export.php:25 +#: application/views/adif/import.php:258 application/views/debug/index.php:164 +#: application/views/debug/index.php:509 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 @@ -4925,166 +4925,168 @@ msgid "This verifies that the folders used by Wavelog have read and write permis msgstr "" #: application/views/debug/index.php:101 application/views/debug/index.php:112 -#: application/views/debug/index.php:123 application/views/debug/index.php:135 +#: application/views/debug/index.php:123 application/views/debug/index.php:134 +#: application/views/debug/index.php:146 msgid "Success" msgstr "" #: application/views/debug/index.php:103 application/views/debug/index.php:114 -#: application/views/debug/index.php:125 application/views/debug/index.php:137 +#: application/views/debug/index.php:125 application/views/debug/index.php:136 +#: application/views/debug/index.php:148 msgid "Failed" msgstr "" -#: application/views/debug/index.php:147 +#: application/views/debug/index.php:158 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:153 +#: application/views/debug/index.php:164 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:155 +#: application/views/debug/index.php:166 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:167 msgid "Go to your application/config Folder and compare config.sample.php with your config.php" msgstr "" -#: application/views/debug/index.php:157 +#: application/views/debug/index.php:168 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Ok" msgstr "" -#: application/views/debug/index.php:170 +#: application/views/debug/index.php:181 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:172 +#: application/views/debug/index.php:183 msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." msgstr "" -#: application/views/debug/index.php:185 +#: application/views/debug/index.php:196 msgid "Modules" msgstr "" -#: application/views/debug/index.php:191 application/views/debug/index.php:202 -#: application/views/debug/index.php:213 application/views/debug/index.php:224 -#: application/views/debug/index.php:235 +#: application/views/debug/index.php:202 application/views/debug/index.php:213 +#: application/views/debug/index.php:224 application/views/debug/index.php:235 +#: application/views/debug/index.php:246 msgid "Installed" msgstr "" -#: application/views/debug/index.php:193 application/views/debug/index.php:204 -#: application/views/debug/index.php:215 application/views/debug/index.php:226 -#: application/views/debug/index.php:237 +#: application/views/debug/index.php:204 application/views/debug/index.php:215 +#: application/views/debug/index.php:226 application/views/debug/index.php:237 +#: application/views/debug/index.php:248 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:244 application/views/qso/index.php:654 +#: application/views/debug/index.php:255 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:373 +#: application/views/debug/index.php:384 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:377 +#: application/views/debug/index.php:388 msgid "Branch" msgstr "" -#: application/views/debug/index.php:388 application/views/debug/index.php:399 -#: application/views/debug/index.php:409 +#: application/views/debug/index.php:399 application/views/debug/index.php:410 +#: application/views/debug/index.php:420 msgid "n/a" msgstr "" -#: application/views/debug/index.php:394 +#: application/views/debug/index.php:405 msgid "Commit" msgstr "" -#: application/views/debug/index.php:404 +#: application/views/debug/index.php:415 msgid "Tag" msgstr "" -#: application/views/debug/index.php:414 +#: application/views/debug/index.php:425 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:426 +#: application/views/debug/index.php:437 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:427 +#: application/views/debug/index.php:438 msgid "Update now" msgstr "" -#: application/views/debug/index.php:445 +#: application/views/debug/index.php:456 msgid "File download date" msgstr "" -#: application/views/debug/index.php:449 +#: application/views/debug/index.php:460 msgid "File" msgstr "" -#: application/views/debug/index.php:450 +#: application/views/debug/index.php:461 msgid "Last update" msgstr "" -#: application/views/debug/index.php:454 +#: application/views/debug/index.php:465 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:456 application/views/debug/index.php:462 -#: application/views/debug/index.php:467 application/views/debug/index.php:472 -#: application/views/debug/index.php:477 application/views/debug/index.php:482 -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:467 application/views/debug/index.php:473 +#: application/views/debug/index.php:478 application/views/debug/index.php:483 +#: application/views/debug/index.php:488 application/views/debug/index.php:493 +#: application/views/debug/index.php:498 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:460 +#: application/views/debug/index.php:471 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:470 +#: application/views/debug/index.php:481 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:475 +#: application/views/debug/index.php:486 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:480 +#: application/views/debug/index.php:491 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:485 +#: application/views/debug/index.php:496 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:494 +#: application/views/debug/index.php:505 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:509 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "The Database contains %d QSOs without a station-profile (location)" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:511 +#: application/views/debug/index.php:522 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:38 #: application/views/station_profile/edit.php:46 @@ -5094,84 +5096,84 @@ msgstr[1] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:547 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:544 +#: application/views/debug/index.php:555 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:545 application/views/debug/index.php:556 +#: application/views/debug/index.php:556 application/views/debug/index.php:567 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:590 +#: application/views/debug/index.php:601 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:591 +#: application/views/debug/index.php:602 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:603 msgid "Czech" msgstr "" -#: application/views/debug/index.php:593 +#: application/views/debug/index.php:604 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:594 +#: application/views/debug/index.php:605 msgid "English" msgstr "" -#: application/views/debug/index.php:595 +#: application/views/debug/index.php:606 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:607 msgid "French" msgstr "" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:608 msgid "German" msgstr "" -#: application/views/debug/index.php:598 +#: application/views/debug/index.php:609 msgid "Greek" msgstr "" -#: application/views/debug/index.php:599 +#: application/views/debug/index.php:610 msgid "Italian" msgstr "" -#: application/views/debug/index.php:600 +#: application/views/debug/index.php:611 msgid "Polish" msgstr "" -#: application/views/debug/index.php:601 +#: application/views/debug/index.php:612 msgid "Russian" msgstr "" -#: application/views/debug/index.php:602 +#: application/views/debug/index.php:613 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:614 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:604 +#: application/views/debug/index.php:615 msgid "Turkish" msgstr "" diff --git a/application/locale/zh_CN/LC_MESSAGES/messages.po b/application/locale/zh_CN/LC_MESSAGES/messages.po index af8b84363..44cb0e3e6 100644 --- a/application/locale/zh_CN/LC_MESSAGES/messages.po +++ b/application/locale/zh_CN/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 15:04+0000\n" +"POT-Creation-Date: 2024-07-10 16:25+0000\n" "PO-Revision-Date: 2024-07-09 13:26+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Chinese (Simplified) \n" @@ -501,7 +501,7 @@ msgstr "仪表板" msgid "Number of days with QSOs each year" msgstr "本年QSO总数" -#: application/controllers/Debug.php:75 +#: application/controllers/Debug.php:79 msgid "Debug" msgstr "Debug" @@ -874,7 +874,7 @@ msgstr "Clublog" #: application/views/contesting/index.php:203 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:509 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:520 application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 @@ -1147,7 +1147,7 @@ msgstr "距离" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:510 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:521 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 @@ -2355,7 +2355,7 @@ msgstr "与 DCL 相比,日志中 DOK 的数据不同" #: application/views/contesting/index.php:42 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:506 application/views/eqsl/analysis.php:36 +#: application/views/debug/index.php:517 application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2396,7 +2396,7 @@ msgstr "日期" #: application/views/contesting/index.php:47 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:507 application/views/eqsl/analysis.php:37 +#: application/views/debug/index.php:518 application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2422,7 +2422,7 @@ msgstr "时间" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/debug/index.php:519 application/views/debug/index.php:554 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -2473,8 +2473,8 @@ msgid "Maximum file upload size is " msgstr "最大上传文件大小是" #: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:153 -#: application/views/debug/index.php:498 application/views/hrdlog/export.php:25 +#: application/views/adif/import.php:258 application/views/debug/index.php:164 +#: application/views/debug/index.php:509 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 @@ -4924,165 +4924,167 @@ msgid "This verifies that the folders used by Wavelog have read and write permis msgstr "" #: application/views/debug/index.php:101 application/views/debug/index.php:112 -#: application/views/debug/index.php:123 application/views/debug/index.php:135 +#: application/views/debug/index.php:123 application/views/debug/index.php:134 +#: application/views/debug/index.php:146 msgid "Success" msgstr "" #: application/views/debug/index.php:103 application/views/debug/index.php:114 -#: application/views/debug/index.php:125 application/views/debug/index.php:137 +#: application/views/debug/index.php:125 application/views/debug/index.php:136 +#: application/views/debug/index.php:148 msgid "Failed" msgstr "" -#: application/views/debug/index.php:147 +#: application/views/debug/index.php:158 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:153 +#: application/views/debug/index.php:164 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:155 +#: application/views/debug/index.php:166 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:167 msgid "Go to your application/config Folder and compare config.sample.php with your config.php" msgstr "" -#: application/views/debug/index.php:157 +#: application/views/debug/index.php:168 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Ok" msgstr "" -#: application/views/debug/index.php:170 +#: application/views/debug/index.php:181 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:172 +#: application/views/debug/index.php:183 msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." msgstr "" -#: application/views/debug/index.php:185 +#: application/views/debug/index.php:196 msgid "Modules" msgstr "" -#: application/views/debug/index.php:191 application/views/debug/index.php:202 -#: application/views/debug/index.php:213 application/views/debug/index.php:224 -#: application/views/debug/index.php:235 +#: application/views/debug/index.php:202 application/views/debug/index.php:213 +#: application/views/debug/index.php:224 application/views/debug/index.php:235 +#: application/views/debug/index.php:246 msgid "Installed" msgstr "" -#: application/views/debug/index.php:193 application/views/debug/index.php:204 -#: application/views/debug/index.php:215 application/views/debug/index.php:226 -#: application/views/debug/index.php:237 +#: application/views/debug/index.php:204 application/views/debug/index.php:215 +#: application/views/debug/index.php:226 application/views/debug/index.php:237 +#: application/views/debug/index.php:248 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:244 application/views/qso/index.php:654 +#: application/views/debug/index.php:255 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:373 +#: application/views/debug/index.php:384 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:377 +#: application/views/debug/index.php:388 msgid "Branch" msgstr "" -#: application/views/debug/index.php:388 application/views/debug/index.php:399 -#: application/views/debug/index.php:409 +#: application/views/debug/index.php:399 application/views/debug/index.php:410 +#: application/views/debug/index.php:420 msgid "n/a" msgstr "" -#: application/views/debug/index.php:394 +#: application/views/debug/index.php:405 msgid "Commit" msgstr "" -#: application/views/debug/index.php:404 +#: application/views/debug/index.php:415 msgid "Tag" msgstr "" -#: application/views/debug/index.php:414 +#: application/views/debug/index.php:425 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:426 +#: application/views/debug/index.php:437 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:427 +#: application/views/debug/index.php:438 msgid "Update now" msgstr "" -#: application/views/debug/index.php:445 +#: application/views/debug/index.php:456 msgid "File download date" msgstr "" -#: application/views/debug/index.php:449 +#: application/views/debug/index.php:460 msgid "File" msgstr "" -#: application/views/debug/index.php:450 +#: application/views/debug/index.php:461 msgid "Last update" msgstr "" -#: application/views/debug/index.php:454 +#: application/views/debug/index.php:465 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:456 application/views/debug/index.php:462 -#: application/views/debug/index.php:467 application/views/debug/index.php:472 -#: application/views/debug/index.php:477 application/views/debug/index.php:482 -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:467 application/views/debug/index.php:473 +#: application/views/debug/index.php:478 application/views/debug/index.php:483 +#: application/views/debug/index.php:488 application/views/debug/index.php:493 +#: application/views/debug/index.php:498 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "更新" -#: application/views/debug/index.php:460 +#: application/views/debug/index.php:471 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:470 +#: application/views/debug/index.php:481 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:475 +#: application/views/debug/index.php:486 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:480 +#: application/views/debug/index.php:491 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:485 +#: application/views/debug/index.php:496 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:494 +#: application/views/debug/index.php:505 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:509 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "The Database contains %d QSOs without a station-profile (location)" msgstr[0] "" -#: application/views/debug/index.php:511 +#: application/views/debug/index.php:522 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:38 #: application/views/station_profile/edit.php:46 @@ -5092,84 +5094,84 @@ msgstr[0] "" msgid "Station Callsign" msgstr "电台呼号" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:547 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:544 +#: application/views/debug/index.php:555 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:545 application/views/debug/index.php:556 +#: application/views/debug/index.php:556 application/views/debug/index.php:567 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:590 +#: application/views/debug/index.php:601 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:591 +#: application/views/debug/index.php:602 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:603 msgid "Czech" msgstr "" -#: application/views/debug/index.php:593 +#: application/views/debug/index.php:604 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:594 +#: application/views/debug/index.php:605 msgid "English" msgstr "" -#: application/views/debug/index.php:595 +#: application/views/debug/index.php:606 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:607 msgid "French" msgstr "" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:608 msgid "German" msgstr "" -#: application/views/debug/index.php:598 +#: application/views/debug/index.php:609 msgid "Greek" msgstr "" -#: application/views/debug/index.php:599 +#: application/views/debug/index.php:610 msgid "Italian" msgstr "" -#: application/views/debug/index.php:600 +#: application/views/debug/index.php:611 msgid "Polish" msgstr "" -#: application/views/debug/index.php:601 +#: application/views/debug/index.php:612 msgid "Russian" msgstr "" -#: application/views/debug/index.php:602 +#: application/views/debug/index.php:613 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:614 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:604 +#: application/views/debug/index.php:615 msgid "Turkish" msgstr "" diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot index e22b035ee..4cdca1dd8 100644 --- a/assets/lang_src/messages.pot +++ b/assets/lang_src/messages.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 16:01+0000\n" +"POT-Creation-Date: 2024-07-10 16:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -500,7 +500,7 @@ msgstr "" msgid "Number of days with QSOs each year" msgstr "" -#: application/controllers/Debug.php:75 +#: application/controllers/Debug.php:79 msgid "Debug" msgstr "" @@ -874,7 +874,7 @@ msgstr "" #: application/views/contesting/index.php:203 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:509 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:520 application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 @@ -1147,7 +1147,7 @@ msgstr "" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:510 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:521 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 @@ -2355,7 +2355,7 @@ msgstr "" #: application/views/contesting/index.php:42 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:506 application/views/eqsl/analysis.php:36 +#: application/views/debug/index.php:517 application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2396,7 +2396,7 @@ msgstr "" #: application/views/contesting/index.php:47 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:507 application/views/eqsl/analysis.php:37 +#: application/views/debug/index.php:518 application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2422,7 +2422,7 @@ msgstr "" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:508 application/views/debug/index.php:543 +#: application/views/debug/index.php:519 application/views/debug/index.php:554 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -2473,8 +2473,8 @@ msgid "Maximum file upload size is " msgstr "" #: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:153 -#: application/views/debug/index.php:498 application/views/hrdlog/export.php:25 +#: application/views/adif/import.php:258 application/views/debug/index.php:164 +#: application/views/debug/index.php:509 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:23 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 @@ -4925,166 +4925,168 @@ msgid "This verifies that the folders used by Wavelog have read and write permis msgstr "" #: application/views/debug/index.php:101 application/views/debug/index.php:112 -#: application/views/debug/index.php:123 application/views/debug/index.php:135 +#: application/views/debug/index.php:123 application/views/debug/index.php:134 +#: application/views/debug/index.php:146 msgid "Success" msgstr "" #: application/views/debug/index.php:103 application/views/debug/index.php:114 -#: application/views/debug/index.php:125 application/views/debug/index.php:137 +#: application/views/debug/index.php:125 application/views/debug/index.php:136 +#: application/views/debug/index.php:148 msgid "Failed" msgstr "" -#: application/views/debug/index.php:147 +#: application/views/debug/index.php:158 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:153 +#: application/views/debug/index.php:164 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:155 +#: application/views/debug/index.php:166 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:167 msgid "Go to your application/config Folder and compare config.sample.php with your config.php" msgstr "" -#: application/views/debug/index.php:157 +#: application/views/debug/index.php:168 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:163 +#: application/views/debug/index.php:174 msgid "Ok" msgstr "" -#: application/views/debug/index.php:170 +#: application/views/debug/index.php:181 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:172 +#: application/views/debug/index.php:183 msgid "Here you can migrate existing QSL cards and eQSL cards to the new userdata folder." msgstr "" -#: application/views/debug/index.php:185 +#: application/views/debug/index.php:196 msgid "Modules" msgstr "" -#: application/views/debug/index.php:191 application/views/debug/index.php:202 -#: application/views/debug/index.php:213 application/views/debug/index.php:224 -#: application/views/debug/index.php:235 +#: application/views/debug/index.php:202 application/views/debug/index.php:213 +#: application/views/debug/index.php:224 application/views/debug/index.php:235 +#: application/views/debug/index.php:246 msgid "Installed" msgstr "" -#: application/views/debug/index.php:193 application/views/debug/index.php:204 -#: application/views/debug/index.php:215 application/views/debug/index.php:226 -#: application/views/debug/index.php:237 +#: application/views/debug/index.php:204 application/views/debug/index.php:215 +#: application/views/debug/index.php:226 application/views/debug/index.php:237 +#: application/views/debug/index.php:248 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:244 application/views/qso/index.php:654 +#: application/views/debug/index.php:255 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:373 +#: application/views/debug/index.php:384 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:377 +#: application/views/debug/index.php:388 msgid "Branch" msgstr "" -#: application/views/debug/index.php:388 application/views/debug/index.php:399 -#: application/views/debug/index.php:409 +#: application/views/debug/index.php:399 application/views/debug/index.php:410 +#: application/views/debug/index.php:420 msgid "n/a" msgstr "" -#: application/views/debug/index.php:394 +#: application/views/debug/index.php:405 msgid "Commit" msgstr "" -#: application/views/debug/index.php:404 +#: application/views/debug/index.php:415 msgid "Tag" msgstr "" -#: application/views/debug/index.php:414 +#: application/views/debug/index.php:425 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:426 +#: application/views/debug/index.php:437 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:427 +#: application/views/debug/index.php:438 msgid "Update now" msgstr "" -#: application/views/debug/index.php:445 +#: application/views/debug/index.php:456 msgid "File download date" msgstr "" -#: application/views/debug/index.php:449 +#: application/views/debug/index.php:460 msgid "File" msgstr "" -#: application/views/debug/index.php:450 +#: application/views/debug/index.php:461 msgid "Last update" msgstr "" -#: application/views/debug/index.php:454 +#: application/views/debug/index.php:465 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:456 application/views/debug/index.php:462 -#: application/views/debug/index.php:467 application/views/debug/index.php:472 -#: application/views/debug/index.php:477 application/views/debug/index.php:482 -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:467 application/views/debug/index.php:473 +#: application/views/debug/index.php:478 application/views/debug/index.php:483 +#: application/views/debug/index.php:488 application/views/debug/index.php:493 +#: application/views/debug/index.php:498 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:460 +#: application/views/debug/index.php:471 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:470 +#: application/views/debug/index.php:481 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:475 +#: application/views/debug/index.php:486 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:480 +#: application/views/debug/index.php:491 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:485 +#: application/views/debug/index.php:496 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:494 +#: application/views/debug/index.php:505 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:509 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "The Database contains %d QSOs without a station-profile (location)" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:511 +#: application/views/debug/index.php:522 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:38 #: application/views/station_profile/edit.php:46 @@ -5094,84 +5096,84 @@ msgstr[1] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:547 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:544 +#: application/views/debug/index.php:555 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:545 application/views/debug/index.php:556 +#: application/views/debug/index.php:556 application/views/debug/index.php:567 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:565 +#: application/views/debug/index.php:576 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:590 +#: application/views/debug/index.php:601 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:591 +#: application/views/debug/index.php:602 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:592 +#: application/views/debug/index.php:603 msgid "Czech" msgstr "" -#: application/views/debug/index.php:593 +#: application/views/debug/index.php:604 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:594 +#: application/views/debug/index.php:605 msgid "English" msgstr "" -#: application/views/debug/index.php:595 +#: application/views/debug/index.php:606 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:607 msgid "French" msgstr "" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:608 msgid "German" msgstr "" -#: application/views/debug/index.php:598 +#: application/views/debug/index.php:609 msgid "Greek" msgstr "" -#: application/views/debug/index.php:599 +#: application/views/debug/index.php:610 msgid "Italian" msgstr "" -#: application/views/debug/index.php:600 +#: application/views/debug/index.php:611 msgid "Polish" msgstr "" -#: application/views/debug/index.php:601 +#: application/views/debug/index.php:612 msgid "Russian" msgstr "" -#: application/views/debug/index.php:602 +#: application/views/debug/index.php:613 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:614 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:604 +#: application/views/debug/index.php:615 msgid "Turkish" msgstr "" diff --git a/install/includes/gettext/lang_src/installer.pot b/install/includes/gettext/lang_src/installer.pot index 408c80572..7f4c71286 100644 --- a/install/includes/gettext/lang_src/installer.pot +++ b/install/includes/gettext/lang_src/installer.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 16:01+0000\n" +"POT-Creation-Date: 2024-07-10 16:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 8e683dfb2e0aaeb99116250bf9df4435831dbe2f Mon Sep 17 00:00:00 2001 From: HB9HIL <80885850+HB9HIL@users.noreply.github.com> Date: Wed, 10 Jul 2024 22:22:34 +0200 Subject: [PATCH 07/13] updated contributors added violarulan --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1d44de82a..99ce90a2c 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ Wavelog-support can be reached by creating an issue here at github. If you've an ## Contributing Special thanks to our contributors, who are part of Wavelog by improving code! -[F4ANS](https://github.com/abarrau), [DG0TM](https://github.com/dg0tm), [DG9VH](https://github.com/dg9vh), [DJ3CE](https://github.com/dj3ce), [R1BLH](https://github.com/r1blh) +[F4ANS](https://github.com/abarrau), [DG0TM](https://github.com/dg0tm), [DG9VH](https://github.com/dg9vh), [DJ3CE](https://github.com/dj3ce), [R1BLH](https://github.com/r1blh), [violarulan](https://github.com/violarulan) If you would like to contribute in any way to Wavelog, it is most appreciated. This has been developed in free time, help coding new features or writing documentation is always useful. From 814265c0611261dd61cd222a53f155d7db1fa4c4 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 10 Jul 2024 20:23:02 +0000 Subject: [PATCH 08/13] Run po_gen.sh script to update translation files --- assets/lang_src/messages.pot | 2 +- install/includes/gettext/lang_src/installer.pot | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot index 4cdca1dd8..99cb0f7a5 100644 --- a/assets/lang_src/messages.pot +++ b/assets/lang_src/messages.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 16:25+0000\n" +"POT-Creation-Date: 2024-07-10 20:23+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/install/includes/gettext/lang_src/installer.pot b/install/includes/gettext/lang_src/installer.pot index 7f4c71286..ea08fea10 100644 --- a/install/includes/gettext/lang_src/installer.pot +++ b/install/includes/gettext/lang_src/installer.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 16:25+0000\n" +"POT-Creation-Date: 2024-07-10 20:23+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 9a8d6cb4d1d857585ad34ad69c5a42d5cbc5625f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Koloni=C4=8Dn=C3=BD?= Date: Wed, 10 Jul 2024 17:22:01 +0000 Subject: [PATCH 09/13] Translated using Weblate (Czech) Currently translated at 19.2% (345 of 1794 strings) Translation: Wavelog/Main Translation Translate-URL: https://translate.wavelog.org/projects/wavelog/main-translation/cs/ --- .../locale/cs_CZ/LC_MESSAGES/messages.po | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/application/locale/cs_CZ/LC_MESSAGES/messages.po b/application/locale/cs_CZ/LC_MESSAGES/messages.po index 5376fd5d1..06416a86f 100644 --- a/application/locale/cs_CZ/LC_MESSAGES/messages.po +++ b/application/locale/cs_CZ/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" "POT-Creation-Date: 2024-07-10 16:25+0000\n" -"PO-Revision-Date: 2024-07-09 13:25+0000\n" +"PO-Revision-Date: 2024-07-10 20:23+0000\n" "Last-Translator: Ondřej Koloničný \n" "Language-Team: Czech \n" "Language: cs_CZ\n" @@ -173,7 +173,7 @@ msgstr "Diplomy" #: application/controllers/Awards.php:1755 #, php-format msgid "Awards - %s" -msgstr "" +msgstr "Diplomy - %s" #: application/controllers/Awards.php:92 #: application/views/awards/dok/index.php:149 @@ -212,7 +212,7 @@ msgstr "DXCC" #: application/controllers/Awards.php:251 msgid "Awards - WAJA" -msgstr "" +msgstr "Diplomy - WAJA" #: application/controllers/Awards.php:327 application/views/bands/index.php:51 #: application/views/interface_assets/header.php:208 @@ -325,18 +325,18 @@ msgstr "POTA" #: application/controllers/Awards.php:591 msgid "CQ Magazine WAZ" -msgstr "" +msgstr "CQ Magazine WAZ" #: application/controllers/Awards.php:652 #: application/views/accumulate/index.php:58 #: application/views/timeline/index.php:45 msgid "Worked All States (WAS)" -msgstr "" +msgstr "Worked All States (WAS)" #: application/controllers/Awards.php:714 application/views/bands/index.php:53 #: application/views/interface_assets/header.php:186 msgid "RAC" -msgstr "" +msgstr "RAC" #: application/controllers/Awards.php:776 application/views/bands/index.php:49 msgid "H26" @@ -358,7 +358,7 @@ msgstr "" #: application/controllers/Awards.php:894 msgid "Awards - " -msgstr "" +msgstr "Diplomy - " #: application/controllers/Awards.php:911 #: application/controllers/Awards.php:943 @@ -368,7 +368,7 @@ msgstr "" #: application/controllers/Awards.php:912 #: application/controllers/Awards.php:944 msgid "Gridsquares confirmed on LoTW" -msgstr "" +msgstr "Lokátory potvrzené LoTW" #: application/controllers/Awards.php:913 #: application/controllers/Awards.php:945 @@ -387,12 +387,12 @@ msgstr "SIG" #: application/controllers/Awards.php:1143 msgid "Awards - SIG - " -msgstr "" +msgstr "Diplomy- SIG - " #: application/controllers/Awards.php:1755 #: application/views/awards/itu/index.php:18 msgid "ITU Zones" -msgstr "" +msgstr "ITU zóny" #: application/controllers/Backup.php:15 application/views/backup/main.php:14 #: application/views/interface_assets/header.php:272 @@ -401,11 +401,11 @@ msgstr "Zálohování" #: application/controllers/Backup.php:48 msgid "ADIF - Backup" -msgstr "" +msgstr "ADIF - Záloha" #: application/controllers/Backup.php:80 msgid "Notes - Backup" -msgstr "" +msgstr "Poznámky - Záloha" #: application/controllers/Band.php:25 application/views/bands/index.php:28 #: application/views/bands/index.php:32 From f193f709b980d7ed899e94fa4bbfff9754399ee5 Mon Sep 17 00:00:00 2001 From: Fabian Berg Date: Wed, 10 Jul 2024 17:24:52 +0000 Subject: [PATCH 10/13] Translated using Weblate (German) Currently translated at 100.0% (1794 of 1794 strings) Translation: Wavelog/Main Translation Translate-URL: https://translate.wavelog.org/projects/wavelog/main-translation/de/ --- application/locale/de_DE/LC_MESSAGES/messages.po | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/application/locale/de_DE/LC_MESSAGES/messages.po b/application/locale/de_DE/LC_MESSAGES/messages.po index 5aadbfd42..2f48961fc 100644 --- a/application/locale/de_DE/LC_MESSAGES/messages.po +++ b/application/locale/de_DE/LC_MESSAGES/messages.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" "POT-Creation-Date: 2024-07-10 16:25+0000\n" -"PO-Revision-Date: 2024-07-09 13:25+0000\n" -"Last-Translator: Florian Wolters \n" +"PO-Revision-Date: 2024-07-10 20:23+0000\n" +"Last-Translator: Fabian Berg \n" "Language-Team: German \n" "Language: de_DE\n" "MIME-Version: 1.0\n" @@ -3857,23 +3857,23 @@ msgstr "WAS" #: application/views/bands/index.php:65 msgid "QRG Unit" -msgstr "" +msgstr "QRG Einheit" #: application/views/bands/index.php:98 msgid "Hz" -msgstr "" +msgstr "Hz" #: application/views/bands/index.php:99 msgid "kHz" -msgstr "" +msgstr "kHz" #: application/views/bands/index.php:100 msgid "MHz" -msgstr "" +msgstr "MHz" #: application/views/bands/index.php:101 msgid "GHz" -msgstr "" +msgstr "GHz" #: application/views/bands/index.php:151 application/views/bands/index.php:157 msgid "Create a band" From 2cf9eee167cf42cfba2cae6a044093692d0c8c99 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 10 Jul 2024 20:25:08 +0000 Subject: [PATCH 11/13] Run po_gen.sh script to update translation files --- .../locale/cs_CZ/LC_MESSAGES/messages.mo | Bin 22396 -> 22955 bytes .../locale/de_DE/LC_MESSAGES/messages.mo | Bin 166228 -> 166373 bytes assets/lang_src/messages.pot | 2 +- .../includes/gettext/lang_src/installer.pot | 2 +- 4 files changed, 2 insertions(+), 2 deletions(-) diff --git a/application/locale/cs_CZ/LC_MESSAGES/messages.mo b/application/locale/cs_CZ/LC_MESSAGES/messages.mo index ac4ff20fa79a94ae01e2e70132bd9ed0679f1a20..b176be7942facdadff4f71782181aa2c53264ad7 100644 GIT binary patch delta 7862 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 diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot index 99cb0f7a5..ef7939d1b 100644 --- a/assets/lang_src/messages.pot +++ b/assets/lang_src/messages.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 20:23+0000\n" +"POT-Creation-Date: 2024-07-10 20:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/install/includes/gettext/lang_src/installer.pot b/install/includes/gettext/lang_src/installer.pot index ea08fea10..de59a5b17 100644 --- a/install/includes/gettext/lang_src/installer.pot +++ b/install/includes/gettext/lang_src/installer.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 20:23+0000\n" +"POT-Creation-Date: 2024-07-10 20:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 2ca4c40a305cdb81cf6f8c9d4762e4a24bfeffe1 Mon Sep 17 00:00:00 2001 From: int2001 Date: Thu, 11 Jul 2024 12:19:46 +0000 Subject: [PATCH 12/13] Renamed print QSL to QSL Queue in Menue --- application/views/interface_assets/header.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/views/interface_assets/header.php b/application/views/interface_assets/header.php index 57de01260..a1ff08218 100644 --- a/application/views/interface_assets/header.php +++ b/application/views/interface_assets/header.php @@ -405,7 +405,7 @@
  • 0) { echo "" . $oqrs_requests . ""; } ?>
  • -
  • +
  • ">
  • From 94a6693ba8a166c9bd30a770a737af5b6ce6f49b Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 11 Jul 2024 12:26:08 +0000 Subject: [PATCH 13/13] Run po_gen.sh script to update translation files --- application/locale/bg_BG/LC_MESSAGES/messages.po | 7 +++++-- application/locale/cs_CZ/LC_MESSAGES/messages.po | 7 +++++-- application/locale/de_DE/LC_MESSAGES/messages.po | 7 +++++-- application/locale/el_GR/LC_MESSAGES/messages.po | 7 +++++-- application/locale/es_ES/LC_MESSAGES/messages.po | 7 +++++-- application/locale/fi_FI/LC_MESSAGES/messages.po | 7 +++++-- application/locale/fr_FR/LC_MESSAGES/messages.po | 7 +++++-- application/locale/it_IT/LC_MESSAGES/messages.po | 7 +++++-- application/locale/nl_NL/LC_MESSAGES/messages.po | 7 +++++-- application/locale/pl_PL/LC_MESSAGES/messages.po | 7 +++++-- application/locale/ru_RU/LC_MESSAGES/messages.po | 7 +++++-- application/locale/sv_SE/LC_MESSAGES/messages.po | 7 +++++-- application/locale/tr_TR/LC_MESSAGES/messages.po | 7 +++++-- application/locale/zh_CN/LC_MESSAGES/messages.po | 7 +++++-- assets/lang_src/messages.pot | 7 +++++-- install/includes/gettext/lang_src/installer.pot | 2 +- 16 files changed, 76 insertions(+), 31 deletions(-) diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po index 4479c2755..acb9d4768 100644 --- a/application/locale/bg_BG/LC_MESSAGES/messages.po +++ b/application/locale/bg_BG/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 16:25+0000\n" +"POT-Creation-Date: 2024-07-11 12:26+0000\n" "PO-Revision-Date: 2024-07-09 13:25+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Bulgarian \n" @@ -1491,7 +1491,6 @@ msgid "QSL Card Management" msgstr "" #: application/controllers/Qslprint.php:46 -#: application/views/interface_assets/header.php:408 msgid "Print Requested QSLs" msgstr "" @@ -5702,6 +5701,10 @@ msgstr "" msgid "Cabrillo Export" msgstr "" +#: application/views/interface_assets/header.php:408 +msgid "QSL Queue" +msgstr "" + #: application/views/interface_assets/header.php:409 msgid "Labels" msgstr "" diff --git a/application/locale/cs_CZ/LC_MESSAGES/messages.po b/application/locale/cs_CZ/LC_MESSAGES/messages.po index 06416a86f..d8a596c1d 100644 --- a/application/locale/cs_CZ/LC_MESSAGES/messages.po +++ b/application/locale/cs_CZ/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 16:25+0000\n" +"POT-Creation-Date: 2024-07-11 12:26+0000\n" "PO-Revision-Date: 2024-07-10 20:23+0000\n" "Last-Translator: Ondřej Koloničný \n" "Language-Team: Czech \n" @@ -1493,7 +1493,6 @@ msgid "QSL Card Management" msgstr "" #: application/controllers/Qslprint.php:46 -#: application/views/interface_assets/header.php:408 msgid "Print Requested QSLs" msgstr "Tisk žádaných QSL" @@ -5706,6 +5705,10 @@ msgstr "" msgid "Cabrillo Export" msgstr "" +#: application/views/interface_assets/header.php:408 +msgid "QSL Queue" +msgstr "" + #: application/views/interface_assets/header.php:409 msgid "Labels" msgstr "Štítky" diff --git a/application/locale/de_DE/LC_MESSAGES/messages.po b/application/locale/de_DE/LC_MESSAGES/messages.po index 2f48961fc..24292a607 100644 --- a/application/locale/de_DE/LC_MESSAGES/messages.po +++ b/application/locale/de_DE/LC_MESSAGES/messages.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 16:25+0000\n" +"POT-Creation-Date: 2024-07-11 12:26+0000\n" "PO-Revision-Date: 2024-07-10 20:23+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: German \n" @@ -1496,7 +1496,6 @@ msgid "QSL Card Management" msgstr "QSL-Karten Management" #: application/controllers/Qslprint.php:46 -#: application/views/interface_assets/header.php:408 msgid "Print Requested QSLs" msgstr "Druck angeforderter QSLs" @@ -5707,6 +5706,10 @@ msgstr "Andere Export Optionen" msgid "Cabrillo Export" msgstr "Cabrillo Export" +#: application/views/interface_assets/header.php:408 +msgid "QSL Queue" +msgstr "" + #: application/views/interface_assets/header.php:409 msgid "Labels" msgstr "Etiketten" diff --git a/application/locale/el_GR/LC_MESSAGES/messages.po b/application/locale/el_GR/LC_MESSAGES/messages.po index 9f988f8c6..f31dc4baf 100644 --- a/application/locale/el_GR/LC_MESSAGES/messages.po +++ b/application/locale/el_GR/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 16:25+0000\n" +"POT-Creation-Date: 2024-07-11 12:26+0000\n" "PO-Revision-Date: 2024-07-09 13:25+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Greek \n" @@ -1492,7 +1492,6 @@ msgid "QSL Card Management" msgstr "" #: application/controllers/Qslprint.php:46 -#: application/views/interface_assets/header.php:408 msgid "Print Requested QSLs" msgstr "" @@ -5703,6 +5702,10 @@ msgstr "" msgid "Cabrillo Export" msgstr "" +#: application/views/interface_assets/header.php:408 +msgid "QSL Queue" +msgstr "" + #: application/views/interface_assets/header.php:409 msgid "Labels" msgstr "" diff --git a/application/locale/es_ES/LC_MESSAGES/messages.po b/application/locale/es_ES/LC_MESSAGES/messages.po index 801605e95..baac67506 100644 --- a/application/locale/es_ES/LC_MESSAGES/messages.po +++ b/application/locale/es_ES/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 16:25+0000\n" +"POT-Creation-Date: 2024-07-11 12:26+0000\n" "PO-Revision-Date: 2024-07-09 13:25+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Spanish \n" @@ -1492,7 +1492,6 @@ msgid "QSL Card Management" msgstr "" #: application/controllers/Qslprint.php:46 -#: application/views/interface_assets/header.php:408 msgid "Print Requested QSLs" msgstr "" @@ -5703,6 +5702,10 @@ msgstr "" msgid "Cabrillo Export" msgstr "Exportación Cabrillo" +#: application/views/interface_assets/header.php:408 +msgid "QSL Queue" +msgstr "" + #: application/views/interface_assets/header.php:409 msgid "Labels" msgstr "" diff --git a/application/locale/fi_FI/LC_MESSAGES/messages.po b/application/locale/fi_FI/LC_MESSAGES/messages.po index ba5316dd2..8271c4a1d 100644 --- a/application/locale/fi_FI/LC_MESSAGES/messages.po +++ b/application/locale/fi_FI/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 16:25+0000\n" +"POT-Creation-Date: 2024-07-11 12:26+0000\n" "PO-Revision-Date: 2024-07-09 13:25+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Finnish \n" @@ -1491,7 +1491,6 @@ msgid "QSL Card Management" msgstr "" #: application/controllers/Qslprint.php:46 -#: application/views/interface_assets/header.php:408 msgid "Print Requested QSLs" msgstr "Tulosta pyydetyt QSL:t" @@ -5702,6 +5701,10 @@ msgstr "" msgid "Cabrillo Export" msgstr "" +#: application/views/interface_assets/header.php:408 +msgid "QSL Queue" +msgstr "" + #: application/views/interface_assets/header.php:409 msgid "Labels" msgstr "Tarrat" diff --git a/application/locale/fr_FR/LC_MESSAGES/messages.po b/application/locale/fr_FR/LC_MESSAGES/messages.po index 44798345f..4742c3d74 100644 --- a/application/locale/fr_FR/LC_MESSAGES/messages.po +++ b/application/locale/fr_FR/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 16:25+0000\n" +"POT-Creation-Date: 2024-07-11 12:26+0000\n" "PO-Revision-Date: 2024-07-09 13:26+0000\n" "Last-Translator: Aurélien Barrau \n" "Language-Team: French \n" @@ -1492,7 +1492,6 @@ msgid "QSL Card Management" msgstr "" #: application/controllers/Qslprint.php:46 -#: application/views/interface_assets/header.php:408 msgid "Print Requested QSLs" msgstr "" @@ -5703,6 +5702,10 @@ msgstr "" msgid "Cabrillo Export" msgstr "Cabrillo - Export" +#: application/views/interface_assets/header.php:408 +msgid "QSL Queue" +msgstr "" + #: application/views/interface_assets/header.php:409 msgid "Labels" msgstr "" diff --git a/application/locale/it_IT/LC_MESSAGES/messages.po b/application/locale/it_IT/LC_MESSAGES/messages.po index 38c5e5b2c..0f9cb0622 100644 --- a/application/locale/it_IT/LC_MESSAGES/messages.po +++ b/application/locale/it_IT/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 16:25+0000\n" +"POT-Creation-Date: 2024-07-11 12:26+0000\n" "PO-Revision-Date: 2024-07-09 13:26+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Italian \n" @@ -1491,7 +1491,6 @@ msgid "QSL Card Management" msgstr "" #: application/controllers/Qslprint.php:46 -#: application/views/interface_assets/header.php:408 msgid "Print Requested QSLs" msgstr "" @@ -5702,6 +5701,10 @@ msgstr "" msgid "Cabrillo Export" msgstr "" +#: application/views/interface_assets/header.php:408 +msgid "QSL Queue" +msgstr "" + #: application/views/interface_assets/header.php:409 msgid "Labels" msgstr "" diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.po b/application/locale/nl_NL/LC_MESSAGES/messages.po index 3d124e00c..dafbc7c93 100644 --- a/application/locale/nl_NL/LC_MESSAGES/messages.po +++ b/application/locale/nl_NL/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 16:25+0000\n" +"POT-Creation-Date: 2024-07-11 12:26+0000\n" "PO-Revision-Date: 2024-07-09 13:26+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Dutch \n" @@ -1491,7 +1491,6 @@ msgid "QSL Card Management" msgstr "" #: application/controllers/Qslprint.php:46 -#: application/views/interface_assets/header.php:408 msgid "Print Requested QSLs" msgstr "" @@ -5702,6 +5701,10 @@ msgstr "" msgid "Cabrillo Export" msgstr "" +#: application/views/interface_assets/header.php:408 +msgid "QSL Queue" +msgstr "" + #: application/views/interface_assets/header.php:409 msgid "Labels" msgstr "" diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.po b/application/locale/pl_PL/LC_MESSAGES/messages.po index 49c8e0596..7d1e5dba3 100644 --- a/application/locale/pl_PL/LC_MESSAGES/messages.po +++ b/application/locale/pl_PL/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 16:25+0000\n" +"POT-Creation-Date: 2024-07-11 12:26+0000\n" "PO-Revision-Date: 2024-07-09 13:26+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Polish \n" @@ -1492,7 +1492,6 @@ msgid "QSL Card Management" msgstr "" #: application/controllers/Qslprint.php:46 -#: application/views/interface_assets/header.php:408 msgid "Print Requested QSLs" msgstr "" @@ -5705,6 +5704,10 @@ msgstr "" msgid "Cabrillo Export" msgstr "" +#: application/views/interface_assets/header.php:408 +msgid "QSL Queue" +msgstr "" + #: application/views/interface_assets/header.php:409 msgid "Labels" msgstr "" diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.po b/application/locale/ru_RU/LC_MESSAGES/messages.po index d634b5610..e4e960f68 100644 --- a/application/locale/ru_RU/LC_MESSAGES/messages.po +++ b/application/locale/ru_RU/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 16:25+0000\n" +"POT-Creation-Date: 2024-07-11 12:26+0000\n" "PO-Revision-Date: 2024-07-09 20:46+0000\n" "Last-Translator: Michael Skolsky \n" "Language-Team: Russian \n" @@ -1493,7 +1493,6 @@ msgid "QSL Card Management" msgstr "Управление QSL карточками" #: application/controllers/Qslprint.php:46 -#: application/views/interface_assets/header.php:408 msgid "Print Requested QSLs" msgstr "Распечатать запрошенные QSL" @@ -5706,6 +5705,10 @@ msgstr "Другие варианты экспорта" msgid "Cabrillo Export" msgstr "Экспорт Cabrillo" +#: application/views/interface_assets/header.php:408 +msgid "QSL Queue" +msgstr "" + #: application/views/interface_assets/header.php:409 msgid "Labels" msgstr "Наклейки" diff --git a/application/locale/sv_SE/LC_MESSAGES/messages.po b/application/locale/sv_SE/LC_MESSAGES/messages.po index 1c59a45a2..488e12696 100644 --- a/application/locale/sv_SE/LC_MESSAGES/messages.po +++ b/application/locale/sv_SE/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 16:25+0000\n" +"POT-Creation-Date: 2024-07-11 12:26+0000\n" "PO-Revision-Date: 2024-07-09 13:26+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Swedish \n" @@ -1491,7 +1491,6 @@ msgid "QSL Card Management" msgstr "" #: application/controllers/Qslprint.php:46 -#: application/views/interface_assets/header.php:408 msgid "Print Requested QSLs" msgstr "Skriv ut begärda QSL" @@ -5702,6 +5701,10 @@ msgstr "" msgid "Cabrillo Export" msgstr "" +#: application/views/interface_assets/header.php:408 +msgid "QSL Queue" +msgstr "" + #: application/views/interface_assets/header.php:409 msgid "Labels" msgstr "Etiketter" diff --git a/application/locale/tr_TR/LC_MESSAGES/messages.po b/application/locale/tr_TR/LC_MESSAGES/messages.po index 6d2d3f664..ea272865f 100644 --- a/application/locale/tr_TR/LC_MESSAGES/messages.po +++ b/application/locale/tr_TR/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 16:25+0000\n" +"POT-Creation-Date: 2024-07-11 12:26+0000\n" "PO-Revision-Date: 2024-07-09 13:26+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Turkish \n" @@ -1491,7 +1491,6 @@ msgid "QSL Card Management" msgstr "" #: application/controllers/Qslprint.php:46 -#: application/views/interface_assets/header.php:408 msgid "Print Requested QSLs" msgstr "" @@ -5702,6 +5701,10 @@ msgstr "" msgid "Cabrillo Export" msgstr "" +#: application/views/interface_assets/header.php:408 +msgid "QSL Queue" +msgstr "" + #: application/views/interface_assets/header.php:409 msgid "Labels" msgstr "" diff --git a/application/locale/zh_CN/LC_MESSAGES/messages.po b/application/locale/zh_CN/LC_MESSAGES/messages.po index 44cb0e3e6..59f98c533 100644 --- a/application/locale/zh_CN/LC_MESSAGES/messages.po +++ b/application/locale/zh_CN/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 16:25+0000\n" +"POT-Creation-Date: 2024-07-11 12:26+0000\n" "PO-Revision-Date: 2024-07-09 13:26+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Chinese (Simplified) \n" @@ -1491,7 +1491,6 @@ msgid "QSL Card Management" msgstr "QSL 卡片管理" #: application/controllers/Qslprint.php:46 -#: application/views/interface_assets/header.php:408 msgid "Print Requested QSLs" msgstr "打印请求的QSL卡片" @@ -5700,6 +5699,10 @@ msgstr "其它导出选项" msgid "Cabrillo Export" msgstr "Cabrillo 导出" +#: application/views/interface_assets/header.php:408 +msgid "QSL Queue" +msgstr "" + #: application/views/interface_assets/header.php:409 msgid "Labels" msgstr "标签" diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot index ef7939d1b..da5049bac 100644 --- a/assets/lang_src/messages.pot +++ b/assets/lang_src/messages.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 20:25+0000\n" +"POT-Creation-Date: 2024-07-11 12:26+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1491,7 +1491,6 @@ msgid "QSL Card Management" msgstr "" #: application/controllers/Qslprint.php:46 -#: application/views/interface_assets/header.php:408 msgid "Print Requested QSLs" msgstr "" @@ -5702,6 +5701,10 @@ msgstr "" msgid "Cabrillo Export" msgstr "" +#: application/views/interface_assets/header.php:408 +msgid "QSL Queue" +msgstr "" + #: application/views/interface_assets/header.php:409 msgid "Labels" msgstr "" diff --git a/install/includes/gettext/lang_src/installer.pot b/install/includes/gettext/lang_src/installer.pot index de59a5b17..6b8297b36 100644 --- a/install/includes/gettext/lang_src/installer.pot +++ b/install/includes/gettext/lang_src/installer.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-07-10 20:25+0000\n" +"POT-Creation-Date: 2024-07-11 12:26+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n"