diff --git a/README.md b/README.md index 039fc588a..071463282 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ Wavelog-support can be reached by creating an issue here at github. If you've an 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), [BG2ELG](https://github.com/violarulan), [DF1ASH](https://github.com/derFogel), [DB4SCW](https://github.com/DB4SCW), [VE2HEW](https://github.com/anthonydiiorio), [OK1GOD](https://github.com/filipmelik), [DJ1PW](https://github.com/winnieXY), [toseppo](https://github.com/toseppo), [N7DSB](https://github.com/desertblade), [BA7LAC](https://github.com/imlonghao), [AE4CE](https://github.com/ethancedwards8), [K1AF](https://github.com/patrickrb), [OE4BAM](https://github.com/MatykoBr), [HB9HJQ](https://github.com/zone11), [R3DHX](https://github.com/AleksdemSA), [uiolee](https://github.com/uiolee), [VK3ARR](https://github.com/VK3ARR), [BI7BST](https://github.com/Cryolitia), [ludoux](https://github.com/ludoux), [BG5ATV](https://github.com/tallcode), [BH6SKD](https://github.com/xiaosuan2b), [VK7TO](https://github.com/RhinoLance), [IU2FRL](https://github.com/iu2frl), [szporwolik](https://github.com/szporwolik), [agrif](https://github.com/agrif), [goodspeed34](https://github.com/goodspeed34) +[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), [BG2ELG](https://github.com/violarulan), [DF1ASH](https://github.com/derFogel), [DB4SCW](https://github.com/DB4SCW), [VE2HEW](https://github.com/anthonydiiorio), [OK1GOD](https://github.com/filipmelik), [DJ1PW](https://github.com/winnieXY), [toseppo](https://github.com/toseppo), [N7DSB](https://github.com/desertblade), [BA7LAC](https://github.com/imlonghao), [AE4CE](https://github.com/ethancedwards8), [K1AF](https://github.com/patrickrb), [OE4BAM](https://github.com/MatykoBr), [HB9HJQ](https://github.com/zone11), [R3DHX](https://github.com/AleksdemSA), [uiolee](https://github.com/uiolee), [VK3ARR](https://github.com/VK3ARR), [BI7BST](https://github.com/Cryolitia), [ludoux](https://github.com/ludoux), [BG5ATV](https://github.com/tallcode), [BH6SKD](https://github.com/xiaosuan2b), [VK7TO](https://github.com/RhinoLance), [IU2FRL](https://github.com/iu2frl), [szporwolik](https://github.com/szporwolik), [agrif](https://github.com/agrif), [goodspeed34](https://github.com/goodspeed34), [kmanwar89](https://github.com/kmanwar89) Translators: diff --git a/application/config/migration.php b/application/config/migration.php index 64bd5d404..6a5de9e7c 100644 --- a/application/config/migration.php +++ b/application/config/migration.php @@ -22,7 +22,7 @@ $config['migration_enabled'] = TRUE; | */ -$config['migration_version'] = 267; +$config['migration_version'] = 268; /* |-------------------------------------------------------------------------- diff --git a/application/controllers/Station.php b/application/controllers/Station.php index 16e1bc2e8..e65d47387 100644 --- a/application/controllers/Station.php +++ b/application/controllers/Station.php @@ -7,15 +7,15 @@ class Station extends CI_Controller { - function __construct() - { + function __construct() { parent::__construct(); $this->load->helper(array('form', 'url')); $this->load->model('user_model'); - if (!$this->user_model->authorize(2)) { - $this->session->set_flashdata('error', __("You're not allowed to do that!")); - redirect('dashboard'); + if (($this->router->method == 'stationProfileCoords') && $this->user_model->authorize(2) && ((clubaccess_check(3) || clubaccess_check(6)))) { return; } // Allow Clubmembers and Clubmembers ADIF to access list_locations + if (!$this->user_model->authorize(2) || !clubaccess_check(9)) { + $this->session->set_flashdata('error', __("You're not allowed to do that!")); + redirect('dashboard'); } } diff --git a/application/controllers/Stationsetup.php b/application/controllers/Stationsetup.php index 89f555e83..9b7456365 100644 --- a/application/controllers/Stationsetup.php +++ b/application/controllers/Stationsetup.php @@ -12,6 +12,7 @@ class Stationsetup extends CI_Controller { $this->load->helper(array('form', 'url')); $this->load->model('user_model'); + if (($this->router->method == 'list_locations') && $this->user_model->authorize(2) && ((clubaccess_check(3) || clubaccess_check(6)))) { return; } // Allow Clubmembers and Clubmembers ADIF to access list_locations if(!$this->user_model->authorize(2) || !clubaccess_check(9)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } @@ -524,6 +525,7 @@ class Stationsetup extends CI_Controller { $this->load->model('stationsetup_model'); $data['locations'] = $this->stationsetup_model->list_all_locations(); $data['page_title'] = __("Station location list"); + $data['cd_p_level'] = ($this->session->userdata('cd_p_level') ?? 0); $this->load->view('interface_assets/header', $data); $this->load->view('stationsetup/locationlist'); $this->load->view('interface_assets/footer'); diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po index 68319dbc9..be1a7ea04 100644 --- a/application/locale/bg_BG/LC_MESSAGES/messages.po +++ b/application/locale/bg_BG/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-12-07 09:59+0000\n" +"POT-Creation-Date: 2025-12-08 10:52+0000\n" "PO-Revision-Date: 2024-11-01 08:53+0000\n" "Last-Translator: Plamen Panteleev \n" "Language-Team: Bulgarian \n" "Language-Team: Bosnian \n" "Language-Team: Montenegrin \n" "Language-Team: Czech \n" "Language-Team: German \n" @@ -125,7 +125,7 @@ msgstr "" #: application/controllers/Search.php:12 #: application/controllers/Simplefle.php:7 #: application/controllers/Station.php:17 -#: application/controllers/Stationsetup.php:15 +#: application/controllers/Stationsetup.php:16 #: application/controllers/Themes.php:17 #: application/controllers/Timeline.php:10 #: application/controllers/Timeplotter.php:11 @@ -230,7 +230,7 @@ msgid "date incorrect" msgstr "ungültiges Datum" #: application/controllers/Adif.php:283 -#: application/views/interface_assets/header.php:474 +#: application/views/interface_assets/header.php:476 msgid "ADIF Import / Export" msgstr "ADIF Import/Export" @@ -902,7 +902,7 @@ msgid "Not running" msgstr "Läuft nicht" #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:483 +#: application/views/interface_assets/header.php:485 msgid "SOTA CSV Export" msgstr "SOTA CSV-Export" @@ -1028,7 +1028,7 @@ msgid "and propagation" msgstr "und Ausbreitungsart" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:481 +#: application/views/interface_assets/header.php:483 msgid "DX Atlas Gridsquare Export" msgstr "DX-Atlas Locator-Export" @@ -1127,7 +1127,7 @@ msgid "No QSOs found to upload." msgstr "Keine QSOs zum hochladen gefunden." #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:479 +#: application/views/interface_assets/header.php:481 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "KML-Export" @@ -1839,7 +1839,7 @@ msgid "Operator" msgstr "Operator" #: application/controllers/Logbook.php:1395 -#: application/controllers/Stationsetup.php:423 +#: application/controllers/Stationsetup.php:424 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/dxcc/index.php:291 #: application/views/awards/wae/index.php:175 @@ -1856,7 +1856,7 @@ msgstr "Operator" #: application/views/station_profile/edit.php:109 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/locationlist.php:54 +#: application/views/stationsetup/locationlist.php:58 #: application/views/stationsetup/stationsetup.php:156 #: application/views/timeline/index.php:216 #: application/views/timeplotter/index.php:33 @@ -1878,7 +1878,7 @@ msgstr "Schnellsuche" #: application/controllers/Lotw.php:64 application/controllers/Lotw.php:96 #: application/controllers/Lotw.php:136 application/views/adif/import.php:42 #: application/views/dcl_views/upload_cert.php:3 -#: application/views/interface_assets/header.php:514 +#: application/views/interface_assets/header.php:516 #: application/views/lotw/import.php:3 application/views/lotw_views/index.php:9 #: application/views/lotw_views/upload_cert.php:3 #: application/views/user/edit.php:880 application/views/visitor/index.php:328 @@ -2209,7 +2209,7 @@ msgid "Invalid Station ID" msgstr "Ungültige Stations-ID" #: application/controllers/Oqrs.php:163 -#: application/views/interface_assets/header.php:504 +#: application/views/interface_assets/header.php:506 msgid "OQRS Requests" msgstr "OQRS-Anforderungen" @@ -2266,7 +2266,7 @@ msgstr "" "westlich von Greenwich." #: application/controllers/Qrz.php:204 -#: application/views/interface_assets/header.php:517 +#: application/views/interface_assets/header.php:519 msgid "QRZ Logbook" msgstr "QRZ-Logbuch" @@ -2314,7 +2314,7 @@ msgid "No callsign provided." msgstr "Kein Rufzeichen angegeben." #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:531 +#: application/views/interface_assets/header.php:533 msgid "Hardware Interfaces" msgstr "Hardware-Schnittstellen" @@ -2361,7 +2361,7 @@ msgid "Default (click to release)" msgstr "Standardgerät (klicken zum freigeben)" #: application/controllers/Radio.php:115 -#: application/controllers/Stationsetup.php:401 +#: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 @@ -2380,7 +2380,7 @@ msgid "Edit" msgstr "Bearbeiten" #: application/controllers/Radio.php:116 -#: application/controllers/Stationsetup.php:414 +#: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 #: application/views/club/permissions.php:353 @@ -2552,7 +2552,7 @@ msgid "Empty Logbook" msgstr "Leeres Logbuch" #: application/controllers/Station.php:38 -#: application/controllers/Stationsetup.php:251 +#: application/controllers/Stationsetup.php:252 msgid "Create Station Location" msgstr "Erstelle Stationsstandort" @@ -2585,54 +2585,55 @@ msgstr "Doppelter Stationsstandort:" msgid "Please check value for grid locator (%s)" msgstr "Bitte den Wert für den Locator (%s) überprüfen" -#: application/controllers/Stationsetup.php:60 +#: application/controllers/Stationsetup.php:61 #: application/views/interface_assets/header.php:441 -#: application/views/interface_assets/header.php:594 +#: application/views/interface_assets/header.php:474 +#: application/views/interface_assets/header.php:596 msgid "Station Setup" msgstr "Stationssetup" -#: application/controllers/Stationsetup.php:75 -#: application/controllers/Stationsetup.php:93 -#: application/controllers/Stationsetup.php:437 -#: application/controllers/Stationsetup.php:451 +#: application/controllers/Stationsetup.php:76 +#: application/controllers/Stationsetup.php:94 +#: application/controllers/Stationsetup.php:438 +#: application/controllers/Stationsetup.php:452 msgid "Not allowed" msgstr "Nicht erlaubt" -#: application/controllers/Stationsetup.php:97 -#: application/controllers/Stationsetup.php:111 -#: application/controllers/Stationsetup.php:130 -#: application/controllers/Stationsetup.php:143 -#: application/controllers/Stationsetup.php:156 -#: application/controllers/Stationsetup.php:177 -#: application/controllers/Stationsetup.php:478 +#: application/controllers/Stationsetup.php:98 +#: application/controllers/Stationsetup.php:112 +#: application/controllers/Stationsetup.php:131 +#: application/controllers/Stationsetup.php:144 +#: application/controllers/Stationsetup.php:157 +#: application/controllers/Stationsetup.php:178 +#: application/controllers/Stationsetup.php:479 #: application/views/qso/index.php:745 application/views/simplefle/index.php:39 #: application/views/widgets/on_air.php:181 #: application/views/widgets/on_air.php:243 msgid "Error" msgstr "Fehler" -#: application/controllers/Stationsetup.php:184 +#: application/controllers/Stationsetup.php:185 #: application/views/stationsetup/stationsetup.php:25 msgid "Create Station Logbook" msgstr "Erstelle Stationslogbuch" -#: application/controllers/Stationsetup.php:191 +#: application/controllers/Stationsetup.php:192 msgid "Edit container name" msgstr "Bearbeite Containernamen" -#: application/controllers/Stationsetup.php:206 +#: application/controllers/Stationsetup.php:207 msgid "Edit linked locations" msgstr "Verlinkte Stationsstandorte bearbeiten" -#: application/controllers/Stationsetup.php:215 +#: application/controllers/Stationsetup.php:216 msgid "Edit visitor site" msgstr "Besucherseite bearbeiten" -#: application/controllers/Stationsetup.php:237 +#: application/controllers/Stationsetup.php:238 msgid "Error. Link is already in use!" msgstr "Fehler. Link existiert bereits!" -#: application/controllers/Stationsetup.php:278 +#: application/controllers/Stationsetup.php:279 #: application/views/options/appearance.php:57 #: application/views/options/appearance.php:64 #: application/views/options/appearance.php:73 @@ -2650,19 +2651,19 @@ msgstr "Fehler. Link existiert bereits!" msgid "Disabled" msgstr "Ausgeschaltet" -#: application/controllers/Stationsetup.php:286 +#: application/controllers/Stationsetup.php:287 #: application/views/stationsetup/stationsetup.php:47 msgid "Set as Active Logbook" msgstr "Setze als aktives Logbuch" -#: application/controllers/Stationsetup.php:288 -#: application/views/interface_assets/header.php:592 +#: application/controllers/Stationsetup.php:289 +#: application/views/interface_assets/header.php:594 #: application/views/stationsetup/stationsetup.php:49 #: application/views/view_log/index.php:4 msgid "Active Logbook" msgstr "Aktives Logbuch" -#: application/controllers/Stationsetup.php:295 +#: application/controllers/Stationsetup.php:296 #: application/views/stationsetup/stationsetup.php:58 #, php-format msgid "" @@ -2672,16 +2673,16 @@ msgstr "" "Bist du sicher, dass du das Stationslogbuch %s löschen möchtest? Du musst " "alle hier verknüpften Standorte mit einem anderen Logbuch verknüpfen." -#: application/controllers/Stationsetup.php:305 +#: application/controllers/Stationsetup.php:306 #: application/views/stationsetup/stationsetup.php:68 msgid "View Public Page for Logbook: " msgstr "Zeige die öffentl. Seite für das Logbuch: " -#: application/controllers/Stationsetup.php:306 +#: application/controllers/Stationsetup.php:307 msgid "Are you sure you want to delete the public slug?" msgstr "Bist Du Dir sicher die Kurz-URL zu löschen?" -#: application/controllers/Stationsetup.php:391 +#: application/controllers/Stationsetup.php:392 #: application/views/stationsetup/stationsetup.php:161 #, php-format msgid "" @@ -2690,17 +2691,17 @@ msgstr "" "Bist du sicher, dass du das Stationsprofil %s als aktive Station festlegen " "möchtest?" -#: application/controllers/Stationsetup.php:391 +#: application/controllers/Stationsetup.php:392 #: application/views/stationsetup/stationsetup.php:161 msgid "Set Active" msgstr "Aktivieren" -#: application/controllers/Stationsetup.php:393 +#: application/controllers/Stationsetup.php:394 #: application/views/stationsetup/stationsetup.php:163 msgid "Active Station" msgstr "Aktive Station" -#: application/controllers/Stationsetup.php:396 +#: application/controllers/Stationsetup.php:397 #: application/views/interface_assets/header.php:131 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:86 #: application/views/simplefle/index.php:28 @@ -2710,26 +2711,26 @@ msgstr "Aktive Station" msgid "QSO" msgstr "QSO" -#: application/controllers/Stationsetup.php:405 +#: application/controllers/Stationsetup.php:406 #: application/views/stationsetup/stationsetup.php:192 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" "Bist du sicher, dass du alle QSOs an diesem Stationsstandort löschen " "möchtest?" -#: application/controllers/Stationsetup.php:405 +#: application/controllers/Stationsetup.php:406 #: application/views/stationsetup/stationsetup.php:142 #: application/views/stationsetup/stationsetup.php:194 msgid "Empty Log" msgstr "Lösche Log" -#: application/controllers/Stationsetup.php:409 +#: application/controllers/Stationsetup.php:410 #: application/views/stationsetup/stationsetup.php:135 #: application/views/stationsetup/stationsetup.php:175 msgid "Copy" msgstr "Kopieren" -#: application/controllers/Stationsetup.php:414 +#: application/controllers/Stationsetup.php:415 #: application/views/stationsetup/stationsetup.php:198 #, php-format msgid "" @@ -2739,7 +2740,7 @@ msgstr "" "Stationsstandort '%s' wirklich löschen? Alle QSOs in dem Profil werden " "mitgelöscht." -#: application/controllers/Stationsetup.php:421 +#: application/controllers/Stationsetup.php:422 #: application/views/qso/edit_ajax.php:236 #: application/views/station_profile/create.php:75 #: application/views/station_profile/edit.php:103 @@ -2748,11 +2749,11 @@ msgstr "" msgid "Please select one" msgstr "Bitte wähle eines" -#: application/controllers/Stationsetup.php:504 +#: application/controllers/Stationsetup.php:505 msgid "Edit Export Map options" msgstr "Bearbeite Export-Karte Optionen" -#: application/controllers/Stationsetup.php:526 +#: application/controllers/Stationsetup.php:527 msgid "Station location list" msgstr "Stationsstandorte-Liste" @@ -3242,7 +3243,7 @@ msgstr "Karte exportieren" #: application/controllers/Webadif.php:95 #: application/controllers/Webadif.php:142 -#: application/views/interface_assets/header.php:518 +#: application/views/interface_assets/header.php:520 msgid "QO-100 Dx Club Upload" msgstr "QO-100 DX Club Upload" @@ -3438,27 +3439,27 @@ msgstr "HRDlog: Keine QSOs gefunden zum hochladen für Stationsrufzeichen: " msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "HRDlog: Keine Stationsstandorte mit HRDlog Zugangsdaten gefunden." -#: application/models/Logbook_model.php:1341 +#: application/models/Logbook_model.php:1346 msgid "Station ID not allowed" msgstr "Stations ID nicht erlaubt" -#: application/models/Logbook_model.php:1346 +#: application/models/Logbook_model.php:1351 msgid "No Call given" msgstr "Kein Rufzeichen angegeben" -#: application/models/Logbook_model.php:1416 -#: application/models/Logbook_model.php:1618 +#: application/models/Logbook_model.php:1421 +#: application/models/Logbook_model.php:1623 msgid "DXCC has to be Numeric" msgstr "DXCC muss numerisch sein" -#: application/models/Logbook_model.php:4643 +#: application/models/Logbook_model.php:4648 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "Falscher Stationscall %s im QSO mit %s für das Stationsprofil %s: Nicht " "importiert" -#: application/models/Logbook_model.php:4657 +#: application/models/Logbook_model.php:4662 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3466,11 +3467,11 @@ msgstr "" "Du hast versucht, ein QSO mit ungültigem Datum zu importieren. Dieses QSO " "wurde nicht importiert. Es ist ungültig" -#: application/models/Logbook_model.php:4666 +#: application/models/Logbook_model.php:4671 msgid "QSO on" msgstr "QSO am" -#: application/models/Logbook_model.php:4666 +#: application/models/Logbook_model.php:4671 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3478,7 +3479,7 @@ msgstr "" "Du hast versucht, ein QSO ohne angegebenes Rufzeichen zu importieren. Dieses " "QSO wurde nicht importiert. Es ist ungültig" -#: application/models/Logbook_model.php:4715 +#: application/models/Logbook_model.php:4720 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3487,64 +3488,64 @@ msgstr "" "QSO um %s: Du hast versucht, ein QSO ohne Bandinformationen zu importieren. " "Dieses QSO wurde nicht importiert. Es ist ungültig" -#: application/models/Logbook_model.php:4980 +#: application/models/Logbook_model.php:4985 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "Das (Papier-)QSL-Empfangsdatum hat das falsche Format (JJJJMMDD)" -#: application/models/Logbook_model.php:4991 +#: application/models/Logbook_model.php:4996 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "Das (Papier-)QSL Sendedatum hat das falsche Format (JJJJMMTT)" -#: application/models/Logbook_model.php:5052 +#: application/models/Logbook_model.php:5057 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "Das Format des Clublog-Upload-Datums ist falsch (JJJJMMTT)" -#: application/models/Logbook_model.php:5427 +#: application/models/Logbook_model.php:5432 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Doublette zu" -#: application/models/Logbook_model.php:5492 -#: application/models/Logbook_model.php:5587 +#: application/models/Logbook_model.php:5497 +#: application/models/Logbook_model.php:5592 msgid "QSO could not be matched" msgstr "QSO konnte nicht gefunden werden" -#: application/models/Logbook_model.php:5500 +#: application/models/Logbook_model.php:5505 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "bestätigt durch LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:5506 +#: application/models/Logbook_model.php:5511 msgid "confirmed by award manager" msgstr "bestätigt durch Diplommananger" -#: application/models/Logbook_model.php:5510 +#: application/models/Logbook_model.php:5515 msgid "confirmed by cross-check of DCL data" msgstr "bestätigt durch Cross-Check von DCL-Daten" -#: application/models/Logbook_model.php:5514 +#: application/models/Logbook_model.php:5519 msgid "confirmation pending" msgstr "Bestätigung ausstehend" -#: application/models/Logbook_model.php:5517 +#: application/models/Logbook_model.php:5522 msgid "unconfirmed" msgstr "nicht bestätigt" -#: application/models/Logbook_model.php:5520 +#: application/models/Logbook_model.php:5525 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "unbekannt" -#: application/models/Logbook_model.php:5590 +#: application/models/Logbook_model.php:5595 msgid "POTA reference already in log" msgstr "POTA Referenz bereits im Log" -#: application/models/Logbook_model.php:5593 +#: application/models/Logbook_model.php:5598 msgid "QSO updated" msgstr "QSO aktualisiert" -#: application/models/Logbook_model.php:6400 +#: application/models/Logbook_model.php:6405 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -4990,6 +4991,7 @@ msgstr "Schaue im %s für Tipps zu möglichen Fehlern in der ADIF-Datei." #: application/views/adif/import_success.php:59 msgid "You might have ADIF errors. Please check the following information:" msgstr "" +"Es könnte sein, dass das ADIF fehlerhaft ist. Bitte prüfe folgende Hinweise:" #: application/views/adif/mark_lotw.php:12 #: application/views/hrdlog/mark_hrdlog.php:12 @@ -5078,7 +5080,7 @@ msgid "Save" msgstr "Speichern" #: application/views/api/index.php:8 -#: application/views/interface_assets/header.php:530 +#: application/views/interface_assets/header.php:532 msgid "API Keys" msgstr "API-Schlüssel" @@ -9339,7 +9341,7 @@ msgstr "ADIF-Name" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:572 +#: application/views/interface_assets/header.php:574 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:8 application/views/mode/index.php:55 @@ -11691,7 +11693,7 @@ msgstr "" "Einrichtungshinweise." #: application/views/interface_assets/footer.php:223 -#: application/views/interface_assets/header.php:533 +#: application/views/interface_assets/header.php:535 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "Versionsinfo" @@ -12082,80 +12084,80 @@ msgstr "Verwalte %s" msgid "No Clubstations available" msgstr "Keine Clubstationen verfügbar" -#: application/views/interface_assets/header.php:477 +#: application/views/interface_assets/header.php:479 msgid "Other Export Options" msgstr "Andere Export-Optionen" -#: application/views/interface_assets/header.php:485 +#: application/views/interface_assets/header.php:487 msgid "Cabrillo Export" msgstr "Cabrillo Export" -#: application/views/interface_assets/header.php:487 +#: application/views/interface_assets/header.php:489 msgid "EDI Export" msgstr "EDI Export" -#: application/views/interface_assets/header.php:509 +#: application/views/interface_assets/header.php:511 msgid "QSL Queue" msgstr "QSL-Warteschlange" -#: application/views/interface_assets/header.php:510 +#: application/views/interface_assets/header.php:512 msgid "Labels" msgstr "Etiketten" -#: application/views/interface_assets/header.php:512 +#: application/views/interface_assets/header.php:514 msgid "Third-Party Services" msgstr "Drittanbieter-Dienste" -#: application/views/interface_assets/header.php:515 +#: application/views/interface_assets/header.php:517 msgid "eQSL Import / Export" msgstr "eQSL Import/Export" -#: application/views/interface_assets/header.php:516 +#: application/views/interface_assets/header.php:518 msgid "HRDLog Logbook" msgstr "HRDLog Logbuch" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:521 msgid "Clublog Import / Export" msgstr "Clublog Import/Export" -#: application/views/interface_assets/header.php:522 +#: application/views/interface_assets/header.php:524 msgid "DCL Export" msgstr "DCL Export" -#: application/views/interface_assets/header.php:534 +#: application/views/interface_assets/header.php:536 #: application/views/logbookadvanced/index.php:831 msgid "Help" msgstr "Hilfe" -#: application/views/interface_assets/header.php:535 +#: application/views/interface_assets/header.php:537 msgid "Forum" msgstr "Forum" -#: application/views/interface_assets/header.php:539 +#: application/views/interface_assets/header.php:541 #, php-format msgid "Stop impersonate and switch back to %s" msgstr "Stoppe zu imitieren und wechsle zurück zu %s" -#: application/views/interface_assets/header.php:540 +#: application/views/interface_assets/header.php:542 #, php-format msgid "Switch back to %s" msgstr "Wechsle zurück zu %s" -#: application/views/interface_assets/header.php:544 +#: application/views/interface_assets/header.php:546 msgid "Logout" msgstr "Ausloggen" -#: application/views/interface_assets/header.php:552 +#: application/views/interface_assets/header.php:554 msgid "Select a Location" msgstr "Wähle einen Stationsstandort" -#: application/views/interface_assets/header.php:594 +#: application/views/interface_assets/header.php:596 msgid "You miss station-locations here? Go to stationsetup and fav them" msgstr "" "Du vermisst Stationsstandorte hier? Geh ins Stationssetup und markiere sie " "als Favoriten" -#: application/views/interface_assets/header.php:631 +#: application/views/interface_assets/header.php:633 msgid "Extras" msgstr "Extras" diff --git a/application/locale/el_GR/LC_MESSAGES/messages.po b/application/locale/el_GR/LC_MESSAGES/messages.po index 627f18f5d..c7530c40c 100644 --- a/application/locale/el_GR/LC_MESSAGES/messages.po +++ b/application/locale/el_GR/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-12-07 09:59+0000\n" +"POT-Creation-Date: 2025-12-08 10:52+0000\n" "PO-Revision-Date: 2025-08-19 17:14+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Greek \n" "Language-Team: Spanish \n" "Language-Team: Estonian \n" "Language-Team: Finnish \n" +"POT-Creation-Date: 2025-12-08 10:52+0000\n" +"PO-Revision-Date: 2025-12-06 14:07+0000\n" +"Last-Translator: JONCOUX Philippe \n" "Language-Team: French \n" "Language: fr_FR\n" @@ -116,7 +116,7 @@ msgstr "" #: application/controllers/Search.php:12 #: application/controllers/Simplefle.php:7 #: application/controllers/Station.php:17 -#: application/controllers/Stationsetup.php:15 +#: application/controllers/Stationsetup.php:16 #: application/controllers/Themes.php:17 #: application/controllers/Timeline.php:10 #: application/controllers/Timeplotter.php:11 @@ -210,7 +210,7 @@ msgstr "Carte des Activateurs" #: application/controllers/Adif.php:61 application/controllers/Adif.php:73 msgid "You're not allowed to access this functionality!" -msgstr "" +msgstr "Vous n'êtes pas autorisé à accéder à cette fonctionnalité !" #: application/controllers/Adif.php:80 msgid "valid date" @@ -221,7 +221,7 @@ msgid "date incorrect" msgstr "date incorrecte" #: application/controllers/Adif.php:283 -#: application/views/interface_assets/header.php:474 +#: application/views/interface_assets/header.php:476 msgid "ADIF Import / Export" msgstr "Importer / Exporter ADIF" @@ -566,7 +566,7 @@ msgstr "Locators confirmés par Carte QSL papier" #: application/controllers/Awards.php:1049 #: application/controllers/Awards.php:1085 msgid "Total Gridsquares worked" -msgstr "" +msgstr "Nombre total de carrés de la grille travaillés" #: application/controllers/Awards.php:1066 msgid "Fred Fish Memorial Award (FFMA)" @@ -619,7 +619,7 @@ msgstr "WPX" #: application/views/awards/pl_polska/index.php:37 #: application/views/interface_assets/header.php:270 msgid "\"Polska\" Award" -msgstr "" +msgstr "Prix « Polska »" #: application/controllers/Backup.php:15 application/views/backup/main.php:14 #: application/views/interface_assets/header.php:336 @@ -690,7 +690,7 @@ msgstr "Responsable Club" #: application/controllers/Club.php:24 msgid "Club Member ADIF" -msgstr "" +msgstr "Membre du club ADIF" #: application/controllers/Club.php:25 msgid "Club Member" @@ -894,7 +894,7 @@ msgid "Not running" msgstr "Ne fonctionne pas" #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:483 +#: application/views/interface_assets/header.php:485 msgid "SOTA CSV Export" msgstr "SOTA - Export CSV" @@ -1021,7 +1021,7 @@ msgid "and propagation" msgstr "et propagation" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:481 +#: application/views/interface_assets/header.php:483 msgid "DX Atlas Gridsquare Export" msgstr "Export Locator pour DX Atlas" @@ -1084,7 +1084,7 @@ msgstr "eQSL : Téléchargement des cartes/images" #: application/controllers/Eqsl.php:518 msgid "All eQSLs marked as uploaded" -msgstr "" +msgstr "Toutes les eQSL marquées comme téléchargées" #: application/controllers/Generic_qsl.php:18 msgid "Confirmations" @@ -1120,7 +1120,7 @@ msgid "No QSOs found to upload." msgstr "Aucun QSO trouvé à télécharger." #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:479 +#: application/views/interface_assets/header.php:481 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "KML - Export" @@ -1834,7 +1834,7 @@ msgid "Operator" msgstr "Opérateur" #: application/controllers/Logbook.php:1395 -#: application/controllers/Stationsetup.php:423 +#: application/controllers/Stationsetup.php:424 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/dxcc/index.php:291 #: application/views/awards/wae/index.php:175 @@ -1851,7 +1851,7 @@ msgstr "Opérateur" #: application/views/station_profile/edit.php:109 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/locationlist.php:54 +#: application/views/stationsetup/locationlist.php:58 #: application/views/stationsetup/stationsetup.php:156 #: application/views/timeline/index.php:216 #: application/views/timeplotter/index.php:33 @@ -1873,7 +1873,7 @@ msgstr "Recherche rapide" #: application/controllers/Lotw.php:64 application/controllers/Lotw.php:96 #: application/controllers/Lotw.php:136 application/views/adif/import.php:42 #: application/views/dcl_views/upload_cert.php:3 -#: application/views/interface_assets/header.php:514 +#: application/views/interface_assets/header.php:516 #: application/views/lotw/import.php:3 application/views/lotw_views/index.php:9 #: application/views/lotw_views/upload_cert.php:3 #: application/views/user/edit.php:880 application/views/visitor/index.php:328 @@ -2206,7 +2206,7 @@ msgid "Invalid Station ID" msgstr "ID de station invalide" #: application/controllers/Oqrs.php:163 -#: application/views/interface_assets/header.php:504 +#: application/views/interface_assets/header.php:506 msgid "OQRS Requests" msgstr "OQRS Demandes" @@ -2263,7 +2263,7 @@ msgstr "" "sont à l'ouest de Greenwich." #: application/controllers/Qrz.php:204 -#: application/views/interface_assets/header.php:517 +#: application/views/interface_assets/header.php:519 msgid "QRZ Logbook" msgstr "Journal QRZ" @@ -2311,7 +2311,7 @@ msgid "No callsign provided." msgstr "Aucun indicatif fourni." #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:531 +#: application/views/interface_assets/header.php:533 msgid "Hardware Interfaces" msgstr "Interfaces matérielles" @@ -2358,7 +2358,7 @@ msgid "Default (click to release)" msgstr "Par défaut (cliquez pour libérer)" #: application/controllers/Radio.php:115 -#: application/controllers/Stationsetup.php:401 +#: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 @@ -2377,7 +2377,7 @@ msgid "Edit" msgstr "Editer" #: application/controllers/Radio.php:116 -#: application/controllers/Stationsetup.php:414 +#: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 #: application/views/club/permissions.php:353 @@ -2549,7 +2549,7 @@ msgid "Empty Logbook" msgstr "Carnet vide" #: application/controllers/Station.php:38 -#: application/controllers/Stationsetup.php:251 +#: application/controllers/Stationsetup.php:252 msgid "Create Station Location" msgstr "Créer un emplacement de station" @@ -2582,54 +2582,55 @@ msgstr "Emplacement de la station en double :" msgid "Please check value for grid locator (%s)" msgstr "Merci de vérifier le grid locator (%s)" -#: application/controllers/Stationsetup.php:60 +#: application/controllers/Stationsetup.php:61 #: application/views/interface_assets/header.php:441 -#: application/views/interface_assets/header.php:594 +#: application/views/interface_assets/header.php:474 +#: application/views/interface_assets/header.php:596 msgid "Station Setup" msgstr "Configuration de la station" -#: application/controllers/Stationsetup.php:75 -#: application/controllers/Stationsetup.php:93 -#: application/controllers/Stationsetup.php:437 -#: application/controllers/Stationsetup.php:451 +#: application/controllers/Stationsetup.php:76 +#: application/controllers/Stationsetup.php:94 +#: application/controllers/Stationsetup.php:438 +#: application/controllers/Stationsetup.php:452 msgid "Not allowed" msgstr "Interdit" -#: application/controllers/Stationsetup.php:97 -#: application/controllers/Stationsetup.php:111 -#: application/controllers/Stationsetup.php:130 -#: application/controllers/Stationsetup.php:143 -#: application/controllers/Stationsetup.php:156 -#: application/controllers/Stationsetup.php:177 -#: application/controllers/Stationsetup.php:478 +#: application/controllers/Stationsetup.php:98 +#: application/controllers/Stationsetup.php:112 +#: application/controllers/Stationsetup.php:131 +#: application/controllers/Stationsetup.php:144 +#: application/controllers/Stationsetup.php:157 +#: application/controllers/Stationsetup.php:178 +#: application/controllers/Stationsetup.php:479 #: application/views/qso/index.php:745 application/views/simplefle/index.php:39 #: application/views/widgets/on_air.php:181 #: application/views/widgets/on_air.php:243 msgid "Error" msgstr "Erreur" -#: application/controllers/Stationsetup.php:184 +#: application/controllers/Stationsetup.php:185 #: application/views/stationsetup/stationsetup.php:25 msgid "Create Station Logbook" msgstr "Ajouter un nouveau" -#: application/controllers/Stationsetup.php:191 +#: application/controllers/Stationsetup.php:192 msgid "Edit container name" msgstr "Modifier le nom du conteneur" -#: application/controllers/Stationsetup.php:206 +#: application/controllers/Stationsetup.php:207 msgid "Edit linked locations" msgstr "Modifier les emplacements liés" -#: application/controllers/Stationsetup.php:215 +#: application/controllers/Stationsetup.php:216 msgid "Edit visitor site" msgstr "Modifier le site du visiteur" -#: application/controllers/Stationsetup.php:237 +#: application/controllers/Stationsetup.php:238 msgid "Error. Link is already in use!" msgstr "Erreur. Le lien est déjà utilisé !" -#: application/controllers/Stationsetup.php:278 +#: application/controllers/Stationsetup.php:279 #: application/views/options/appearance.php:57 #: application/views/options/appearance.php:64 #: application/views/options/appearance.php:73 @@ -2647,19 +2648,19 @@ msgstr "Erreur. Le lien est déjà utilisé !" msgid "Disabled" msgstr "Désactivé" -#: application/controllers/Stationsetup.php:286 +#: application/controllers/Stationsetup.php:287 #: application/views/stationsetup/stationsetup.php:47 msgid "Set as Active Logbook" msgstr "Activer ce journal" -#: application/controllers/Stationsetup.php:288 -#: application/views/interface_assets/header.php:592 +#: application/controllers/Stationsetup.php:289 +#: application/views/interface_assets/header.php:594 #: application/views/stationsetup/stationsetup.php:49 #: application/views/view_log/index.php:4 msgid "Active Logbook" msgstr "Journal actif" -#: application/controllers/Stationsetup.php:295 +#: application/controllers/Stationsetup.php:296 #: application/views/stationsetup/stationsetup.php:58 #, php-format msgid "" @@ -2670,16 +2671,16 @@ msgstr "" "Vous devez relier tous les emplacements associés ici à un autre journal de " "bord." -#: application/controllers/Stationsetup.php:305 +#: application/controllers/Stationsetup.php:306 #: application/views/stationsetup/stationsetup.php:68 msgid "View Public Page for Logbook: " msgstr "Voir la page publique pour le journal de bord : " -#: application/controllers/Stationsetup.php:306 +#: application/controllers/Stationsetup.php:307 msgid "Are you sure you want to delete the public slug?" msgstr "Êtes-vous sûr de vouloir supprimer le slug public ?" -#: application/controllers/Stationsetup.php:391 +#: application/controllers/Stationsetup.php:392 #: application/views/stationsetup/stationsetup.php:161 #, php-format msgid "" @@ -2687,17 +2688,17 @@ msgid "" msgstr "" "Êtes-vous sûr de vouloir faire du profil de station %s la station active ?" -#: application/controllers/Stationsetup.php:391 +#: application/controllers/Stationsetup.php:392 #: application/views/stationsetup/stationsetup.php:161 msgid "Set Active" msgstr "Définir actif" -#: application/controllers/Stationsetup.php:393 +#: application/controllers/Stationsetup.php:394 #: application/views/stationsetup/stationsetup.php:163 msgid "Active Station" msgstr "Station active" -#: application/controllers/Stationsetup.php:396 +#: application/controllers/Stationsetup.php:397 #: application/views/interface_assets/header.php:131 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:86 #: application/views/simplefle/index.php:28 @@ -2707,24 +2708,24 @@ msgstr "Station active" msgid "QSO" msgstr "QSO" -#: application/controllers/Stationsetup.php:405 +#: application/controllers/Stationsetup.php:406 #: application/views/stationsetup/stationsetup.php:192 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "Etes-vous certain de supprimer tous les QSO de cette station ?" -#: application/controllers/Stationsetup.php:405 +#: application/controllers/Stationsetup.php:406 #: application/views/stationsetup/stationsetup.php:142 #: application/views/stationsetup/stationsetup.php:194 msgid "Empty Log" msgstr "Journal vide" -#: application/controllers/Stationsetup.php:409 +#: application/controllers/Stationsetup.php:410 #: application/views/stationsetup/stationsetup.php:135 #: application/views/stationsetup/stationsetup.php:175 msgid "Copy" msgstr "Copier" -#: application/controllers/Stationsetup.php:414 +#: application/controllers/Stationsetup.php:415 #: application/views/stationsetup/stationsetup.php:198 #, php-format msgid "" @@ -2734,7 +2735,7 @@ msgstr "" "Etes-vous certain de supprimer le profil de station '%s' ? Cela supprimera " "tous les QSO de cette station." -#: application/controllers/Stationsetup.php:421 +#: application/controllers/Stationsetup.php:422 #: application/views/qso/edit_ajax.php:236 #: application/views/station_profile/create.php:75 #: application/views/station_profile/edit.php:103 @@ -2743,11 +2744,11 @@ msgstr "" msgid "Please select one" msgstr "Veuillez en choisir un" -#: application/controllers/Stationsetup.php:504 +#: application/controllers/Stationsetup.php:505 msgid "Edit Export Map options" msgstr "Modifier les options d'exportation de la carte" -#: application/controllers/Stationsetup.php:526 +#: application/controllers/Stationsetup.php:527 msgid "Station location list" msgstr "Liste des emplacements des stations" @@ -3240,7 +3241,7 @@ msgstr "Exporter la carte" #: application/controllers/Webadif.php:95 #: application/controllers/Webadif.php:142 -#: application/views/interface_assets/header.php:518 +#: application/views/interface_assets/header.php:520 msgid "QO-100 Dx Club Upload" msgstr "Télécharger QO-100 Dx Club" @@ -3286,14 +3287,16 @@ msgstr "Erreur QRZCQ" #: application/libraries/Cbr_parser.php:160 msgid "Broken CBR file - no valid exchange or callsigns found" msgstr "" +"Fichier CBR corrompu - aucun indicatif d'échange ou indicatif d'appel valide " +"trouvé" #: application/libraries/Cbr_parser.php:137 msgid "Broken CBR file - no QSO data found." -msgstr "" +msgstr "Fichier CBR corrompu - aucune donnée QSO trouvée." #: application/libraries/Cbr_parser.php:147 msgid "Broken CBR file - incomplete header found." -msgstr "" +msgstr "Fichier CBR corrompu - en-tête incomplet trouvé." #: application/libraries/Subdivisions.php:31 msgctxt "Division Name (States in various countries)." @@ -3437,27 +3440,27 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "HRDlog : Aucun profil de station avec les identifiants HRDlog trouvé." -#: application/models/Logbook_model.php:1341 +#: application/models/Logbook_model.php:1346 msgid "Station ID not allowed" msgstr "ID de station non autorisé" -#: application/models/Logbook_model.php:1346 +#: application/models/Logbook_model.php:1351 msgid "No Call given" msgstr "Aucun indicatif n'a été donné" -#: application/models/Logbook_model.php:1416 -#: application/models/Logbook_model.php:1618 +#: application/models/Logbook_model.php:1421 +#: application/models/Logbook_model.php:1623 msgid "DXCC has to be Numeric" msgstr "Le DXCC doit être un nombre" -#: application/models/Logbook_model.php:4643 +#: application/models/Logbook_model.php:4648 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "Indicatif d'appel de station incorrect %s lors de l'importation du QSO avec " "%s pour %s : IGNORÉ" -#: application/models/Logbook_model.php:4657 +#: application/models/Logbook_model.php:4662 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3465,11 +3468,11 @@ msgstr "" "Vous avez tenté d'importer un QSO sans date valide. Ce QSO n'a pas pu être " "importé. Il est invalide" -#: application/models/Logbook_model.php:4666 +#: application/models/Logbook_model.php:4671 msgid "QSO on" msgstr "QSO en" -#: application/models/Logbook_model.php:4666 +#: application/models/Logbook_model.php:4671 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3477,7 +3480,7 @@ msgstr "" "Vous avez essayé d'importer un QSO sans indicatif donné. Ce QSO n'a pas été " "importé. Il est invalide" -#: application/models/Logbook_model.php:4715 +#: application/models/Logbook_model.php:4720 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3486,64 +3489,64 @@ msgstr "" "QSO sur %s : Vous avez essayé d'importer un QSO sans bande spécifiée. Ce QSO " "n'a pas été importé. Il est invalide" -#: application/models/Logbook_model.php:4980 +#: application/models/Logbook_model.php:4985 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "la date de réception de la QSL est invalide (AAAAMMJJ)" -#: application/models/Logbook_model.php:4991 +#: application/models/Logbook_model.php:4996 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "la date de la QSL est invalide (AAAAMMJJ)" -#: application/models/Logbook_model.php:5052 +#: application/models/Logbook_model.php:5057 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "la clublog_qso_upload_date est invalide (AAAAMMJJ)" -#: application/models/Logbook_model.php:5427 +#: application/models/Logbook_model.php:5432 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Dupliquer pour" -#: application/models/Logbook_model.php:5492 -#: application/models/Logbook_model.php:5587 +#: application/models/Logbook_model.php:5497 +#: application/models/Logbook_model.php:5592 msgid "QSO could not be matched" msgstr "pas de correspondance pour le QSO" -#: application/models/Logbook_model.php:5500 +#: application/models/Logbook_model.php:5505 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "confirmé par LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:5506 +#: application/models/Logbook_model.php:5511 msgid "confirmed by award manager" msgstr "confirmé par le manager de l'Award" -#: application/models/Logbook_model.php:5510 +#: application/models/Logbook_model.php:5515 msgid "confirmed by cross-check of DCL data" msgstr "confirmé par recoupement des données DCL" -#: application/models/Logbook_model.php:5514 +#: application/models/Logbook_model.php:5519 msgid "confirmation pending" msgstr "confirmation en attente" -#: application/models/Logbook_model.php:5517 +#: application/models/Logbook_model.php:5522 msgid "unconfirmed" msgstr "non confirmé" -#: application/models/Logbook_model.php:5520 +#: application/models/Logbook_model.php:5525 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "inconnu" -#: application/models/Logbook_model.php:5590 +#: application/models/Logbook_model.php:5595 msgid "POTA reference already in log" msgstr "Les références du POTA sont déjà dans le log" -#: application/models/Logbook_model.php:5593 +#: application/models/Logbook_model.php:5598 msgid "QSO updated" msgstr "QSO mis à jour" -#: application/models/Logbook_model.php:6400 +#: application/models/Logbook_model.php:6405 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -4893,6 +4896,8 @@ msgid "" "The CBR file contains a TRX number at the end of each QSO line (for multi-op " "stations)" msgstr "" +"Le fichier CBR contient un numéro TRX à la fin de chaque ligne QSO (pour les " +"stations multi opérateurs)." #: application/views/adif/import.php:460 msgid "" @@ -5078,7 +5083,7 @@ msgid "Save" msgstr "Enregistrer" #: application/views/api/index.php:8 -#: application/views/interface_assets/header.php:530 +#: application/views/interface_assets/header.php:532 msgid "API Keys" msgstr "Clés API" @@ -5494,7 +5499,7 @@ msgstr "Voir la carte" #: application/views/gridmap/index.php:28 #: application/views/logbookadvanced/index.php:276 msgid "Date Presets" -msgstr "" +msgstr "Préréglages de date" #: application/views/awards/cq/index.php:57 #: application/views/awards/dxcc/index.php:53 @@ -5513,48 +5518,48 @@ msgstr "Aujourd'hui" #: application/views/gridmap/index.php:32 #: application/views/logbookadvanced/index.php:279 msgid "Yesterday" -msgstr "" +msgstr "Hier" #: application/views/awards/cq/index.php:59 #: application/views/awards/dxcc/index.php:55 #: application/views/gridmap/index.php:33 #: application/views/logbookadvanced/index.php:280 msgid "Last 7 Days" -msgstr "" +msgstr "7 derniers jours" #: application/views/awards/cq/index.php:60 #: application/views/awards/dxcc/index.php:56 #: application/views/gridmap/index.php:34 #: application/views/logbookadvanced/index.php:281 msgid "Last 30 Days" -msgstr "" +msgstr "30 derniers jours" #: application/views/awards/cq/index.php:61 #: application/views/awards/dxcc/index.php:57 #: application/views/gridmap/index.php:35 #: application/views/logbookadvanced/index.php:282 msgid "This Month" -msgstr "" +msgstr "Ce mois-ci" #: application/views/awards/cq/index.php:62 #: application/views/awards/dxcc/index.php:58 #: application/views/gridmap/index.php:36 #: application/views/logbookadvanced/index.php:283 msgid "Last Month" -msgstr "" +msgstr "Mois dernier" #: application/views/awards/cq/index.php:63 #: application/views/awards/dxcc/index.php:59 #: application/views/gridmap/index.php:37 #: application/views/logbookadvanced/index.php:284 msgid "This Year" -msgstr "" +msgstr "Cette année" #: application/views/awards/cq/index.php:64 #: application/views/awards/dxcc/index.php:60 #: application/views/logbookadvanced/index.php:285 msgid "Last Year" -msgstr "" +msgstr "L'année dernière" #: application/views/awards/cq/index.php:65 #: application/views/awards/dxcc/index.php:61 @@ -6508,6 +6513,9 @@ msgid "" "contacts with stations operating from all 16 Polish voivodeships " "(provinces). Valid from January 1, 1999." msgstr "" +"Le prix Polska est décerné par l'Union polonaise des radioamateurs (PZK) " +"pour les contacts avec des stations opérant depuis les 16 voïvodies " +"(provinces) polonaises. Valable à compter du 1er janvier 1999." #: application/views/awards/pl_polska/index.php:39 msgid "" @@ -6515,11 +6523,15 @@ msgid "" "(RTTY/PSK/FSK), and individual bands (160M-2M). Classes: Basic (1 QSO/voiv), " "Bronze (3), Silver (7), Gold (12). All 16 voivodeships required." msgstr "" +"Catégories de récompenses : Mixte (tous modes/bandes), Téléphonie (BLU/AM/FM/" +"SSTV), CW, Numérique (RTTY/PSK/FSK) et bandes individuelles (160 m à 2 m). " +"Niveaux : Débutant (1 QSO/voïvodie), Bronze (3), Argent (7), Or (12). Les " +"16 voïvodies sont requises." #: application/views/awards/pl_polska/index.php:40 #, php-format msgid "Official rules and information: %s" -msgstr "" +msgstr "Règles et informations officielles : %s" #: application/views/awards/pl_polska/index.php:40 msgid "PZK Polska Award Rules" @@ -9332,7 +9344,7 @@ msgstr "Nom ADIF" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:572 +#: application/views/interface_assets/header.php:574 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:8 application/views/mode/index.php:55 @@ -11699,7 +11711,7 @@ msgstr "" "obtenir les instructions d'installation." #: application/views/interface_assets/footer.php:223 -#: application/views/interface_assets/header.php:533 +#: application/views/interface_assets/header.php:535 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "Informations sur la version" @@ -12084,80 +12096,80 @@ msgstr "Gérer %s" msgid "No Clubstations available" msgstr "Aucun club disponible" -#: application/views/interface_assets/header.php:477 +#: application/views/interface_assets/header.php:479 msgid "Other Export Options" msgstr "Autres options d’export" -#: application/views/interface_assets/header.php:485 +#: application/views/interface_assets/header.php:487 msgid "Cabrillo Export" msgstr "Cabrillo - Export" -#: application/views/interface_assets/header.php:487 +#: application/views/interface_assets/header.php:489 msgid "EDI Export" msgstr "EDI Exportation" -#: application/views/interface_assets/header.php:509 +#: application/views/interface_assets/header.php:511 msgid "QSL Queue" msgstr "File d'attente des QSL" -#: application/views/interface_assets/header.php:510 +#: application/views/interface_assets/header.php:512 msgid "Labels" msgstr "Libellés" -#: application/views/interface_assets/header.php:512 +#: application/views/interface_assets/header.php:514 msgid "Third-Party Services" msgstr "Services tiers" -#: application/views/interface_assets/header.php:515 +#: application/views/interface_assets/header.php:517 msgid "eQSL Import / Export" msgstr "eQSL Importation/Exportation" -#: application/views/interface_assets/header.php:516 +#: application/views/interface_assets/header.php:518 msgid "HRDLog Logbook" msgstr "Journal de trafic HRDLog" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:521 msgid "Clublog Import / Export" msgstr "Clublog Importation/Exportation" -#: application/views/interface_assets/header.php:522 +#: application/views/interface_assets/header.php:524 msgid "DCL Export" msgstr "DCL Exportation" -#: application/views/interface_assets/header.php:534 +#: application/views/interface_assets/header.php:536 #: application/views/logbookadvanced/index.php:831 msgid "Help" msgstr "Aide" -#: application/views/interface_assets/header.php:535 +#: application/views/interface_assets/header.php:537 msgid "Forum" msgstr "Forum" -#: application/views/interface_assets/header.php:539 +#: application/views/interface_assets/header.php:541 #, php-format msgid "Stop impersonate and switch back to %s" msgstr "Arrêtez d'usurper l'identité et revenez à %s" -#: application/views/interface_assets/header.php:540 +#: application/views/interface_assets/header.php:542 #, php-format msgid "Switch back to %s" msgstr "Revenir à %s" -#: application/views/interface_assets/header.php:544 +#: application/views/interface_assets/header.php:546 msgid "Logout" msgstr "Déconnexion" -#: application/views/interface_assets/header.php:552 +#: application/views/interface_assets/header.php:554 msgid "Select a Location" msgstr "Choisir un emplacement" -#: application/views/interface_assets/header.php:594 +#: application/views/interface_assets/header.php:596 msgid "You miss station-locations here? Go to stationsetup and fav them" msgstr "" "L'emplacement des stations vous manque ? Rendez-vous dans la configuration " "des stations et ajoutez-les à vos favoris" -#: application/views/interface_assets/header.php:631 +#: application/views/interface_assets/header.php:633 msgid "Extras" msgstr "Suppléments" diff --git a/application/locale/hr/LC_MESSAGES/messages.po b/application/locale/hr/LC_MESSAGES/messages.po index 923b99a3b..de67737cc 100644 --- a/application/locale/hr/LC_MESSAGES/messages.po +++ b/application/locale/hr/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-12-07 09:59+0000\n" +"POT-Creation-Date: 2025-12-08 10:52+0000\n" "PO-Revision-Date: 2024-11-23 16:17+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Croatian \n" "Language-Team: Hungarian \n" "Language-Team: Armenian \n" "Language-Team: Italian \n" @@ -19,7 +19,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.13.2\n" +"X-Generator: Weblate 5.14\n" #: application/controllers/Accumulated.php:12 #: application/controllers/Activators.php:13 @@ -108,7 +108,7 @@ msgstr "" #: application/controllers/Search.php:12 #: application/controllers/Simplefle.php:7 #: application/controllers/Station.php:17 -#: application/controllers/Stationsetup.php:15 +#: application/controllers/Stationsetup.php:16 #: application/controllers/Themes.php:17 #: application/controllers/Timeline.php:10 #: application/controllers/Timeplotter.php:11 @@ -202,7 +202,7 @@ msgstr "Mappa attivatori" #: application/controllers/Adif.php:61 application/controllers/Adif.php:73 msgid "You're not allowed to access this functionality!" -msgstr "" +msgstr "Non sei autorizzato ad accedere a questa funzionalità!" #: application/controllers/Adif.php:80 msgid "valid date" @@ -213,7 +213,7 @@ msgid "date incorrect" msgstr "data incorretta" #: application/controllers/Adif.php:283 -#: application/views/interface_assets/header.php:474 +#: application/views/interface_assets/header.php:476 msgid "ADIF Import / Export" msgstr "Importa / Esporta ADIF" @@ -558,7 +558,7 @@ msgstr "Locatori confermati via QSL cartacea" #: application/controllers/Awards.php:1049 #: application/controllers/Awards.php:1085 msgid "Total Gridsquares worked" -msgstr "" +msgstr "Totale locatori collegati" #: application/controllers/Awards.php:1066 msgid "Fred Fish Memorial Award (FFMA)" @@ -605,13 +605,13 @@ msgstr "73 on 73" #: application/controllers/Awards.php:2340 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" -msgstr "" +msgstr "WPX" #: application/controllers/Awards.php:2482 #: application/views/awards/pl_polska/index.php:37 #: application/views/interface_assets/header.php:270 msgid "\"Polska\" Award" -msgstr "" +msgstr "Premio \"Polska\"" #: application/controllers/Backup.php:15 application/views/backup/main.php:14 #: application/views/interface_assets/header.php:336 @@ -682,7 +682,7 @@ msgstr "Coordinatore di stazione" #: application/controllers/Club.php:24 msgid "Club Member ADIF" -msgstr "" +msgstr "Membro del club ADIF" #: application/controllers/Club.php:25 msgid "Club Member" @@ -885,7 +885,7 @@ msgid "Not running" msgstr "Non attivo" #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:483 +#: application/views/interface_assets/header.php:485 msgid "SOTA CSV Export" msgstr "Esporta CSV SOTA" @@ -1011,7 +1011,7 @@ msgid "and propagation" msgstr "e propagazione" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:481 +#: application/views/interface_assets/header.php:483 msgid "DX Atlas Gridsquare Export" msgstr "Esporta Locatore DX Atlas" @@ -1074,7 +1074,7 @@ msgstr "Scarica immagine da eQSL" #: application/controllers/Eqsl.php:518 msgid "All eQSLs marked as uploaded" -msgstr "" +msgstr "Tutte le eQSL contrassegnate come caricate" #: application/controllers/Generic_qsl.php:18 msgid "Confirmations" @@ -1110,7 +1110,7 @@ msgid "No QSOs found to upload." msgstr "Nessun QSO da caricare." #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:479 +#: application/views/interface_assets/header.php:481 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "Esportazione KML" @@ -1823,7 +1823,7 @@ msgid "Operator" msgstr "Operatore" #: application/controllers/Logbook.php:1395 -#: application/controllers/Stationsetup.php:423 +#: application/controllers/Stationsetup.php:424 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/dxcc/index.php:291 #: application/views/awards/wae/index.php:175 @@ -1840,7 +1840,7 @@ msgstr "Operatore" #: application/views/station_profile/edit.php:109 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/locationlist.php:54 +#: application/views/stationsetup/locationlist.php:58 #: application/views/stationsetup/stationsetup.php:156 #: application/views/timeline/index.php:216 #: application/views/timeplotter/index.php:33 @@ -1862,7 +1862,7 @@ msgstr "Ricerca rapida" #: application/controllers/Lotw.php:64 application/controllers/Lotw.php:96 #: application/controllers/Lotw.php:136 application/views/adif/import.php:42 #: application/views/dcl_views/upload_cert.php:3 -#: application/views/interface_assets/header.php:514 +#: application/views/interface_assets/header.php:516 #: application/views/lotw/import.php:3 application/views/lotw_views/index.php:9 #: application/views/lotw_views/upload_cert.php:3 #: application/views/user/edit.php:880 application/views/visitor/index.php:328 @@ -1980,42 +1980,44 @@ msgid "" "Duplicate note title for this category and user - not allowed for Contacts " "category." msgstr "" +"Titolo della nota duplicato per questa categoria e utente - non consentito " +"per la categoria Contatti." #: application/controllers/Notes.php:283 msgid "Not found or not allowed" -msgstr "" +msgstr "Non trovato o non consentito" #: application/controllers/Notes.php:298 msgid "Not found" -msgstr "" +msgstr "Non trovato" #: application/controllers/Notes.php:314 msgid "Category and title are required" -msgstr "" +msgstr "Categoria e titolo sono richiesti" #: application/controllers/Notes.php:328 msgid "Note not found or not allowed" -msgstr "" +msgstr "Nota non trovata o non consentita" #: application/controllers/Notes.php:335 msgid "Note deleted" -msgstr "" +msgstr "Nota cancellata" #: application/controllers/Notes.php:339 msgid "Note updated" -msgstr "" +msgstr "Nota aggiornata" #: application/controllers/Notes.php:344 msgid "Cannot create empty note" -msgstr "" +msgstr "Impossibile creare una nota vuota" #: application/controllers/Notes.php:352 msgid "A note with this callsign already exists" -msgstr "" +msgstr "Esiste già una nota per questo nominativo" #: application/controllers/Notes.php:362 msgid "Note created" -msgstr "" +msgstr "Nota creata" #: application/controllers/Notes.php:376 application/controllers/Notes.php:400 #, php-format @@ -2023,12 +2025,16 @@ msgid "" "Contacts note title must be a callsign only, without prefix/suffix. " "Suggested: %s" msgstr "" +"Il titolo della nota contatti deve essere solo un nominativo, senza prefisso/" +"suffisso. Suggerito: %s" #: application/controllers/Notes.php:382 application/controllers/Notes.php:408 msgid "" "A note with this callsign already exists in your Contacts. Please enter a " "unique callsign." msgstr "" +"Una nota con questo nominativo esiste già nei tuoi contatti. Inserisci un " +"nominativo univoco." #: application/controllers/Options.php:23 #: application/controllers/Options.php:33 @@ -2188,7 +2194,7 @@ msgid "Invalid Station ID" msgstr "ID di stazione non valido" #: application/controllers/Oqrs.php:163 -#: application/views/interface_assets/header.php:504 +#: application/views/interface_assets/header.php:506 msgid "OQRS Requests" msgstr "Richieste OQRS" @@ -2245,7 +2251,7 @@ msgstr "" "negative si trovano a ovest di Greenwich." #: application/controllers/Qrz.php:204 -#: application/views/interface_assets/header.php:517 +#: application/views/interface_assets/header.php:519 msgid "QRZ Logbook" msgstr "Registro QRZ" @@ -2293,7 +2299,7 @@ msgid "No callsign provided." msgstr "Nessun nominativo fornito." #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:531 +#: application/views/interface_assets/header.php:533 msgid "Hardware Interfaces" msgstr "Interfacce hardware" @@ -2340,7 +2346,7 @@ msgid "Default (click to release)" msgstr "Predefinito (premi per rimuovere)" #: application/controllers/Radio.php:115 -#: application/controllers/Stationsetup.php:401 +#: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 @@ -2359,7 +2365,7 @@ msgid "Edit" msgstr "Modifica" #: application/controllers/Radio.php:116 -#: application/controllers/Stationsetup.php:414 +#: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 #: application/views/club/permissions.php:353 @@ -2531,7 +2537,7 @@ msgid "Empty Logbook" msgstr "Svuota registro di stazione" #: application/controllers/Station.php:38 -#: application/controllers/Stationsetup.php:251 +#: application/controllers/Stationsetup.php:252 msgid "Create Station Location" msgstr "Crea postazione" @@ -2564,54 +2570,55 @@ msgstr "Duplica postazione:" msgid "Please check value for grid locator (%s)" msgstr "Prego verifica il locatore (%s)" -#: application/controllers/Stationsetup.php:60 +#: application/controllers/Stationsetup.php:61 #: application/views/interface_assets/header.php:441 -#: application/views/interface_assets/header.php:594 +#: application/views/interface_assets/header.php:474 +#: application/views/interface_assets/header.php:596 msgid "Station Setup" msgstr "Impostazioni stazione" -#: application/controllers/Stationsetup.php:75 -#: application/controllers/Stationsetup.php:93 -#: application/controllers/Stationsetup.php:437 -#: application/controllers/Stationsetup.php:451 +#: application/controllers/Stationsetup.php:76 +#: application/controllers/Stationsetup.php:94 +#: application/controllers/Stationsetup.php:438 +#: application/controllers/Stationsetup.php:452 msgid "Not allowed" msgstr "Non permesso" -#: application/controllers/Stationsetup.php:97 -#: application/controllers/Stationsetup.php:111 -#: application/controllers/Stationsetup.php:130 -#: application/controllers/Stationsetup.php:143 -#: application/controllers/Stationsetup.php:156 -#: application/controllers/Stationsetup.php:177 -#: application/controllers/Stationsetup.php:478 +#: application/controllers/Stationsetup.php:98 +#: application/controllers/Stationsetup.php:112 +#: application/controllers/Stationsetup.php:131 +#: application/controllers/Stationsetup.php:144 +#: application/controllers/Stationsetup.php:157 +#: application/controllers/Stationsetup.php:178 +#: application/controllers/Stationsetup.php:479 #: application/views/qso/index.php:745 application/views/simplefle/index.php:39 #: application/views/widgets/on_air.php:181 #: application/views/widgets/on_air.php:243 msgid "Error" msgstr "Errore" -#: application/controllers/Stationsetup.php:184 +#: application/controllers/Stationsetup.php:185 #: application/views/stationsetup/stationsetup.php:25 msgid "Create Station Logbook" msgstr "Crea registro di stazione" -#: application/controllers/Stationsetup.php:191 +#: application/controllers/Stationsetup.php:192 msgid "Edit container name" msgstr "Modifica nome contenitore" -#: application/controllers/Stationsetup.php:206 +#: application/controllers/Stationsetup.php:207 msgid "Edit linked locations" msgstr "Modifica postazioni collegate" -#: application/controllers/Stationsetup.php:215 +#: application/controllers/Stationsetup.php:216 msgid "Edit visitor site" msgstr "Modifica sito visitatori" -#: application/controllers/Stationsetup.php:237 +#: application/controllers/Stationsetup.php:238 msgid "Error. Link is already in use!" msgstr "Errore. Collegamento già in uso!" -#: application/controllers/Stationsetup.php:278 +#: application/controllers/Stationsetup.php:279 #: application/views/options/appearance.php:57 #: application/views/options/appearance.php:64 #: application/views/options/appearance.php:73 @@ -2629,53 +2636,56 @@ msgstr "Errore. Collegamento già in uso!" msgid "Disabled" msgstr "Disabilitato" -#: application/controllers/Stationsetup.php:286 +#: application/controllers/Stationsetup.php:287 #: application/views/stationsetup/stationsetup.php:47 msgid "Set as Active Logbook" msgstr "Imposta come registro attivo" -#: application/controllers/Stationsetup.php:288 -#: application/views/interface_assets/header.php:592 +#: application/controllers/Stationsetup.php:289 +#: application/views/interface_assets/header.php:594 #: application/views/stationsetup/stationsetup.php:49 #: application/views/view_log/index.php:4 msgid "Active Logbook" msgstr "Registro attivo" -#: application/controllers/Stationsetup.php:295 +#: application/controllers/Stationsetup.php:296 #: application/views/stationsetup/stationsetup.php:58 #, php-format msgid "" "Are you sure you want to delete the station logbook %s? You must re-link any " "locations linked here to another logbook." msgstr "" +"Sei sicuro di voler eliminare il registro delle stazioni %s? Devi " +"ricollegare qualsiasi località collegata qui a un altro registro." -#: application/controllers/Stationsetup.php:305 +#: application/controllers/Stationsetup.php:306 #: application/views/stationsetup/stationsetup.php:68 msgid "View Public Page for Logbook: " msgstr "Visualizza pagina pubblica del registro di stazione: " -#: application/controllers/Stationsetup.php:306 +#: application/controllers/Stationsetup.php:307 msgid "Are you sure you want to delete the public slug?" msgstr "Sei sicuro di voler eliminare questo identificativo pubblico?" -#: application/controllers/Stationsetup.php:391 +#: application/controllers/Stationsetup.php:392 #: application/views/stationsetup/stationsetup.php:161 #, php-format msgid "" "Are you sure you want to make the station profile %s the active station?" msgstr "" +"Sei sicuro di voler rendere il profilo della stazione %s la stazione attiva?" -#: application/controllers/Stationsetup.php:391 +#: application/controllers/Stationsetup.php:392 #: application/views/stationsetup/stationsetup.php:161 msgid "Set Active" msgstr "Imposta come attiva" -#: application/controllers/Stationsetup.php:393 +#: application/controllers/Stationsetup.php:394 #: application/views/stationsetup/stationsetup.php:163 msgid "Active Station" msgstr "Stazione attiva" -#: application/controllers/Stationsetup.php:396 +#: application/controllers/Stationsetup.php:397 #: application/views/interface_assets/header.php:131 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:86 #: application/views/simplefle/index.php:28 @@ -2685,26 +2695,26 @@ msgstr "Stazione attiva" msgid "QSO" msgstr "QSO" -#: application/controllers/Stationsetup.php:405 +#: application/controllers/Stationsetup.php:406 #: application/views/stationsetup/stationsetup.php:192 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" "Sei sicuro di voler eliminare tutti i QSO all'interno di questo profilo " "stazione?" -#: application/controllers/Stationsetup.php:405 +#: application/controllers/Stationsetup.php:406 #: application/views/stationsetup/stationsetup.php:142 #: application/views/stationsetup/stationsetup.php:194 msgid "Empty Log" msgstr "Svuota log" -#: application/controllers/Stationsetup.php:409 +#: application/controllers/Stationsetup.php:410 #: application/views/stationsetup/stationsetup.php:135 #: application/views/stationsetup/stationsetup.php:175 msgid "Copy" msgstr "Copia" -#: application/controllers/Stationsetup.php:414 +#: application/controllers/Stationsetup.php:415 #: application/views/stationsetup/stationsetup.php:198 #, php-format msgid "" @@ -2714,7 +2724,7 @@ msgstr "" "Sei sicuro di voler eliminare il profilo della stazione ‘%s’? Questa " "operazione eliminerà tutti i QSO presenti in questo profilo della stazione." -#: application/controllers/Stationsetup.php:421 +#: application/controllers/Stationsetup.php:422 #: application/views/qso/edit_ajax.php:236 #: application/views/station_profile/create.php:75 #: application/views/station_profile/edit.php:103 @@ -2723,13 +2733,13 @@ msgstr "" msgid "Please select one" msgstr "Per favore seleziona uno" -#: application/controllers/Stationsetup.php:504 +#: application/controllers/Stationsetup.php:505 msgid "Edit Export Map options" msgstr "Modifica opzioni di esportazione mappa" -#: application/controllers/Stationsetup.php:526 +#: application/controllers/Stationsetup.php:527 msgid "Station location list" -msgstr "" +msgstr "Elenco delle posizioni delle stazioni" #: application/controllers/Statistics.php:26 #: application/views/interface_assets/header.php:154 @@ -2860,11 +2870,11 @@ msgstr "Aggiornamento WWFF fallito. Risultato: " #: application/controllers/Update.php:544 msgid "HAMqsl Update complete. Result: " -msgstr "" +msgstr "aggiornamento HAMqsl completato. Risultato: " #: application/controllers/Update.php:546 msgid "HAMqsl Update failed. Result: " -msgstr "" +msgstr "Aggiornamento HAMqsl fallito. Risultato: " #: application/controllers/Update.php:579 msgid "POTA Update complete. Result: " @@ -2892,11 +2902,11 @@ msgstr "Aggiornamento di Hams of Note" #: application/controllers/Update.php:707 msgid "VUCC Grid file update complete. Result: " -msgstr "" +msgstr "VUCC Grid file aggiornato. Risultato: " #: application/controllers/Update.php:709 msgid "VUCC Grid file update failed. Result: " -msgstr "" +msgstr "Aggiornamento file Grid VUCC fallito. Risultato: " #: application/controllers/User.php:50 #: application/views/interface_assets/header.php:324 @@ -2972,15 +2982,15 @@ msgstr "Elimina utente" #: application/controllers/User.php:1077 msgid "User deleted" -msgstr "" +msgstr "Utente eliminato" #: application/controllers/User.php:1080 msgid "Could not delete user!" -msgstr "" +msgstr "Impossibile eliminare l'utente!" #: application/controllers/User.php:1080 msgid "Database error:" -msgstr "" +msgstr "Errore del database:" #: application/controllers/User.php:1105 msgid "" @@ -3219,7 +3229,7 @@ msgstr "Esporta mappa" #: application/controllers/Webadif.php:95 #: application/controllers/Webadif.php:142 -#: application/views/interface_assets/header.php:518 +#: application/views/interface_assets/header.php:520 msgid "QO-100 Dx Club Upload" msgstr "Caricamento QO-100 Dx Club" @@ -3264,15 +3274,15 @@ msgstr "Errore QRZCQ" #: application/libraries/Cbr_parser.php:111 #: application/libraries/Cbr_parser.php:160 msgid "Broken CBR file - no valid exchange or callsigns found" -msgstr "" +msgstr "File CBR danneggiato - nessuno scambio valido o nominativi trovati" #: application/libraries/Cbr_parser.php:137 msgid "Broken CBR file - no QSO data found." -msgstr "" +msgstr "File CBR danneggiato - nessun dato QSO trovato." #: application/libraries/Cbr_parser.php:147 msgid "Broken CBR file - incomplete header found." -msgstr "" +msgstr "File CBR danneggiato - intestazione incompleta trovata." #: application/libraries/Subdivisions.php:31 msgctxt "Division Name (States in various countries)." @@ -3411,37 +3421,39 @@ msgstr "HRDlog: nessun QSO trovato da caricare per il nominativo di stazione: " msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "HRDlog: nessun profilo di stazione con credenziali HRDlog trovate." -#: application/models/Logbook_model.php:1341 +#: application/models/Logbook_model.php:1346 msgid "Station ID not allowed" msgstr "ID stazione non consentito" -#: application/models/Logbook_model.php:1346 +#: application/models/Logbook_model.php:1351 msgid "No Call given" msgstr "Nessun nominatio fornito" -#: application/models/Logbook_model.php:1416 -#: application/models/Logbook_model.php:1618 +#: application/models/Logbook_model.php:1421 +#: application/models/Logbook_model.php:1623 msgid "DXCC has to be Numeric" msgstr "DXCC deve essere numerico" -#: application/models/Logbook_model.php:4643 +#: application/models/Logbook_model.php:4648 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "Callsign della stazione errato ( %s) durante l'importazione di QSO con %s " "per %s: SALTATO" -#: application/models/Logbook_model.php:4657 +#: application/models/Logbook_model.php:4662 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" msgstr "" +"Hai cercato di importare un QSO senza una data valida. Questo QSO non è " +"stato importato. Non è valido" -#: application/models/Logbook_model.php:4666 +#: application/models/Logbook_model.php:4671 msgid "QSO on" msgstr "QSO alle" -#: application/models/Logbook_model.php:4666 +#: application/models/Logbook_model.php:4671 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3449,71 +3461,73 @@ msgstr "" "Hai tentato di importare un QSO senza alcun nominativo di chiamata. Questo " "QSO non è stato importato perchè non valido" -#: application/models/Logbook_model.php:4715 +#: application/models/Logbook_model.php:4720 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " "imported. It's invalid" msgstr "" +"QSO su %s: Hai provato a importare un QSO senza una banda specificata. " +"Questo QSO non è stato importato. È non valido" -#: application/models/Logbook_model.php:4980 +#: application/models/Logbook_model.php:4985 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "La data di ricezione QSL non è valida (AAAAMMGG)" -#: application/models/Logbook_model.php:4991 +#: application/models/Logbook_model.php:4996 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "La data di invio QSL non è valida (AAAAMMGG)" -#: application/models/Logbook_model.php:5052 +#: application/models/Logbook_model.php:5057 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "La data di upload Clublog non è valida (AAAAMMGG)" -#: application/models/Logbook_model.php:5427 +#: application/models/Logbook_model.php:5432 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Duplicata" -#: application/models/Logbook_model.php:5492 -#: application/models/Logbook_model.php:5587 +#: application/models/Logbook_model.php:5497 +#: application/models/Logbook_model.php:5592 msgid "QSO could not be matched" msgstr "Impossibile abbinare QSO" -#: application/models/Logbook_model.php:5500 +#: application/models/Logbook_model.php:5505 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "confermato da LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:5506 +#: application/models/Logbook_model.php:5511 msgid "confirmed by award manager" msgstr "confermato dal responsabile del premio" -#: application/models/Logbook_model.php:5510 +#: application/models/Logbook_model.php:5515 msgid "confirmed by cross-check of DCL data" msgstr "confermato dal controllo incrociato dei dati DCL" -#: application/models/Logbook_model.php:5514 +#: application/models/Logbook_model.php:5519 msgid "confirmation pending" msgstr "Conferma in sospeso" -#: application/models/Logbook_model.php:5517 +#: application/models/Logbook_model.php:5522 msgid "unconfirmed" msgstr "Non confermato" -#: application/models/Logbook_model.php:5520 +#: application/models/Logbook_model.php:5525 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "sconosciuto" -#: application/models/Logbook_model.php:5590 +#: application/models/Logbook_model.php:5595 msgid "POTA reference already in log" msgstr "Riferimento POTA già presente nel registro di stazione" -#: application/models/Logbook_model.php:5593 +#: application/models/Logbook_model.php:5598 msgid "QSO updated" msgstr "QSO aggiornato" -#: application/models/Logbook_model.php:6400 +#: application/models/Logbook_model.php:6405 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3529,7 +3543,7 @@ msgstr "Direzione" #: application/models/Note.php:7 msgid "Contacts" -msgstr "" +msgstr "Contatti" #: application/models/Note.php:8 #: application/views/interface_assets/footer.php:110 @@ -3544,7 +3558,7 @@ msgstr "Antenne" #: application/models/Note.php:61 application/models/Note.php:91 msgid "In Contacts category, the titles of the notes need to be unique." -msgstr "" +msgstr "Nella categoria Contatti, i titoli delle note devono essere unici." #: application/models/Update_model.php:352 msgid "Newer release available:" @@ -4584,7 +4598,7 @@ msgstr "Importa QSO duplicati" #: application/views/adif/import.php:152 msgid "Select if QSOs shall be imported, even if they already exist." -msgstr "" +msgstr "Seleziona se i QSO devono essere importati, anche se esistono già." #: application/views/adif/import.php:157 msgid "Use DXCC information from ADIF" @@ -4857,6 +4871,8 @@ msgid "" "The CBR file contains a TRX number at the end of each QSO line (for multi-op " "stations)" msgstr "" +"Il file CBR contiene un numero TRX alla fine di ogni riga QSO (per stazioni " +"multi-operatore)" #: application/views/adif/import.php:460 msgid "" @@ -4951,7 +4967,7 @@ msgstr "Controlla %s per suggerimenti sugli errori nei file ADIF." #: application/views/adif/import_success.php:59 msgid "You might have ADIF errors. Please check the following information:" -msgstr "" +msgstr "Potresti avere errori ADIF. Controlla le seguenti informazioni:" #: application/views/adif/mark_lotw.php:12 #: application/views/hrdlog/mark_hrdlog.php:12 @@ -5040,7 +5056,7 @@ msgid "Save" msgstr "Salva" #: application/views/api/index.php:8 -#: application/views/interface_assets/header.php:530 +#: application/views/interface_assets/header.php:532 msgid "API Keys" msgstr "Chiavi API" @@ -5455,7 +5471,7 @@ msgstr "Mostra mappa zona CQ" #: application/views/gridmap/index.php:28 #: application/views/logbookadvanced/index.php:276 msgid "Date Presets" -msgstr "" +msgstr "Preimpostazioni data" #: application/views/awards/cq/index.php:57 #: application/views/awards/dxcc/index.php:53 @@ -5474,48 +5490,48 @@ msgstr "Oggi" #: application/views/gridmap/index.php:32 #: application/views/logbookadvanced/index.php:279 msgid "Yesterday" -msgstr "" +msgstr "Ieri" #: application/views/awards/cq/index.php:59 #: application/views/awards/dxcc/index.php:55 #: application/views/gridmap/index.php:33 #: application/views/logbookadvanced/index.php:280 msgid "Last 7 Days" -msgstr "" +msgstr "Ultimi 7 giorni" #: application/views/awards/cq/index.php:60 #: application/views/awards/dxcc/index.php:56 #: application/views/gridmap/index.php:34 #: application/views/logbookadvanced/index.php:281 msgid "Last 30 Days" -msgstr "" +msgstr "Ultimi 30 giorni" #: application/views/awards/cq/index.php:61 #: application/views/awards/dxcc/index.php:57 #: application/views/gridmap/index.php:35 #: application/views/logbookadvanced/index.php:282 msgid "This Month" -msgstr "" +msgstr "Questo mese" #: application/views/awards/cq/index.php:62 #: application/views/awards/dxcc/index.php:58 #: application/views/gridmap/index.php:36 #: application/views/logbookadvanced/index.php:283 msgid "Last Month" -msgstr "" +msgstr "Il mese scorso" #: application/views/awards/cq/index.php:63 #: application/views/awards/dxcc/index.php:59 #: application/views/gridmap/index.php:37 #: application/views/logbookadvanced/index.php:284 msgid "This Year" -msgstr "" +msgstr "Quest'anno" #: application/views/awards/cq/index.php:64 #: application/views/awards/dxcc/index.php:60 #: application/views/logbookadvanced/index.php:285 msgid "Last Year" -msgstr "" +msgstr "L'anno scorso" #: application/views/awards/cq/index.php:65 #: application/views/awards/dxcc/index.php:61 @@ -6045,6 +6061,7 @@ msgstr "Prefisso" #: application/views/awards/dxcc/index.php:378 msgid "No results found for your search criteria. Please try again." msgstr "" +"Nessun risultato trovato per i criteri di ricerca. Per favore, riprova." #: application/views/awards/ffma/index.php:11 #: application/views/interface_assets/header.php:294 @@ -6455,11 +6472,11 @@ msgstr "SAT" #: application/views/awards/pl_polska/index.php:3 msgid "Polish Voivodeships" -msgstr "" +msgstr "Voivodati polacchi" #: application/views/awards/pl_polska/index.php:4 msgid "Hover over a voivodeship" -msgstr "" +msgstr "Passa sopra un voivodato" #: application/views/awards/pl_polska/index.php:38 msgid "" @@ -6467,6 +6484,9 @@ msgid "" "contacts with stations operating from all 16 Polish voivodeships " "(provinces). Valid from January 1, 1999." msgstr "" +"Il Premio Polska viene emesso dall'Unione Polacca Radioamatori (PZK) per i " +"contatti con stazioni operanti da tutte le 16 voivodati (province) polacche. " +"Valido dal 1 gennaio 1999." #: application/views/awards/pl_polska/index.php:39 msgid "" @@ -6474,29 +6494,34 @@ msgid "" "(RTTY/PSK/FSK), and individual bands (160M-2M). Classes: Basic (1 QSO/voiv), " "Bronze (3), Silver (7), Gold (12). All 16 voivodeships required." msgstr "" +"Categorie premi: MIXED (tutti i modi/bande), PHONE (SSB/AM/FM/SSTV), CW, " +"DIGI (RTTY/PSK/FSK) e bande individuali (160M-2M). Classi: Base (1 QSO/" +"voiv), Bronzo (3), Argento (7), Oro (12). Necessari tutti i 16 voivodati." #: application/views/awards/pl_polska/index.php:40 #, php-format msgid "Official rules and information: %s" -msgstr "" +msgstr "Regole ufficiali e informazioni: %s" #: application/views/awards/pl_polska/index.php:40 msgid "PZK Polska Award Rules" -msgstr "" +msgstr "Regole del Premio PZK Polska" #: application/views/awards/pl_polska/index.php:41 msgid "" "Requirements: COL_STATE (voivodeship code), COL_DXCC=269 (Poland), QSO date " ">= 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" +"Requisiti: COL_STATE (codice del voivodato), COL_DXCC=269 (Polonia), Data " +"QSO >= 1999-01-01. Nessun contatto cross-band/cross-mode/ripetitore." #: application/views/awards/pl_polska/index.php:54 msgid "Station Logbook" -msgstr "" +msgstr "Registro di Stazione" #: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" -msgstr "" +msgstr "Metodi di conferma" #: application/views/awards/pl_polska/index.php:63 msgid "" @@ -6504,69 +6529,74 @@ msgid "" "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" +"Secondo le regole ufficiali dei premi, le cartoline QSL cartacee o le " +"conferme LoTW sono accettate per le domande di premio. Altre conferme " +"digitali sono mostrate qui solo a scopo di tracciamento." #: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" -msgstr "" +msgstr "Categorie dei Premi" #: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" +"Le categorie dei Premi Polska si basano sul numero minimo di QSO confermati " +"con ciascuno dei 16 voivodati:" #: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" -msgstr "" +msgstr "1 QSO per voivodato" #: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" -msgstr "" +msgstr "Classe di base" #: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" -msgstr "" +msgstr "3 QSO per voivodato" #: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" -msgstr "" +msgstr "Classe di Bronzo (3°)" #: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" -msgstr "" +msgstr "7 QSO per voivodato" #: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" -msgstr "" +msgstr "Classe Argento (2°)" #: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" -msgstr "" +msgstr "12 QSO per voivodato" #: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" -msgstr "" +msgstr "Classe Oro (1°)" #: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" -msgstr "" +msgstr "Congratulazioni!" #: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" -msgstr "" +msgstr "Hai diritto alle seguenti categorie di premi" #: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" -msgstr "" +msgstr "QSOs per categoria di modalità" #: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" -msgstr "" +msgstr "QSOs per Banda" #: application/views/awards/pl_polska/index.php:202 #: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" -msgstr "" +msgstr "Voivodato" #: application/views/awards/pl_polska/index.php:203 #: application/views/awards/pl_polska/index.php:274 @@ -6577,12 +6607,12 @@ msgstr "Codice" #: application/views/awards/pl_polska/index.php:204 #: application/views/awards/pl_polska/index.php:345 msgid "MIXED" -msgstr "" +msgstr "MISTO" #: application/views/awards/pl_polska/index.php:205 #: application/views/awards/pl_polska/index.php:346 msgid "PHONE" -msgstr "" +msgstr "FONIA" #: application/views/awards/pl_polska/index.php:206 #: application/views/awards/pl_polska/index.php:347 @@ -6594,34 +6624,34 @@ msgstr "CW" #: application/views/awards/pl_polska/index.php:207 #: application/views/awards/pl_polska/index.php:348 msgid "DIGI" -msgstr "" +msgstr "DIGI" #: application/views/awards/pl_polska/index.php:238 #: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" -msgstr "" +msgstr "Voivodati totali" #: application/views/awards/pl_polska/index.php:252 #: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" -msgstr "" +msgstr "Bravo! Hai diritto a" #: application/views/awards/pl_polska/index.php:252 #: application/views/awards/pl_polska/index.php:324 msgid "category award!" -msgstr "" +msgstr "premio di categoria!" #: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" -msgstr "" +msgstr "Categoria del premio:" #: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" -msgstr "" +msgstr "Categorie di modalità" #: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" -msgstr "" +msgstr "Categorie di bande" #: application/views/awards/pl_polska/index.php:372 #: application/views/logbookadvanced/index.php:772 @@ -6630,25 +6660,27 @@ msgstr "" #: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" -msgstr "" +msgstr "Registro avanzato" #: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" +"Questo premio utilizza il campo Stato dal tuo logbook. Assicurati che questo " +"campo sia popolato per tutti i contatti SP (Polonia)." #: application/views/awards/pl_polska/index.php:372 msgid "Tip:" -msgstr "" +msgstr "Suggerimento:" #: application/views/awards/pl_polska/index.php:372 msgid "Use" -msgstr "" +msgstr "Usa" #: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." -msgstr "" +msgstr "auto-compilare gli stati dai localizzatori Maidenhead." #: application/views/awards/pota/index.php:7 msgid "POTA Awards" @@ -6959,6 +6991,9 @@ msgid "" "Digital and Mixed Modes. It is issued in five classes: WAE III, WAE II, WAE " "I, WAE TOP and the WAE Trophy." msgstr "" +"La WAE sarà emessa nelle seguenti modalità: CW, SSB, Phone, RTTY, FT8, " +"Digital e Mixed. Viene rilasciato in cinque classi: WAE III, WAE II, WAE I, " +"WAE TOP e il WAE Trophy." #: application/views/awards/wae/index.php:11 msgid "Fields taken for this Award: Region, DXCC" @@ -7133,7 +7168,7 @@ msgstr "Muovi il cursore su uno stato" #: application/views/awards/was/index.php:5 #: application/views/awards/was/index.php:166 msgid "inc." -msgstr "" +msgstr "inc." #: application/views/awards/was/index.php:25 msgid "WAS Award" @@ -7189,7 +7224,7 @@ msgstr "Mostra mappa WAS" #: application/views/awards/wpx/index.php:76 msgid "Band / Satellite / Orbit" -msgstr "" +msgstr "Banda / Satellite / Orbita" #: application/views/awards/wpx/wpx_details.php:21 #: application/views/oqrs/showrequests.php:86 @@ -7295,7 +7330,7 @@ msgstr "" #: application/views/bandmap/list.php:14 msgid "Pop-up Blocked" -msgstr "" +msgstr "Popup bloccato" #: application/views/bandmap/list.php:15 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." @@ -7305,39 +7340,39 @@ msgstr "" #: application/views/bandmap/list.php:16 msgid "CAT Connection Required" -msgstr "" +msgstr "Connessione CAT richiesta" #: application/views/bandmap/list.php:17 msgid "Enable CAT connection to tune the radio" -msgstr "" +msgstr "Abilita la connessione CAT per sintonizzare la radio" #: application/views/bandmap/list.php:18 application/views/bandmap/list.php:411 msgid "Clear Filters" -msgstr "" +msgstr "Cancella filtri" #: application/views/bandmap/list.php:19 msgid "Band filter preserved (band lock is active)" -msgstr "" +msgstr "Filtro di banda preservato (blocco di banda attivo)" #: application/views/bandmap/list.php:21 msgid "Radio set to None - CAT connection disabled" -msgstr "" +msgstr "Radio impostato su Nessuno - Connessione CAT disabilitata" #: application/views/bandmap/list.php:22 msgid "Radio Tuned" -msgstr "" +msgstr "Radio sintonizzata" #: application/views/bandmap/list.php:23 msgid "Tuned to" -msgstr "" +msgstr "Sintonizzato su" #: application/views/bandmap/list.php:24 msgid "Tuning Failed" -msgstr "" +msgstr "Sintonizzazione fallita" #: application/views/bandmap/list.php:25 msgid "Failed to tune radio to frequency" -msgstr "" +msgstr "Impossibile sintonizzare la radio sulla frequenza" #: application/views/bandmap/list.php:26 msgid "QSO Prepared" @@ -7345,205 +7380,215 @@ msgstr "" #: application/views/bandmap/list.php:28 msgid "sent to logging form" -msgstr "" +msgstr "inviato al modulo di log" #: application/views/bandmap/list.php:29 application/views/bandmap/list.php:229 msgid "CAT Connection" -msgstr "" +msgstr "Connessione CAT" #: application/views/bandmap/list.php:30 application/views/bandmap/list.php:228 msgid "Click to enable CAT connection" -msgstr "" +msgstr "Fare clic per abilitare la connessione CAT" #: application/views/bandmap/list.php:31 msgid "CAT following radio - Click to disable" -msgstr "" +msgstr "CAT segue la radio - Clicca per disabilitare" #: application/views/bandmap/list.php:32 application/views/bandmap/list.php:231 msgid "Click to enable band lock (requires CAT connection)" msgstr "" +"Fai clic per abilitare il blocco di banda (richiede la connessione CAT)" #: application/views/bandmap/list.php:33 msgid "Band lock active - Click to disable" -msgstr "" +msgstr "Blocco di banda attivo - Clicca per disattivare" #: application/views/bandmap/list.php:34 msgid "Band Lock" -msgstr "" +msgstr "Blocco di banda" #: application/views/bandmap/list.php:35 msgid "Band lock enabled - band filter will track radio band" msgstr "" +"Blocco di banda abilitato - il filtro di banda seguirà la banda della radio" #: application/views/bandmap/list.php:36 msgid "Band filter changed to" -msgstr "" +msgstr "Filtro di banda cambiato in" #: application/views/bandmap/list.php:37 msgid "by transceiver" -msgstr "" +msgstr "per ricetrasmettitore" #: application/views/bandmap/list.php:38 msgid "Frequency filter set to" -msgstr "" +msgstr "Filtro di frequenza impostato su" #: application/views/bandmap/list.php:39 msgid "Frequency outside known bands - showing all bands" msgstr "" +"Frequenza al di fuori delle bande conosciute - mostrando tutte le bande" #: application/views/bandmap/list.php:40 msgid "Waiting for radio data..." -msgstr "" +msgstr "In attesa dei dati della radio..." #: application/views/bandmap/list.php:41 msgid "My Favorites" -msgstr "" +msgstr "I miei preferiti" #: application/views/bandmap/list.php:42 msgid "Failed to load favorites" -msgstr "" +msgstr "Caricamento dei preferiti non riuscito" #: application/views/bandmap/list.php:43 msgid "Modes applied. Band filter preserved (CAT connection is active)" msgstr "" +"Modalità applicate. Filtro di banda preservato (connessione CAT attiva)" #: application/views/bandmap/list.php:44 msgid "Applied your favorite bands and modes" -msgstr "" +msgstr "Applicato le tue bande e modo preferite" #: application/views/bandmap/list.php:47 application/views/bandmap/list.php:314 #: application/views/bandmap/list.php:479 msgid "My Submodes" -msgstr "" +msgstr "I miei sotto-modi" #: application/views/bandmap/list.php:48 msgid "Submode filter enabled" -msgstr "" +msgstr "Filtro sotto-modi abilitato" #: application/views/bandmap/list.php:49 msgid "Submode filter disabled - showing all" -msgstr "" +msgstr "Filtro sotto-modi disabilitato - mostrando tutto" #: application/views/bandmap/list.php:50 msgid "Required submodes" -msgstr "" +msgstr "Sotto-modi richiesti" #: application/views/bandmap/list.php:51 msgid "Configure in User Settings - Modes" -msgstr "" +msgstr "Configura in Impostazioni utente - Modalità" #: application/views/bandmap/list.php:52 msgid "No submodes configured - configure in User Settings - Modes" msgstr "" +"Nessun sotto-modo configurata - configura in Impostazioni utente - Modi" #: application/views/bandmap/list.php:53 msgid "No submodes enabled in settings - showing all spots" msgstr "" +"Nessun sotto-modo abilitato nelle impostazioni - mostrando tutti gli spot" #: application/views/bandmap/list.php:54 msgid "Disabled - no submodes enabled for this mode in User Settings" msgstr "" +"Disabilitato - nessuna sotto-modo abilitato per questa modalità nelle " +"Impostazioni utente" #: application/views/bandmap/list.php:55 application/views/bandmap/list.php:468 #: application/views/components/dxwaterfall.php:32 msgid "Toggle CW mode filter" -msgstr "" +msgstr "Commuta filtro modo CW" #: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 #: application/views/components/dxwaterfall.php:34 msgid "Toggle Digital mode filter" -msgstr "" +msgstr "Attiva filtro modi digitali" #: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 #: application/views/components/dxwaterfall.php:30 msgid "Toggle Phone mode filter" -msgstr "" +msgstr "Abilita filtro fonia" #: application/views/bandmap/list.php:60 application/views/bandmap/list.php:421 msgid "Favorites" -msgstr "" +msgstr "Preferiti" #: application/views/bandmap/list.php:61 application/views/bandmap/list.php:424 msgid "Save Current Filters..." -msgstr "" +msgstr "Salva i filtri correnti..." #: application/views/bandmap/list.php:62 msgid "Enter a name for this filter preset:" -msgstr "" +msgstr "Inserisci un nome per questo preset di filtro:" #: application/views/bandmap/list.php:63 msgid "Filter preset saved" -msgstr "" +msgstr "Preimpostazione filtro salvata" #: application/views/bandmap/list.php:64 msgid "Filter preset loaded" -msgstr "" +msgstr "Preimpostazione filtro caricata" #: application/views/bandmap/list.php:65 msgid "Filter preset deleted" -msgstr "" +msgstr "Preimpostazione filtro eliminato" #: application/views/bandmap/list.php:66 msgid "Are you sure to delete this filter preset?" -msgstr "" +msgstr "Sei sicuro di eliminare questa preimpostazione filtro?" #: application/views/bandmap/list.php:67 msgid "No saved filter presets" -msgstr "" +msgstr "Nessuna preimpostazione filtro salvata" #: application/views/bandmap/list.php:68 msgid "" "Maximum of 20 filter presets reached. Please delete some before adding new " "ones." msgstr "" +"È stato raggiunto il massimo di 20 preimpostazioni dei filtri. Eliminane " +"alcuni prima di aggiungerne di nuovi." #: application/views/bandmap/list.php:71 msgid "Loading data from DX Cluster" -msgstr "" +msgstr "Caricamento dati dal DX Cluster" #: application/views/bandmap/list.php:72 msgid "Last fetched for" -msgstr "" +msgstr "Ultimo recupero per" #: application/views/bandmap/list.php:73 msgid "Max Age" -msgstr "" +msgstr "Età massima" #: application/views/bandmap/list.php:74 msgid "Fetched at" -msgstr "" +msgstr "Recuperato a" #: application/views/bandmap/list.php:75 msgid "Next update in" -msgstr "" +msgstr "Prossimo aggiornamento in" #: application/views/bandmap/list.php:76 msgid "minutes" -msgstr "" +msgstr "minuti" #: application/views/bandmap/list.php:77 msgid "seconds" -msgstr "" +msgstr "secondi" #: application/views/bandmap/list.php:78 msgid "spots fetched" -msgstr "" +msgstr "spot recuperati" #: application/views/bandmap/list.php:79 msgid "showing" -msgstr "" +msgstr "mostrando" #: application/views/bandmap/list.php:80 msgid "showing all" -msgstr "" +msgstr "mostrando tutto" #: application/views/bandmap/list.php:81 msgid "Active filters" -msgstr "" +msgstr "Filtri attivi" #: application/views/bandmap/list.php:82 msgid "Fetching..." -msgstr "" +msgstr "Recuperando..." #: application/views/bandmap/list.php:85 application/views/bandmap/list.php:296 #: application/views/interface_assets/footer.php:47 @@ -7565,38 +7610,38 @@ msgstr "Utente LoTW" #: application/views/bandmap/list.php:90 application/views/bandmap/list.php:318 #: application/views/components/dxwaterfall.php:18 msgid "New Callsign" -msgstr "" +msgstr "Nuovo nominativo" #: application/views/bandmap/list.php:91 application/views/bandmap/list.php:316 #: application/views/components/dxwaterfall.php:16 msgid "New Continent" -msgstr "" +msgstr "Nuovo Continente" #: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 msgid "New Country" -msgstr "" +msgstr "Nuovo Paese" #: application/views/bandmap/list.php:93 msgid "Worked Before" -msgstr "" +msgstr "Collegato precedentemente" #: application/views/bandmap/list.php:94 #, php-format msgid "Worked on %s with %s" -msgstr "" +msgstr "Collegato in %s con %s" #: application/views/bandmap/list.php:102 #: application/views/bandmap/list.php:575 msgid "de" -msgstr "" +msgstr "da" #: application/views/bandmap/list.php:103 msgid "spotted" -msgstr "" +msgstr "segnalato" #: application/views/bandmap/list.php:106 msgid "Fresh spot (< 5 minutes old)" -msgstr "" +msgstr "Spot recenti (<5 minuti)" #: application/views/bandmap/list.php:107 #: application/views/bandmap/list.php:108 @@ -7614,67 +7659,67 @@ msgstr "Contest" #: application/views/bandmap/list.php:109 msgid "Click to view" -msgstr "" +msgstr "Clicca per visualizzare" #: application/views/bandmap/list.php:110 msgid "on QRZ.com" -msgstr "" +msgstr "su QRZ.com" #: application/views/bandmap/list.php:111 #, php-format msgid "Click to view %s on QRZ.com" -msgstr "" +msgstr "Clicca per visualizzare %s su QRZ.com" #: application/views/bandmap/list.php:112 msgid "See details for" -msgstr "" +msgstr "Vedi dettagli per" #: application/views/bandmap/list.php:113 msgid "Worked on" -msgstr "" +msgstr "Collegato in" #: application/views/bandmap/list.php:114 msgid "Not worked on this band" -msgstr "" +msgstr "Non collegato su questa banda" #: application/views/bandmap/list.php:115 #, php-format msgid "LoTW User. Last upload was %d days ago" -msgstr "" +msgstr "Utente LoTW. Ultimo caricamento %d giorni fa" #: application/views/bandmap/list.php:116 msgid "Click to view on POTA.app" -msgstr "" +msgstr "Fai clic per visualizzare su POTA.app" #: application/views/bandmap/list.php:117 msgid "Click to view on SOTL.as" -msgstr "" +msgstr "Clicca per visualizzare su SOTL.as" #: application/views/bandmap/list.php:118 msgid "Click to view on cqgma.org" -msgstr "" +msgstr "Fai clic per visualizzare su cqgma.org" #: application/views/bandmap/list.php:119 msgid "Click to view on IOTA-World.org" -msgstr "" +msgstr "Clicca per visualizzare su IOTA-World.org" #: application/views/bandmap/list.php:120 msgid "See details for continent" -msgstr "" +msgstr "Vedi i dettagli per continente" #: application/views/bandmap/list.php:121 #, php-format msgid "See details for continent %s" -msgstr "" +msgstr "Vedi i dettagli per il continente %s" #: application/views/bandmap/list.php:122 msgid "See details for CQ Zone" -msgstr "" +msgstr "Vedi i dettagli per CQ Zone" #: application/views/bandmap/list.php:123 #, php-format msgid "See details for CQ Zone %s" -msgstr "" +msgstr "Vedi i dettagli per CQ Zone %s" #: application/views/bandmap/list.php:124 msgid "in" @@ -7682,25 +7727,27 @@ msgstr "" #: application/views/bandmap/list.php:127 msgid "Exit Fullscreen" -msgstr "" +msgstr "Esci dalla modalità a schermo intero" #: application/views/bandmap/list.php:128 #: application/views/bandmap/list.php:214 msgid "Toggle Fullscreen" -msgstr "" +msgstr "Attiva/disattiva schermo intero" #: application/views/bandmap/list.php:129 msgid "" "Band filtering is controlled by your radio when CAT connection is enabled" msgstr "" +"Il filtro per banda è controllato dalla tua radio quando la connessione CAT " +"è abilitata" #: application/views/bandmap/list.php:130 msgid "Click to prepare logging" -msgstr "" +msgstr "Fai clic per preparare il log" #: application/views/bandmap/list.php:132 msgid "(requires CAT connection)" -msgstr "" +msgstr "(richiede connessione CAT)" #: application/views/bandmap/list.php:133 msgid "Spotter" @@ -7726,20 +7773,20 @@ msgstr "Età" #: application/views/bandmap/list.php:137 msgid "Incoming" -msgstr "" +msgstr "In arrivo" #: application/views/bandmap/list.php:138 msgid "Outgoing" -msgstr "" +msgstr "In uscita" #: application/views/bandmap/list.php:139 #: application/views/components/dxwaterfall.php:15 msgid "spots" -msgstr "" +msgstr "spot" #: application/views/bandmap/list.php:140 msgid "spot" -msgstr "" +msgstr "spot" #: application/views/bandmap/list.php:141 msgid "spotters" @@ -7747,40 +7794,41 @@ msgstr "" #: application/views/bandmap/list.php:144 msgid "Please Wait" -msgstr "" +msgstr "Attendere, per favore" #: application/views/bandmap/list.php:145 #, php-format msgid "Please wait %s seconds before sending another callsign to the QSO form" msgstr "" +"Attendere %s secondi prima di inviare un altro nominativo al modulo QSO" #: application/views/bandmap/list.php:148 msgid "Loading spots..." -msgstr "" +msgstr "Caricamento degli spot..." #: application/views/bandmap/list.php:149 msgid "No spots found" -msgstr "" +msgstr "Nessuno spot trovato" #: application/views/bandmap/list.php:150 msgid "No data available" -msgstr "" +msgstr "Nessun dato disponibile" #: application/views/bandmap/list.php:151 msgid "No spots found for selected filters" -msgstr "" +msgstr "Nessun spot trovato con i filtri selezionati" #: application/views/bandmap/list.php:152 msgid "Error loading spots. Please try again." -msgstr "" +msgstr "Errore nel caricamento degli spot. Riprova." #: application/views/bandmap/list.php:155 msgid "Show all modes" -msgstr "" +msgstr "Mostra tutti i modi" #: application/views/bandmap/list.php:156 msgid "Show all spots" -msgstr "" +msgstr "Mostra tutti gli spot" #: application/views/bandmap/list.php:161 msgid "Draw Spotters" @@ -7788,36 +7836,36 @@ msgstr "" #: application/views/bandmap/list.php:162 msgid "Extend Map" -msgstr "" +msgstr "Estendi mappa" #: application/views/bandmap/list.php:163 msgid "Show Day/Night" -msgstr "" +msgstr "Mostra giorno/notte" #: application/views/bandmap/list.php:164 msgid "Your QTH" -msgstr "" +msgstr "Il tuo QTH" #: application/views/bandmap/list.php:200 msgid "Return to Home" -msgstr "" +msgstr "Torna all'inizio" #: application/views/bandmap/list.php:203 #: application/views/interface_assets/header.php:303 msgid "DX Cluster" -msgstr "" +msgstr "DX Cluster" #: application/views/bandmap/list.php:207 msgid "DX Cluster Help" -msgstr "" +msgstr "Help DX Cluster" #: application/views/bandmap/list.php:210 msgid "Compact Mode - Hide/Show Menu" -msgstr "" +msgstr "Modalità compatta - Nascondi/Mostra menu" #: application/views/bandmap/list.php:237 msgid "TRX:" -msgstr "" +msgstr "RTX:" #: application/views/bandmap/list.php:239 #: application/views/bandmap/list.php:313 @@ -7830,67 +7878,67 @@ msgstr "Nessuna" #: application/views/bandmap/list.php:240 application/views/qso/index.php:388 msgid "Live - " -msgstr "" +msgstr "In diretta - " #: application/views/bandmap/list.php:240 application/views/qso/index.php:388 msgid "WebSocket (Requires WLGate>=1.1.10)" -msgstr "" +msgstr "WebSocket (Richiede WLGate>=1.1.10)" #: application/views/bandmap/list.php:242 application/views/qso/index.php:390 msgid "Polling - " -msgstr "" +msgstr "Polling - " #: application/views/bandmap/list.php:251 msgid "de:" -msgstr "" +msgstr "de:" #: application/views/bandmap/list.php:253 msgid "Select all continents" -msgstr "" +msgstr "Seleziona tutti i continenti" #: application/views/bandmap/list.php:253 msgid "World" -msgstr "" +msgstr "Mondo" #: application/views/bandmap/list.php:254 msgid "Toggle Africa continent filter" -msgstr "" +msgstr "Attiva filtro continente Africa" #: application/views/bandmap/list.php:255 msgid "Toggle Antarctica continent filter" -msgstr "" +msgstr "Attiva/disattiva il filtro del continente Antarctica" #: application/views/bandmap/list.php:256 msgid "Toggle Asia continent filter" -msgstr "" +msgstr "Attiva/disattiva il filtro del continente Asia" #: application/views/bandmap/list.php:257 msgid "Toggle Europe continent filter" -msgstr "" +msgstr "Attiva il filtro continente Europa" #: application/views/bandmap/list.php:258 msgid "Toggle North America continent filter" -msgstr "" +msgstr "Attiva/disattiva filtro continente America del Nord" #: application/views/bandmap/list.php:259 msgid "Toggle Oceania continent filter" -msgstr "" +msgstr "Uscita filtro continente Oceania" #: application/views/bandmap/list.php:260 msgid "Toggle South America continent filter" -msgstr "" +msgstr "Attiva/disattiva il filtro del continente Sud America" #: application/views/bandmap/list.php:273 msgid "Advanced Filters" -msgstr "" +msgstr "Filtri avanzati" #: application/views/bandmap/list.php:287 msgid "Hold" -msgstr "" +msgstr "Mantieni" #: application/views/bandmap/list.php:287 msgid "and click to select multiple options" -msgstr "" +msgstr "e clicca per selezionare più opzioni" #: application/views/bandmap/list.php:293 msgid "DXCC-Status" @@ -7912,11 +7960,11 @@ msgstr "" #: application/views/bandmap/list.php:319 msgid "Worked Callsign" -msgstr "" +msgstr "Nominativo collegato" #: application/views/bandmap/list.php:321 msgid "DX Spot" -msgstr "" +msgstr "DX Spot" #: application/views/bandmap/list.php:323 msgid "Additional Flags" @@ -7924,23 +7972,23 @@ msgstr "" #: application/views/bandmap/list.php:330 msgid "Fresh (< 5 min)" -msgstr "" +msgstr "Recenti (<5 minuti)" #: application/views/bandmap/list.php:335 msgid "Spots de Continent" -msgstr "" +msgstr "Spot dal Continente" #: application/views/bandmap/list.php:349 msgid "Spotted Station Continent" -msgstr "" +msgstr "Stazioni riportate per continente" #: application/views/bandmap/list.php:409 msgid "Apply Filters" -msgstr "" +msgstr "Applica filtri" #: application/views/bandmap/list.php:420 msgid "Filter Favorites" -msgstr "" +msgstr "Filtra Preferiti" #: application/views/bandmap/list.php:430 msgid "Clear all filters except De Continent" @@ -7948,120 +7996,121 @@ msgstr "" #: application/views/bandmap/list.php:436 msgid "Toggle 160m band filter" -msgstr "" +msgstr "Attiva/disattiva filtro banda 160m" #: application/views/bandmap/list.php:440 msgid "Toggle 80m band filter" -msgstr "" +msgstr "Attiva/disattiva filtro della banda 80m" #: application/views/bandmap/list.php:441 msgid "Toggle 60m band filter" -msgstr "" +msgstr "Attiva/disattiva il filtro della banda 60m" #: application/views/bandmap/list.php:442 msgid "Toggle 40m band filter" -msgstr "" +msgstr "Attiva/disattiva il filtro della banda dei 40m" #: application/views/bandmap/list.php:443 msgid "Toggle 30m band filter" -msgstr "" +msgstr "Attiva/disattiva il filtro della banda 30m" #: application/views/bandmap/list.php:444 msgid "Toggle 20m band filter" -msgstr "" +msgstr "Attiva/disattiva il filtro della banda 20m" #: application/views/bandmap/list.php:445 msgid "Toggle 17m band filter" -msgstr "" +msgstr "Attiva/disattiva il filtro della banda 17m" #: application/views/bandmap/list.php:446 msgid "Toggle 15m band filter" -msgstr "" +msgstr "Attiva/disattiva il filtro della banda 15m" #: application/views/bandmap/list.php:447 msgid "Toggle 12m band filter" -msgstr "" +msgstr "Attiva/disattiva il filtro della banda 12m" #: application/views/bandmap/list.php:448 msgid "Toggle 10m band filter" -msgstr "" +msgstr "Attiva/disattiva il filtro della banda 10m" #: application/views/bandmap/list.php:452 msgid "Toggle 6m band filter" -msgstr "" +msgstr "Attiva/disattiva il filtro della banda 6m" #: application/views/bandmap/list.php:456 msgid "Toggle VHF bands filter" -msgstr "" +msgstr "Attiva/disattiva il filtro delle bande VHF" #: application/views/bandmap/list.php:457 msgid "Toggle UHF bands filter" -msgstr "" +msgstr "Attiva/disattiva il filtro delle bande UHF" #: application/views/bandmap/list.php:458 msgid "Toggle SHF bands filter" -msgstr "" +msgstr "Attiva/disattiva il filtro delle bande SHF" #: application/views/bandmap/list.php:478 msgid "Loading submodes..." -msgstr "" +msgstr "Caricamento dei sotto-modi..." #: application/views/bandmap/list.php:483 msgid "Toggle LoTW User filter" -msgstr "" +msgstr "Attiva filtro utente LoTW" #: application/views/bandmap/list.php:484 msgid "LoTW users" -msgstr "" +msgstr "Utenti LoTW" #: application/views/bandmap/list.php:490 msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" msgstr "" +"Attiva filtro DX Spot (continente segnalato ≠ continente di chi segnala)" #: application/views/bandmap/list.php:491 #: application/views/bandmap/list.php:570 msgid "DX" -msgstr "" +msgstr "DX" #: application/views/bandmap/list.php:493 msgid "Toggle New Continents filter" -msgstr "" +msgstr "Attiva/disattiva filtro nuovi continenti" #: application/views/bandmap/list.php:494 msgid "New Continents" -msgstr "" +msgstr "Nuovi continenti" #: application/views/bandmap/list.php:496 msgid "Toggle New Entities filter" -msgstr "" +msgstr "Attiva filtro Nuove Entità" #: application/views/bandmap/list.php:497 msgid "New Entities" -msgstr "" +msgstr "Nuove entità" #: application/views/bandmap/list.php:499 msgid "Toggle New Callsigns filter" -msgstr "" +msgstr "Attiva/disattiva filtro nuovi nominativi" #: application/views/bandmap/list.php:500 msgid "New Callsigns" -msgstr "" +msgstr "Nuovi nominativi" #: application/views/bandmap/list.php:506 msgid "Toggle Fresh spots filter (< 5 minutes old)" -msgstr "" +msgstr "Attiva il filtro per gli spot recenti (< 5 minuti)" #: application/views/bandmap/list.php:507 msgid "Fresh" -msgstr "" +msgstr "Recente" #: application/views/bandmap/list.php:509 msgid "Toggle Contest filter" -msgstr "" +msgstr "Attiva/disattiva filtro contest" #: application/views/bandmap/list.php:512 msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" -msgstr "" +msgstr "Attiva/disattiva Geo Hunter (POTA/SOTA/IOTA/WWFF)" #: application/views/bandmap/list.php:513 msgid "Referenced" @@ -8069,27 +8118,29 @@ msgstr "" #: application/views/bandmap/list.php:519 msgid "Open DX Map view" -msgstr "" +msgstr "Apri la visualizzazione della mappa DX" #: application/views/bandmap/list.php:520 msgid "DX Map" -msgstr "" +msgstr "Mappa DX" #: application/views/bandmap/list.php:544 msgid "Search spots..." -msgstr "" +msgstr "Cerca spot..." #: application/views/bandmap/list.php:557 msgid "Note: Map shows DXCC entity locations, not actual spot locations" msgstr "" +"Nota: La mappa mostra le posizioni delle entità DXCC, non le posizioni " +"effettive" #: application/views/bandmap/list.php:565 msgid "Age in minutes" -msgstr "" +msgstr "Età in minuti" #: application/views/bandmap/list.php:567 msgid "Freq" -msgstr "" +msgstr "Freq" #: application/views/bandmap/list.php:569 #: application/views/eqsl/analysis.php:40 @@ -8099,7 +8150,7 @@ msgstr "Sottomodo" #: application/views/bandmap/list.php:570 msgid "Spotted Callsign" -msgstr "" +msgstr "Nominativo segnalato" #: application/views/bandmap/list.php:573 msgid "Flag" @@ -8107,11 +8158,11 @@ msgstr "" #: application/views/bandmap/list.php:574 msgid "DXCC Entity" -msgstr "" +msgstr "Entità DXCC" #: application/views/bandmap/list.php:574 msgid "Entity" -msgstr "" +msgstr "Entità" #: application/views/bandmap/list.php:575 msgid "Spotter Callsign" @@ -8127,11 +8178,11 @@ msgstr "" #: application/views/bandmap/list.php:578 msgid "Last QSO Date" -msgstr "" +msgstr "Data ultimo QSO" #: application/views/bandmap/list.php:579 msgid "Special" -msgstr "" +msgstr "Speciale" #: application/views/bandmap/list.php:579 msgid "Special Flags" @@ -8795,7 +8846,7 @@ msgstr "Esporta QSO per ADIF" #: application/views/club/permissions.php:128 msgid "Export own QSO per ADIF" -msgstr "" +msgstr "Esporta proprio QSO in formato ADIF" #: application/views/club/permissions.php:137 msgid "User Management" @@ -9008,59 +9059,59 @@ msgstr "Scarica le QSL da Clublog" #: application/views/components/dxwaterfall.php:13 msgid "Tune to spot frequency and start logging QSO" -msgstr "" +msgstr "Sintonizza sulla frequenza di spot e inizia a registrare QSO" #: application/views/components/dxwaterfall.php:14 msgid "Cycle through nearby spots" -msgstr "" +msgstr "Gira attraverso gli spot vicini" #: application/views/components/dxwaterfall.php:17 msgid "New DXCC" -msgstr "" +msgstr "Nuovo DXCC" #: application/views/components/dxwaterfall.php:19 msgid "First spot" -msgstr "" +msgstr "Primo spot" #: application/views/components/dxwaterfall.php:19 msgid "Previous spot" -msgstr "" +msgstr "Spot precedente" #: application/views/components/dxwaterfall.php:20 msgid "No spots at lower frequency" -msgstr "" +msgstr "Nessuno spot a frequenze più basse" #: application/views/components/dxwaterfall.php:21 msgid "Last spot" -msgstr "" +msgstr "Ultimo spot" #: application/views/components/dxwaterfall.php:21 msgid "Next spot" -msgstr "" +msgstr "Prossimo spot" #: application/views/components/dxwaterfall.php:22 msgid "No spots at higher frequency" -msgstr "" +msgstr "Nessuno spot su frequenze più alte" #: application/views/components/dxwaterfall.php:23 msgid "No spots available" -msgstr "" +msgstr "Nessuno spot disponibile" #: application/views/components/dxwaterfall.php:24 msgid "Cycle through unworked continents/DXCC" -msgstr "" +msgstr "Cicla attraverso continenti/DXCC non collegati" #: application/views/components/dxwaterfall.php:25 msgid "DX Hunter" -msgstr "" +msgstr "DX Hunter" #: application/views/components/dxwaterfall.php:26 msgid "No unworked continents/DXCC on this band" -msgstr "" +msgstr "Nessun continente/DXCC non collegato su questa banda" #: application/views/components/dxwaterfall.php:27 msgid "Click to cycle or wait 1.5s to apply" -msgstr "" +msgstr "Fai clic per scorrere o aspetta 1,5s per applicare" #: application/views/components/dxwaterfall.php:28 msgid "Change spotter continent" @@ -9068,7 +9119,7 @@ msgstr "" #: application/views/components/dxwaterfall.php:29 msgid "Filter by mode" -msgstr "" +msgstr "Filtra per modo" #: application/views/components/dxwaterfall.php:36 msgid "Zoom out" @@ -9076,57 +9127,59 @@ msgstr "" #: application/views/components/dxwaterfall.php:37 msgid "Reset zoom to default (3)" -msgstr "" +msgstr "Ripristina lo zoom (3)" #: application/views/components/dxwaterfall.php:38 msgid "Zoom in" -msgstr "" +msgstr "Aumenta lo zoom" #: application/views/components/dxwaterfall.php:39 msgid "Downloading DX Cluster data" -msgstr "" +msgstr "Scaricamento dati DX Cluster" #: application/views/components/dxwaterfall.php:40 msgid "Comment: " -msgstr "" +msgstr "Commento: " #: application/views/components/dxwaterfall.php:41 msgid "modes:" -msgstr "" +msgstr "modi:" #: application/views/components/dxwaterfall.php:42 msgid "OUT OF BANDPLAN" -msgstr "" +msgstr "FUORI DAL BANDPLAN" #: application/views/components/dxwaterfall.php:43 msgid "Out of band" -msgstr "" +msgstr "Fuori banda" #: application/views/components/dxwaterfall.php:44 msgid "" "DX Waterfall has experienced an unexpected error and will be shut down. " "Please visit Wavelog's GitHub and create a bug report if this issue persists." msgstr "" +"DX Waterfall ha riscontrato un errore imprevisto e verrà chiuso. Visita il " +"GitHub di Wavelog e crea un rapporto di bug se il problema persiste." #: application/views/components/dxwaterfall.php:45 msgid "Changing radio frequency..." -msgstr "" +msgstr "Cambio di frequenza radio..." #: application/views/components/dxwaterfall.php:46 msgid "INVALID" -msgstr "" +msgstr "NON VALIDO" #: application/views/components/dxwaterfall.php:47 msgid "Click to turn on the DX Waterfall" -msgstr "" +msgstr "Clicca per attivare il DX Waterfall" #: application/views/components/dxwaterfall.php:48 msgid "Turn off DX Waterfall" -msgstr "" +msgstr "Disattiva DX Waterfall" #: application/views/components/dxwaterfall.php:49 msgid "Please wait" -msgstr "" +msgstr "Attendere, per favore" #: application/views/components/dxwaterfall.php:50 msgid "Cycle label size" @@ -9134,37 +9187,37 @@ msgstr "" #: application/views/components/dxwaterfall.php:51 msgid "X-Small" -msgstr "" +msgstr "Extra piccolo" #: application/views/components/dxwaterfall.php:52 msgid "Small" -msgstr "" +msgstr "Piccolo" #: application/views/components/dxwaterfall.php:53 msgid "Medium" -msgstr "" +msgstr "Medio" #: application/views/components/dxwaterfall.php:54 msgid "Large" -msgstr "" +msgstr "Grande" #: application/views/components/dxwaterfall.php:55 msgid "X-Large" -msgstr "" +msgstr "Extra grande" #: application/views/components/dxwaterfall.php:56 msgid "by:" -msgstr "" +msgstr "da:" #: application/views/components/dxwaterfall.php:57 #, php-format msgid "Please wait %s second(s) before toggling DX Waterfall again." -msgstr "" +msgstr "Attendere %s secondo/i prima di riattivare il DX Waterfall." #: application/views/components/dxwaterfall.php:81 #: application/views/components/dxwaterfall.php:87 msgid "DX Waterfall Help" -msgstr "" +msgstr "Aiuto DX Waterfall" #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 @@ -9268,7 +9321,7 @@ msgstr "Nome ADIF" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:572 +#: application/views/interface_assets/header.php:574 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:8 application/views/mode/index.php:55 @@ -9466,7 +9519,7 @@ msgstr "Progressivo" #: application/views/contesting/index.php:160 msgid "WebSocket (Requires WLGate>1.1.10)" -msgstr "" +msgstr "WebSocket (Richiede WLGate>=1.1.10)" #: application/views/contesting/index.php:187 #: application/views/contesting/index.php:270 @@ -9694,7 +9747,7 @@ msgstr "Modo di Propagazione" #: application/views/csv/index.php:95 msgctxt "Propagation Mode" msgid "All but Repeater" -msgstr "" +msgstr "Tutti tranne ripetitori" #: application/views/dashboard/index.php:5 msgid "RSTS" @@ -9710,6 +9763,8 @@ msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your version " "is: %s." msgstr "" +"Devi aggiornare la tua versione di PHP. La versione minima è %s. La tua " +"versione è %s." #: application/views/dashboard/index.php:118 #, php-format @@ -9742,12 +9797,15 @@ msgid "" "Your active station location is not linked to your active station logbook. " "Click %shere%s to do it." msgstr "" +"La posizione della tua stazione attiva non è collegata al tuo registro di " +"stazione attivo. Clicca %squi%s per farlo." #: application/views/dashboard/index.php:163 #, php-format msgctxt "Dashboard Warning" msgid "You have no station linked to your logbook. Click %shere%s to do it." msgstr "" +"Non hai alcuna stazione collegata al tuo registro. Clicca %squi%s per farlo." #: application/views/dashboard/index.php:173 #, php-format @@ -9762,6 +9820,8 @@ msgid "" "Don't lose your streak - You have already had at least one QSO for the last " "%s consecutive days." msgstr "" +"Non perdere la tua serie: hai già avuto almeno un QSO negli ultimi %s giorni " +"consecutivi." #: application/views/dashboard/index.php:184 msgid "You have made no QSOs today; time to turn on the radio!" @@ -9786,14 +9846,15 @@ msgid "" "LoTW Warning: There is an issue with at least one of your %sLoTW " "certificates%s!" msgstr "" +"Avviso LoTW: C'è un problema con almeno uno dei tuoi certificati %sLoTW%s!" #: application/views/dashboard/index.php:216 msgid "At least one of your certificates is expired" -msgstr "" +msgstr "Almeno uno dei tuoi certificati è scaduto" #: application/views/dashboard/index.php:217 msgid "At least one of your certificates is expiring" -msgstr "" +msgstr "Almeno uno dei tuoi certificati sta per scadere" #: application/views/dashboard/index.php:295 #: application/views/qso/index.php:900 @@ -9947,16 +10008,16 @@ msgstr "Locatori VUCC" #: application/views/dashboard/index.php:474 msgid "Solar Data & Propagation" -msgstr "" +msgstr "Dati solari e propagazione" #: application/views/dashboard/index.php:476 #, php-format msgid "Last update at %s." -msgstr "" +msgstr "Ultimo aggiornamento alle %s." #: application/views/dashboard/index.php:485 msgid "Data provided by HAMqsl." -msgstr "" +msgstr "Dati forniti da HAMqsl." #: application/views/dayswithqso/index.php:3 msgid "Number of QSOs for this day of the week" @@ -10533,11 +10594,11 @@ msgstr "Aggiorna Hams Of Note" #: application/views/debug/index.php:568 msgid "HAMqsl" -msgstr "" +msgstr "HAMqsl" #: application/views/debug/index.php:573 msgid "VUCC Grids" -msgstr "" +msgstr "Locatori VUCC" #: application/views/debug/index.php:582 msgid "QSO-DB Maintenance" @@ -11292,19 +11353,19 @@ msgstr "Informazioni sul satellite" #: application/views/interface_assets/footer.php:62 msgid "Error loading notes" -msgstr "" +msgstr "Errore nel caricamento delle note" #: application/views/interface_assets/footer.php:63 msgid "Sorting" -msgstr "" +msgstr "Ordinamento" #: application/views/interface_assets/footer.php:64 msgid "Duplication is disabled for Contacts notes" -msgstr "" +msgstr "La duplicazione è disabilitata per le note Contatti" #: application/views/interface_assets/footer.php:66 msgid "Duplicate" -msgstr "" +msgstr "Duplicare" #: application/views/interface_assets/footer.php:67 #: application/views/notes/view.php:48 @@ -11313,118 +11374,123 @@ msgstr "Cancella Nota" #: application/views/interface_assets/footer.php:68 msgid "Duplicate Note" -msgstr "" +msgstr "Nota duplicata" #: application/views/interface_assets/footer.php:69 msgid "Delete this note?" -msgstr "" +msgstr "Cancellare questa nota?" #: application/views/interface_assets/footer.php:70 msgid "Duplicate this note?" -msgstr "" +msgstr "Duplicare questa nota?" #: application/views/interface_assets/footer.php:71 msgid "Duplication Disabled" -msgstr "" +msgstr "Duplicazione disabilitata" #: application/views/interface_assets/footer.php:72 msgid "No notes were found" -msgstr "" +msgstr "Nessuna nota trovata" #: application/views/interface_assets/footer.php:73 msgid "No notes for this callsign" -msgstr "" +msgstr "Nessuna nota per questo nominativo" #: application/views/interface_assets/footer.php:74 msgid "Callsign Note" -msgstr "" +msgstr "Note nominativo" #: application/views/interface_assets/footer.php:75 msgid "Note deleted successfully" -msgstr "" +msgstr "Nota eliminata con successo" #: application/views/interface_assets/footer.php:76 msgid "Note created successfully" -msgstr "" +msgstr "Nota creata con successo" #: application/views/interface_assets/footer.php:77 msgid "Note saved successfully" -msgstr "" +msgstr "Nota salvata con successo" #: application/views/interface_assets/footer.php:78 msgid "Error saving note" -msgstr "" +msgstr "Errore nel salvataggio della nota" #: application/views/interface_assets/footer.php:79 #, php-format msgid "QSO with %s by %s was added to logbook." -msgstr "" +msgstr "QSO con %s di %s è stato aggiunto al logbook." #: application/views/interface_assets/footer.php:80 msgid "QSO Added to Backlog" -msgstr "" +msgstr "QSO aggiunto all'arretrato" #: application/views/interface_assets/footer.php:81 #, php-format msgid "Send email to %s" -msgstr "" +msgstr "Invia email a %s" #: application/views/interface_assets/footer.php:82 msgid "" "Callsign was already worked and confirmed in the past on this band and mode!" msgstr "" +"Il nominativo è già stato lavorato e confermato in passato su questa banda e " +"modalità!" #: application/views/interface_assets/footer.php:83 msgid "Callsign was already worked in the past on this band and mode!" msgstr "" +"Il nominativo è già stato lavorato in passato su questa banda e modalità!" #: application/views/interface_assets/footer.php:84 msgid "New Callsign!" -msgstr "" +msgstr "Nuovo nominativo!" #: application/views/interface_assets/footer.php:85 msgid "Grid was already worked and confirmed in the past" -msgstr "" +msgstr "Questo locatore è già stato collegato e confermato in passato" #: application/views/interface_assets/footer.php:86 msgid "Grid was already worked in the past" -msgstr "" +msgstr "Questo locatore è già stato collegato in passato" #: application/views/interface_assets/footer.php:87 msgid "New grid!" -msgstr "" +msgstr "Nuovo locatore!" #: application/views/interface_assets/footer.php:88 msgid "Are you sure to delete Fav?" -msgstr "" +msgstr "Sicuro di eliminare i preferiti?" #: application/views/interface_assets/footer.php:89 msgid "" "DXCC was already worked and confirmed in the past on this band and mode!" msgstr "" +"DXCC era già stato collegato e confermato in passato su questa banda e " +"modalità!" #: application/views/interface_assets/footer.php:90 msgid "DXCC was already worked in the past on this band and mode!" -msgstr "" +msgstr "DXCC è già stato collegato in passato su questa banda e modalità!" #: application/views/interface_assets/footer.php:91 msgid "New DXCC, not worked on this band and mode!" -msgstr "" +msgstr "Nuovo DXCC, non collegato su questa banda e modalità!" #: application/views/interface_assets/footer.php:92 #, php-format msgid "Lookup %s info on %s" -msgstr "" +msgstr "Ricerca informazioni %s su %s" #: application/views/interface_assets/footer.php:93 #, php-format msgid "Lookup %s summit info on %s" -msgstr "" +msgstr "Cerca informazioni sul summit %s su %s" #: application/views/interface_assets/footer.php:94 #, php-format msgid "Lookup %s reference info on %s" -msgstr "" +msgstr "Cerca le informazioni di riferimento %s su %s" #: application/views/interface_assets/footer.php:95 msgid "Error loading bearing!" @@ -11432,47 +11498,47 @@ msgstr "" #: application/views/interface_assets/footer.php:96 msgid "Aliases" -msgstr "" +msgstr "Alias" #: application/views/interface_assets/footer.php:97 msgid "Previously" -msgstr "" +msgstr "In precedenza" #: application/views/interface_assets/footer.php:98 msgid "Born" -msgstr "" +msgstr "Nato" #: application/views/interface_assets/footer.php:99 msgid "years old" -msgstr "" +msgstr "anni" #: application/views/interface_assets/footer.php:100 msgid "License" -msgstr "" +msgstr "Licenza" #: application/views/interface_assets/footer.php:101 msgid "from" -msgstr "" +msgstr "da" #: application/views/interface_assets/footer.php:102 msgid "years" -msgstr "" +msgstr "anni" #: application/views/interface_assets/footer.php:103 msgid "expired on" -msgstr "" +msgstr "scaduto il" #: application/views/interface_assets/footer.php:104 msgid "Website" -msgstr "" +msgstr "Sito web" #: application/views/interface_assets/footer.php:105 msgid "Local time" -msgstr "" +msgstr "Ora locale" #: application/views/interface_assets/footer.php:107 msgid "View location on Google Maps (Satellite)" -msgstr "" +msgstr "Visualizza la posizione su Google Maps (Satellite)" #: application/views/interface_assets/footer.php:108 msgid "Novice" @@ -11595,7 +11661,7 @@ msgid "" msgstr "" #: application/views/interface_assets/footer.php:223 -#: application/views/interface_assets/header.php:533 +#: application/views/interface_assets/header.php:535 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "Informazioni sulla versione" @@ -11981,80 +12047,80 @@ msgstr "Gestisci %s" msgid "No Clubstations available" msgstr "Nessun club/stazione disponibile" -#: application/views/interface_assets/header.php:477 +#: application/views/interface_assets/header.php:479 msgid "Other Export Options" msgstr "Altre opzioni di esportazione" -#: application/views/interface_assets/header.php:485 +#: application/views/interface_assets/header.php:487 msgid "Cabrillo Export" msgstr "Esportazione Cabrillo" -#: application/views/interface_assets/header.php:487 +#: application/views/interface_assets/header.php:489 msgid "EDI Export" msgstr "Esportazione EDI" -#: application/views/interface_assets/header.php:509 +#: application/views/interface_assets/header.php:511 msgid "QSL Queue" msgstr "Coda QSL" -#: application/views/interface_assets/header.php:510 +#: application/views/interface_assets/header.php:512 msgid "Labels" msgstr "Etichette" -#: application/views/interface_assets/header.php:512 +#: application/views/interface_assets/header.php:514 msgid "Third-Party Services" msgstr "Servizi di terze parti" -#: application/views/interface_assets/header.php:515 +#: application/views/interface_assets/header.php:517 msgid "eQSL Import / Export" msgstr "Importazione / Esportazione eQSL" -#: application/views/interface_assets/header.php:516 +#: application/views/interface_assets/header.php:518 msgid "HRDLog Logbook" msgstr "Registro HRDLog" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:521 msgid "Clublog Import / Export" msgstr "Importazione / Esportazione Clublog" -#: application/views/interface_assets/header.php:522 +#: application/views/interface_assets/header.php:524 msgid "DCL Export" msgstr "Esportazione DCL" -#: application/views/interface_assets/header.php:534 +#: application/views/interface_assets/header.php:536 #: application/views/logbookadvanced/index.php:831 msgid "Help" msgstr "Aiuto" -#: application/views/interface_assets/header.php:535 +#: application/views/interface_assets/header.php:537 msgid "Forum" msgstr "Forum" -#: application/views/interface_assets/header.php:539 +#: application/views/interface_assets/header.php:541 #, php-format msgid "Stop impersonate and switch back to %s" msgstr "Smetti di impersonare e torna a %s" -#: application/views/interface_assets/header.php:540 +#: application/views/interface_assets/header.php:542 #, php-format msgid "Switch back to %s" msgstr "Torna a %s" -#: application/views/interface_assets/header.php:544 +#: application/views/interface_assets/header.php:546 msgid "Logout" msgstr "Disconnetti" -#: application/views/interface_assets/header.php:552 +#: application/views/interface_assets/header.php:554 msgid "Select a Location" msgstr "Seleziona una posizione" -#: application/views/interface_assets/header.php:594 +#: application/views/interface_assets/header.php:596 msgid "You miss station-locations here? Go to stationsetup and fav them" msgstr "" "Non trovi le posizioni delle stazioni? Vai alle impostazioni della stazione " "e aggiungile ai preferiti" -#: application/views/interface_assets/header.php:631 +#: application/views/interface_assets/header.php:633 msgid "Extras" msgstr "Extra" diff --git a/application/locale/ja/LC_MESSAGES/messages.mo b/application/locale/ja/LC_MESSAGES/messages.mo index 11a2d4e4e..6e33da422 100644 Binary files a/application/locale/ja/LC_MESSAGES/messages.mo and b/application/locale/ja/LC_MESSAGES/messages.mo differ diff --git a/application/locale/ja/LC_MESSAGES/messages.po b/application/locale/ja/LC_MESSAGES/messages.po index 9c6aa2f79..5de0c8921 100644 --- a/application/locale/ja/LC_MESSAGES/messages.po +++ b/application/locale/ja/LC_MESSAGES/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-12-07 09:59+0000\n" -"PO-Revision-Date: 2025-12-05 10:52+0000\n" +"POT-Creation-Date: 2025-12-08 10:52+0000\n" +"PO-Revision-Date: 2025-12-08 10:52+0000\n" "Last-Translator: \"S.NAKAO(JG3HLX)\" \n" "Language-Team: Japanese \n" @@ -107,7 +107,7 @@ msgstr "" #: application/controllers/Search.php:12 #: application/controllers/Simplefle.php:7 #: application/controllers/Station.php:17 -#: application/controllers/Stationsetup.php:15 +#: application/controllers/Stationsetup.php:16 #: application/controllers/Themes.php:17 #: application/controllers/Timeline.php:10 #: application/controllers/Timeplotter.php:11 @@ -212,7 +212,7 @@ msgid "date incorrect" msgstr "日付が間違っています" #: application/controllers/Adif.php:283 -#: application/views/interface_assets/header.php:474 +#: application/views/interface_assets/header.php:476 msgid "ADIF Import / Export" msgstr "ADIF インポート/エクスポート" @@ -884,7 +884,7 @@ msgid "Not running" msgstr "実行されていません" #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:483 +#: application/views/interface_assets/header.php:485 msgid "SOTA CSV Export" msgstr "SOTA CSVエクスポート" @@ -1009,7 +1009,7 @@ msgid "and propagation" msgstr "および伝播" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:481 +#: application/views/interface_assets/header.php:483 msgid "DX Atlas Gridsquare Export" msgstr "DX アトラス グリッドスクエア エクスポート" @@ -1107,7 +1107,7 @@ msgid "No QSOs found to upload." msgstr "アップロードする QSO が見つかりません。" #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:479 +#: application/views/interface_assets/header.php:481 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "KMLエクスポート" @@ -1819,7 +1819,7 @@ msgid "Operator" msgstr "オペレーター" #: application/controllers/Logbook.php:1395 -#: application/controllers/Stationsetup.php:423 +#: application/controllers/Stationsetup.php:424 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/dxcc/index.php:291 #: application/views/awards/wae/index.php:175 @@ -1836,7 +1836,7 @@ msgstr "オペレーター" #: application/views/station_profile/edit.php:109 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/locationlist.php:54 +#: application/views/stationsetup/locationlist.php:58 #: application/views/stationsetup/stationsetup.php:156 #: application/views/timeline/index.php:216 #: application/views/timeplotter/index.php:33 @@ -1858,7 +1858,7 @@ msgstr "クイック検索" #: application/controllers/Lotw.php:64 application/controllers/Lotw.php:96 #: application/controllers/Lotw.php:136 application/views/adif/import.php:42 #: application/views/dcl_views/upload_cert.php:3 -#: application/views/interface_assets/header.php:514 +#: application/views/interface_assets/header.php:516 #: application/views/lotw/import.php:3 application/views/lotw_views/index.php:9 #: application/views/lotw_views/upload_cert.php:3 #: application/views/user/edit.php:880 application/views/visitor/index.php:328 @@ -2189,7 +2189,7 @@ msgid "Invalid Station ID" msgstr "無効なステーションID" #: application/controllers/Oqrs.php:163 -#: application/views/interface_assets/header.php:504 +#: application/views/interface_assets/header.php:506 msgid "OQRS Requests" msgstr "OQRSリクエスト" @@ -2241,7 +2241,7 @@ msgid "" msgstr "負の緯度は赤道の南側、負の経度はグリニッジの西側です。" #: application/controllers/Qrz.php:204 -#: application/views/interface_assets/header.php:517 +#: application/views/interface_assets/header.php:519 msgid "QRZ Logbook" msgstr "QRZログブック" @@ -2289,7 +2289,7 @@ msgid "No callsign provided." msgstr "コールサインが提供されていません。" #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:531 +#: application/views/interface_assets/header.php:533 msgid "Hardware Interfaces" msgstr "ハードウェアインターフェース" @@ -2336,7 +2336,7 @@ msgid "Default (click to release)" msgstr "デフォルト(クリックして解除)" #: application/controllers/Radio.php:115 -#: application/controllers/Stationsetup.php:401 +#: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 @@ -2355,7 +2355,7 @@ msgid "Edit" msgstr "編集" #: application/controllers/Radio.php:116 -#: application/controllers/Stationsetup.php:414 +#: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 #: application/views/club/permissions.php:353 @@ -2526,7 +2526,7 @@ msgid "Empty Logbook" msgstr "空のログブック" #: application/controllers/Station.php:38 -#: application/controllers/Stationsetup.php:251 +#: application/controllers/Stationsetup.php:252 msgid "Create Station Location" msgstr "ステーションの場所を作成する" @@ -2559,54 +2559,55 @@ msgstr "重複ステーションの場所:" msgid "Please check value for grid locator (%s)" msgstr "グリッドロケータの値を確認してください( %s )" -#: application/controllers/Stationsetup.php:60 +#: application/controllers/Stationsetup.php:61 #: application/views/interface_assets/header.php:441 -#: application/views/interface_assets/header.php:594 +#: application/views/interface_assets/header.php:474 +#: application/views/interface_assets/header.php:596 msgid "Station Setup" msgstr "ステーションのセットアップ" -#: application/controllers/Stationsetup.php:75 -#: application/controllers/Stationsetup.php:93 -#: application/controllers/Stationsetup.php:437 -#: application/controllers/Stationsetup.php:451 +#: application/controllers/Stationsetup.php:76 +#: application/controllers/Stationsetup.php:94 +#: application/controllers/Stationsetup.php:438 +#: application/controllers/Stationsetup.php:452 msgid "Not allowed" msgstr "許可されていません" -#: application/controllers/Stationsetup.php:97 -#: application/controllers/Stationsetup.php:111 -#: application/controllers/Stationsetup.php:130 -#: application/controllers/Stationsetup.php:143 -#: application/controllers/Stationsetup.php:156 -#: application/controllers/Stationsetup.php:177 -#: application/controllers/Stationsetup.php:478 +#: application/controllers/Stationsetup.php:98 +#: application/controllers/Stationsetup.php:112 +#: application/controllers/Stationsetup.php:131 +#: application/controllers/Stationsetup.php:144 +#: application/controllers/Stationsetup.php:157 +#: application/controllers/Stationsetup.php:178 +#: application/controllers/Stationsetup.php:479 #: application/views/qso/index.php:745 application/views/simplefle/index.php:39 #: application/views/widgets/on_air.php:181 #: application/views/widgets/on_air.php:243 msgid "Error" msgstr "エラー" -#: application/controllers/Stationsetup.php:184 +#: application/controllers/Stationsetup.php:185 #: application/views/stationsetup/stationsetup.php:25 msgid "Create Station Logbook" msgstr "ステーションログブックを作成する" -#: application/controllers/Stationsetup.php:191 +#: application/controllers/Stationsetup.php:192 msgid "Edit container name" msgstr "コンテナ名を編集" -#: application/controllers/Stationsetup.php:206 +#: application/controllers/Stationsetup.php:207 msgid "Edit linked locations" msgstr "リンクされた場所を編集する" -#: application/controllers/Stationsetup.php:215 +#: application/controllers/Stationsetup.php:216 msgid "Edit visitor site" msgstr "訪問者サイトを編集する" -#: application/controllers/Stationsetup.php:237 +#: application/controllers/Stationsetup.php:238 msgid "Error. Link is already in use!" msgstr "エラー。リンクは既に使用中です!" -#: application/controllers/Stationsetup.php:278 +#: application/controllers/Stationsetup.php:279 #: application/views/options/appearance.php:57 #: application/views/options/appearance.php:64 #: application/views/options/appearance.php:73 @@ -2624,19 +2625,19 @@ msgstr "エラー。リンクは既に使用中です!" msgid "Disabled" msgstr "無効" -#: application/controllers/Stationsetup.php:286 +#: application/controllers/Stationsetup.php:287 #: application/views/stationsetup/stationsetup.php:47 msgid "Set as Active Logbook" msgstr "アクティブなログブックとして設定" -#: application/controllers/Stationsetup.php:288 -#: application/views/interface_assets/header.php:592 +#: application/controllers/Stationsetup.php:289 +#: application/views/interface_assets/header.php:594 #: application/views/stationsetup/stationsetup.php:49 #: application/views/view_log/index.php:4 msgid "Active Logbook" msgstr "アクティブなログブック" -#: application/controllers/Stationsetup.php:295 +#: application/controllers/Stationsetup.php:296 #: application/views/stationsetup/stationsetup.php:58 #, php-format msgid "" @@ -2646,16 +2647,16 @@ msgstr "" "ステーションログブック %s を削除してもよろしいですか?ここにリンクされている" "場所は、別のログブックに再リンクする必要があります。" -#: application/controllers/Stationsetup.php:305 +#: application/controllers/Stationsetup.php:306 #: application/views/stationsetup/stationsetup.php:68 msgid "View Public Page for Logbook: " msgstr "ログブックの公開ページを表示: " -#: application/controllers/Stationsetup.php:306 +#: application/controllers/Stationsetup.php:307 msgid "Are you sure you want to delete the public slug?" msgstr "パブリックスラッグを削除してもよろしいですか?" -#: application/controllers/Stationsetup.php:391 +#: application/controllers/Stationsetup.php:392 #: application/views/stationsetup/stationsetup.php:161 #, php-format msgid "" @@ -2664,17 +2665,17 @@ msgstr "" "ステーションプロファイル %s をアクティブなステーションに設定してもよろしいで" "すか?" -#: application/controllers/Stationsetup.php:391 +#: application/controllers/Stationsetup.php:392 #: application/views/stationsetup/stationsetup.php:161 msgid "Set Active" msgstr "アクティブに設定" -#: application/controllers/Stationsetup.php:393 +#: application/controllers/Stationsetup.php:394 #: application/views/stationsetup/stationsetup.php:163 msgid "Active Station" msgstr "アクティブステーション" -#: application/controllers/Stationsetup.php:396 +#: application/controllers/Stationsetup.php:397 #: application/views/interface_assets/header.php:131 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:86 #: application/views/simplefle/index.php:28 @@ -2684,24 +2685,24 @@ msgstr "アクティブステーション" msgid "QSO" msgstr "QSO" -#: application/controllers/Stationsetup.php:405 +#: application/controllers/Stationsetup.php:406 #: application/views/stationsetup/stationsetup.php:192 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "この局プロファイル内のすべての QSO を削除してもよろしいですか?" -#: application/controllers/Stationsetup.php:405 +#: application/controllers/Stationsetup.php:406 #: application/views/stationsetup/stationsetup.php:142 #: application/views/stationsetup/stationsetup.php:194 msgid "Empty Log" msgstr "ログ削除" -#: application/controllers/Stationsetup.php:409 +#: application/controllers/Stationsetup.php:410 #: application/views/stationsetup/stationsetup.php:135 #: application/views/stationsetup/stationsetup.php:175 msgid "Copy" msgstr "コピー" -#: application/controllers/Stationsetup.php:414 +#: application/controllers/Stationsetup.php:415 #: application/views/stationsetup/stationsetup.php:198 #, php-format msgid "" @@ -2711,7 +2712,7 @@ msgstr "" "ステーションプロファイルを削除してもよろしいですか? %s '? これにより、この局" "プロファイル内のすべての QSO が削除されます。" -#: application/controllers/Stationsetup.php:421 +#: application/controllers/Stationsetup.php:422 #: application/views/qso/edit_ajax.php:236 #: application/views/station_profile/create.php:75 #: application/views/station_profile/edit.php:103 @@ -2720,11 +2721,11 @@ msgstr "" msgid "Please select one" msgstr "1つ選択してください" -#: application/controllers/Stationsetup.php:504 +#: application/controllers/Stationsetup.php:505 msgid "Edit Export Map options" msgstr "エクスポートマップのオプションを編集" -#: application/controllers/Stationsetup.php:526 +#: application/controllers/Stationsetup.php:527 msgid "Station location list" msgstr "局の所在地一覧" @@ -3215,7 +3216,7 @@ msgstr "マップをエクスポート" #: application/controllers/Webadif.php:95 #: application/controllers/Webadif.php:142 -#: application/views/interface_assets/header.php:518 +#: application/views/interface_assets/header.php:520 msgid "QO-100 Dx Club Upload" msgstr "QO-100 Dxクラブアップロード" @@ -3406,27 +3407,27 @@ msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" "HRDlog: HRDlog 資格情報を持つステーション プロファイルが見つかりません。" -#: application/models/Logbook_model.php:1341 +#: application/models/Logbook_model.php:1346 msgid "Station ID not allowed" msgstr "ステーションIDは許可されていません" -#: application/models/Logbook_model.php:1346 +#: application/models/Logbook_model.php:1351 msgid "No Call given" msgstr "コールなし" -#: application/models/Logbook_model.php:1416 -#: application/models/Logbook_model.php:1618 +#: application/models/Logbook_model.php:1421 +#: application/models/Logbook_model.php:1623 msgid "DXCC has to be Numeric" msgstr "DXCCは数値でなければなりません" -#: application/models/Logbook_model.php:4643 +#: application/models/Logbook_model.php:4648 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "%s との QSO を %s でインポート中に、誤ったステーションコールサイン %s が検出" "されました: スキップされました" -#: application/models/Logbook_model.php:4657 +#: application/models/Logbook_model.php:4662 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3434,11 +3435,11 @@ msgstr "" "有効な日付のないQSOをインポートしようとしました。このQSOはインポートされませ" "んでした。無効です" -#: application/models/Logbook_model.php:4666 +#: application/models/Logbook_model.php:4671 msgid "QSO on" msgstr "QSOオン" -#: application/models/Logbook_model.php:4666 +#: application/models/Logbook_model.php:4671 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3446,7 +3447,7 @@ msgstr "" "コールが指定されていないQSOをインポートしようとしました。このQSOはインポート" "されませんでした。無効です" -#: application/models/Logbook_model.php:4715 +#: application/models/Logbook_model.php:4720 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3455,64 +3456,64 @@ msgstr "" "%s でのQSO: バンドが指定されていないQSOをインポートしようとしました。このQSO" "はインポートされませんでした。無効です" -#: application/models/Logbook_model.php:4980 +#: application/models/Logbook_model.php:4985 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "qslrdate が無効です (YYYYMMDD)" -#: application/models/Logbook_model.php:4991 +#: application/models/Logbook_model.php:4996 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "qslsdate が無効です (YYYYMMDD)" -#: application/models/Logbook_model.php:5052 +#: application/models/Logbook_model.php:5057 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "clublog_qso_upload_date が無効です (YYYYMMDD)" -#: application/models/Logbook_model.php:5427 +#: application/models/Logbook_model.php:5432 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "複製用" -#: application/models/Logbook_model.php:5492 -#: application/models/Logbook_model.php:5587 +#: application/models/Logbook_model.php:5497 +#: application/models/Logbook_model.php:5592 msgid "QSO could not be matched" msgstr "QSOが一致しませんでした" -#: application/models/Logbook_model.php:5500 +#: application/models/Logbook_model.php:5505 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "LoTW/Clublog/eQSL/コンテストで確認済み" -#: application/models/Logbook_model.php:5506 +#: application/models/Logbook_model.php:5511 msgid "confirmed by award manager" msgstr "賞の管理者によって確認された" -#: application/models/Logbook_model.php:5510 +#: application/models/Logbook_model.php:5515 msgid "confirmed by cross-check of DCL data" msgstr "DCLデータのクロスチェックによって確認された" -#: application/models/Logbook_model.php:5514 +#: application/models/Logbook_model.php:5519 msgid "confirmation pending" msgstr "確認中" -#: application/models/Logbook_model.php:5517 +#: application/models/Logbook_model.php:5522 msgid "unconfirmed" msgstr "未確認" -#: application/models/Logbook_model.php:5520 +#: application/models/Logbook_model.php:5525 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "不明" -#: application/models/Logbook_model.php:5590 +#: application/models/Logbook_model.php:5595 msgid "POTA reference already in log" msgstr "POTA 参照。既にログに存在します" -#: application/models/Logbook_model.php:5593 +#: application/models/Logbook_model.php:5598 msgid "QSO updated" msgstr "QSOが更新されました" -#: application/models/Logbook_model.php:6400 +#: application/models/Logbook_model.php:6405 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -4943,7 +4944,7 @@ msgstr "" #: application/views/adif/import_success.php:59 msgid "You might have ADIF errors. Please check the following information:" -msgstr "" +msgstr "ADIFエラーが発生している可能性があります。以下の情報をご確認ください。" #: application/views/adif/mark_lotw.php:12 #: application/views/hrdlog/mark_hrdlog.php:12 @@ -5032,7 +5033,7 @@ msgid "Save" msgstr "保存" #: application/views/api/index.php:8 -#: application/views/interface_assets/header.php:530 +#: application/views/interface_assets/header.php:532 msgid "API Keys" msgstr "APIキー" @@ -9228,7 +9229,7 @@ msgstr "ADIF名" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:572 +#: application/views/interface_assets/header.php:574 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:8 application/views/mode/index.php:55 @@ -11558,7 +11559,7 @@ msgstr "" "ださい。" #: application/views/interface_assets/footer.php:223 -#: application/views/interface_assets/header.php:533 +#: application/views/interface_assets/header.php:535 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "バージョン情報" @@ -11943,80 +11944,80 @@ msgstr "%s を管理する" msgid "No Clubstations available" msgstr "利用できるクラブステーションはありません" -#: application/views/interface_assets/header.php:477 +#: application/views/interface_assets/header.php:479 msgid "Other Export Options" msgstr "その他のエクスポートオプション" -#: application/views/interface_assets/header.php:485 +#: application/views/interface_assets/header.php:487 msgid "Cabrillo Export" msgstr "Cabrillo・エクスポート" -#: application/views/interface_assets/header.php:487 +#: application/views/interface_assets/header.php:489 msgid "EDI Export" msgstr "EDIエクスポート" -#: application/views/interface_assets/header.php:509 +#: application/views/interface_assets/header.php:511 msgid "QSL Queue" msgstr "QSLキュー" -#: application/views/interface_assets/header.php:510 +#: application/views/interface_assets/header.php:512 msgid "Labels" msgstr "ラベル" -#: application/views/interface_assets/header.php:512 +#: application/views/interface_assets/header.php:514 msgid "Third-Party Services" msgstr "サードパーティのサービス" -#: application/views/interface_assets/header.php:515 +#: application/views/interface_assets/header.php:517 msgid "eQSL Import / Export" msgstr "eQSLインポート/エクスポート" -#: application/views/interface_assets/header.php:516 +#: application/views/interface_assets/header.php:518 msgid "HRDLog Logbook" msgstr "HRDLog ログブック" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:521 msgid "Clublog Import / Export" msgstr "Clublogのインポート/エクスポート" -#: application/views/interface_assets/header.php:522 +#: application/views/interface_assets/header.php:524 msgid "DCL Export" msgstr "DCLエクスポート" -#: application/views/interface_assets/header.php:534 +#: application/views/interface_assets/header.php:536 #: application/views/logbookadvanced/index.php:831 msgid "Help" msgstr "ヘルプ" -#: application/views/interface_assets/header.php:535 +#: application/views/interface_assets/header.php:537 msgid "Forum" msgstr "フォーラム" -#: application/views/interface_assets/header.php:539 +#: application/views/interface_assets/header.php:541 #, php-format msgid "Stop impersonate and switch back to %s" msgstr "%s へのなりすましを停止し、元に戻す" -#: application/views/interface_assets/header.php:540 +#: application/views/interface_assets/header.php:542 #, php-format msgid "Switch back to %s" msgstr "%sに戻す" -#: application/views/interface_assets/header.php:544 +#: application/views/interface_assets/header.php:546 msgid "Logout" msgstr "ログアウト" -#: application/views/interface_assets/header.php:552 +#: application/views/interface_assets/header.php:554 msgid "Select a Location" msgstr "場所を選択" -#: application/views/interface_assets/header.php:594 +#: application/views/interface_assets/header.php:596 msgid "You miss station-locations here? Go to stationsetup and fav them" msgstr "" "ステーションの位置が表示されていない場合は、ステーション設定画面に移動して、" "お気に入り登録してください" -#: application/views/interface_assets/header.php:631 +#: application/views/interface_assets/header.php:633 msgid "Extras" msgstr "特典" diff --git a/application/locale/lt/LC_MESSAGES/messages.po b/application/locale/lt/LC_MESSAGES/messages.po index 317590ecb..1791948ca 100644 --- a/application/locale/lt/LC_MESSAGES/messages.po +++ b/application/locale/lt/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-12-07 09:59+0000\n" +"POT-Creation-Date: 2025-12-08 10:52+0000\n" "PO-Revision-Date: 2024-11-19 01:22+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Lithuanian \n" "Language-Team: Latvian \n" "Language-Team: Dutch \n" @@ -109,7 +109,7 @@ msgstr "" #: application/controllers/Search.php:12 #: application/controllers/Simplefle.php:7 #: application/controllers/Station.php:17 -#: application/controllers/Stationsetup.php:15 +#: application/controllers/Stationsetup.php:16 #: application/controllers/Themes.php:17 #: application/controllers/Timeline.php:10 #: application/controllers/Timeplotter.php:11 @@ -214,7 +214,7 @@ msgid "date incorrect" msgstr "Datum niet correct" #: application/controllers/Adif.php:283 -#: application/views/interface_assets/header.php:474 +#: application/views/interface_assets/header.php:476 msgid "ADIF Import / Export" msgstr "ADIF Import / Export" @@ -886,7 +886,7 @@ msgid "Not running" msgstr "Draait niet" #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:483 +#: application/views/interface_assets/header.php:485 msgid "SOTA CSV Export" msgstr "SOTA CSV-export" @@ -1012,7 +1012,7 @@ msgid "and propagation" msgstr "en propagatie" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:481 +#: application/views/interface_assets/header.php:483 msgid "DX Atlas Gridsquare Export" msgstr "DX Atlas locatorvakken Exporteren" @@ -1075,7 +1075,7 @@ msgstr "eQSL-kaart afbeelding downloaden" #: application/controllers/Eqsl.php:518 msgid "All eQSLs marked as uploaded" -msgstr "" +msgstr "Alle eQSL's gemarkeerd als geüpload" #: application/controllers/Generic_qsl.php:18 msgid "Confirmations" @@ -1111,7 +1111,7 @@ msgid "No QSOs found to upload." msgstr "Geen QSOs gevonden om te uploaden." #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:479 +#: application/views/interface_assets/header.php:481 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "KML-export" @@ -1823,7 +1823,7 @@ msgid "Operator" msgstr "Operator" #: application/controllers/Logbook.php:1395 -#: application/controllers/Stationsetup.php:423 +#: application/controllers/Stationsetup.php:424 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/dxcc/index.php:291 #: application/views/awards/wae/index.php:175 @@ -1840,7 +1840,7 @@ msgstr "Operator" #: application/views/station_profile/edit.php:109 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/locationlist.php:54 +#: application/views/stationsetup/locationlist.php:58 #: application/views/stationsetup/stationsetup.php:156 #: application/views/timeline/index.php:216 #: application/views/timeplotter/index.php:33 @@ -1862,7 +1862,7 @@ msgstr "Snel opzoeken" #: application/controllers/Lotw.php:64 application/controllers/Lotw.php:96 #: application/controllers/Lotw.php:136 application/views/adif/import.php:42 #: application/views/dcl_views/upload_cert.php:3 -#: application/views/interface_assets/header.php:514 +#: application/views/interface_assets/header.php:516 #: application/views/lotw/import.php:3 application/views/lotw_views/index.php:9 #: application/views/lotw_views/upload_cert.php:3 #: application/views/user/edit.php:880 application/views/visitor/index.php:328 @@ -2195,7 +2195,7 @@ msgid "Invalid Station ID" msgstr "Ongeldige station-ID" #: application/controllers/Oqrs.php:163 -#: application/views/interface_assets/header.php:504 +#: application/views/interface_assets/header.php:506 msgid "OQRS Requests" msgstr "OQRS-verzoeken" @@ -2252,7 +2252,7 @@ msgstr "" "lengtegraden liggen ten westen van Greenwich." #: application/controllers/Qrz.php:204 -#: application/views/interface_assets/header.php:517 +#: application/views/interface_assets/header.php:519 msgid "QRZ Logbook" msgstr "QRZ Logboek" @@ -2300,7 +2300,7 @@ msgid "No callsign provided." msgstr "Geen roepnaam opgegeven." #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:531 +#: application/views/interface_assets/header.php:533 msgid "Hardware Interfaces" msgstr "Hardware-interfaces" @@ -2347,7 +2347,7 @@ msgid "Default (click to release)" msgstr "Standaard (klik om vrij te geven)" #: application/controllers/Radio.php:115 -#: application/controllers/Stationsetup.php:401 +#: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 @@ -2366,7 +2366,7 @@ msgid "Edit" msgstr "Bewerken" #: application/controllers/Radio.php:116 -#: application/controllers/Stationsetup.php:414 +#: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 #: application/views/club/permissions.php:353 @@ -2538,7 +2538,7 @@ msgid "Empty Logbook" msgstr "Leeg logboek" #: application/controllers/Station.php:38 -#: application/controllers/Stationsetup.php:251 +#: application/controllers/Stationsetup.php:252 msgid "Create Station Location" msgstr "Maak stationslocatie aan" @@ -2571,54 +2571,55 @@ msgstr "Duplicaat stationslocatie:" msgid "Please check value for grid locator (%s)" msgstr "Controleer de waarde voor locatorvak (%s)" -#: application/controllers/Stationsetup.php:60 +#: application/controllers/Stationsetup.php:61 #: application/views/interface_assets/header.php:441 -#: application/views/interface_assets/header.php:594 +#: application/views/interface_assets/header.php:474 +#: application/views/interface_assets/header.php:596 msgid "Station Setup" msgstr "Stations instellen" -#: application/controllers/Stationsetup.php:75 -#: application/controllers/Stationsetup.php:93 -#: application/controllers/Stationsetup.php:437 -#: application/controllers/Stationsetup.php:451 +#: application/controllers/Stationsetup.php:76 +#: application/controllers/Stationsetup.php:94 +#: application/controllers/Stationsetup.php:438 +#: application/controllers/Stationsetup.php:452 msgid "Not allowed" msgstr "Niet toegestaan" -#: application/controllers/Stationsetup.php:97 -#: application/controllers/Stationsetup.php:111 -#: application/controllers/Stationsetup.php:130 -#: application/controllers/Stationsetup.php:143 -#: application/controllers/Stationsetup.php:156 -#: application/controllers/Stationsetup.php:177 -#: application/controllers/Stationsetup.php:478 +#: application/controllers/Stationsetup.php:98 +#: application/controllers/Stationsetup.php:112 +#: application/controllers/Stationsetup.php:131 +#: application/controllers/Stationsetup.php:144 +#: application/controllers/Stationsetup.php:157 +#: application/controllers/Stationsetup.php:178 +#: application/controllers/Stationsetup.php:479 #: application/views/qso/index.php:745 application/views/simplefle/index.php:39 #: application/views/widgets/on_air.php:181 #: application/views/widgets/on_air.php:243 msgid "Error" msgstr "Fout" -#: application/controllers/Stationsetup.php:184 +#: application/controllers/Stationsetup.php:185 #: application/views/stationsetup/stationsetup.php:25 msgid "Create Station Logbook" msgstr "Maak stationlogboek aan" -#: application/controllers/Stationsetup.php:191 +#: application/controllers/Stationsetup.php:192 msgid "Edit container name" msgstr "Containernaam bewerken" -#: application/controllers/Stationsetup.php:206 +#: application/controllers/Stationsetup.php:207 msgid "Edit linked locations" msgstr "Gekoppelde locaties bewerken" -#: application/controllers/Stationsetup.php:215 +#: application/controllers/Stationsetup.php:216 msgid "Edit visitor site" msgstr "Bezoekerssite bewerken" -#: application/controllers/Stationsetup.php:237 +#: application/controllers/Stationsetup.php:238 msgid "Error. Link is already in use!" msgstr "Fout. Link is al in gebruik!" -#: application/controllers/Stationsetup.php:278 +#: application/controllers/Stationsetup.php:279 #: application/views/options/appearance.php:57 #: application/views/options/appearance.php:64 #: application/views/options/appearance.php:73 @@ -2636,19 +2637,19 @@ msgstr "Fout. Link is al in gebruik!" msgid "Disabled" msgstr "Uitgeschakeld" -#: application/controllers/Stationsetup.php:286 +#: application/controllers/Stationsetup.php:287 #: application/views/stationsetup/stationsetup.php:47 msgid "Set as Active Logbook" msgstr "Instellen als actief logboek" -#: application/controllers/Stationsetup.php:288 -#: application/views/interface_assets/header.php:592 +#: application/controllers/Stationsetup.php:289 +#: application/views/interface_assets/header.php:594 #: application/views/stationsetup/stationsetup.php:49 #: application/views/view_log/index.php:4 msgid "Active Logbook" msgstr "Actief logboek" -#: application/controllers/Stationsetup.php:295 +#: application/controllers/Stationsetup.php:296 #: application/views/stationsetup/stationsetup.php:58 #, php-format msgid "" @@ -2658,16 +2659,16 @@ msgstr "" "Weet je zeker dat je het stationlogboek %s wilt verwijderen? Je moet alle " "locaties die hieraan gekoppeld zijn aan een ander logboek koppelen." -#: application/controllers/Stationsetup.php:305 +#: application/controllers/Stationsetup.php:306 #: application/views/stationsetup/stationsetup.php:68 msgid "View Public Page for Logbook: " msgstr "Bekijk openbare pagina voor logboek: " -#: application/controllers/Stationsetup.php:306 +#: application/controllers/Stationsetup.php:307 msgid "Are you sure you want to delete the public slug?" msgstr "Weet je zeker dat je de openbare slug wilt verwijderen?" -#: application/controllers/Stationsetup.php:391 +#: application/controllers/Stationsetup.php:392 #: application/views/stationsetup/stationsetup.php:161 #, php-format msgid "" @@ -2675,17 +2676,17 @@ msgid "" msgstr "" "Weet je zeker dat je het stationprofiel %s als actief station wilt instellen?" -#: application/controllers/Stationsetup.php:391 +#: application/controllers/Stationsetup.php:392 #: application/views/stationsetup/stationsetup.php:161 msgid "Set Active" msgstr "Actief maken" -#: application/controllers/Stationsetup.php:393 +#: application/controllers/Stationsetup.php:394 #: application/views/stationsetup/stationsetup.php:163 msgid "Active Station" msgstr "Actief station" -#: application/controllers/Stationsetup.php:396 +#: application/controllers/Stationsetup.php:397 #: application/views/interface_assets/header.php:131 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:86 #: application/views/simplefle/index.php:28 @@ -2695,25 +2696,25 @@ msgstr "Actief station" msgid "QSO" msgstr "QSO" -#: application/controllers/Stationsetup.php:405 +#: application/controllers/Stationsetup.php:406 #: application/views/stationsetup/stationsetup.php:192 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" "Weet je zeker dat je alle QSO's binnen dit stationprofiel wilt verwijderen?" -#: application/controllers/Stationsetup.php:405 +#: application/controllers/Stationsetup.php:406 #: application/views/stationsetup/stationsetup.php:142 #: application/views/stationsetup/stationsetup.php:194 msgid "Empty Log" msgstr "Leeg logboek" -#: application/controllers/Stationsetup.php:409 +#: application/controllers/Stationsetup.php:410 #: application/views/stationsetup/stationsetup.php:135 #: application/views/stationsetup/stationsetup.php:175 msgid "Copy" msgstr "Kopiëren" -#: application/controllers/Stationsetup.php:414 +#: application/controllers/Stationsetup.php:415 #: application/views/stationsetup/stationsetup.php:198 #, php-format msgid "" @@ -2723,7 +2724,7 @@ msgstr "" "Weet je zeker dat je het stationprofiel '%s' wilt verwijderen? Dit zal alle " "QSO's binnen dit stationprofiel verwijderen." -#: application/controllers/Stationsetup.php:421 +#: application/controllers/Stationsetup.php:422 #: application/views/qso/edit_ajax.php:236 #: application/views/station_profile/create.php:75 #: application/views/station_profile/edit.php:103 @@ -2732,11 +2733,11 @@ msgstr "" msgid "Please select one" msgstr "Kies er één" -#: application/controllers/Stationsetup.php:504 +#: application/controllers/Stationsetup.php:505 msgid "Edit Export Map options" msgstr "Opties voor Exportkaart bewerken" -#: application/controllers/Stationsetup.php:526 +#: application/controllers/Stationsetup.php:527 msgid "Station location list" msgstr "Stationlocatielijst" @@ -3225,7 +3226,7 @@ msgstr "Kaart exporteren" #: application/controllers/Webadif.php:95 #: application/controllers/Webadif.php:142 -#: application/views/interface_assets/header.php:518 +#: application/views/interface_assets/header.php:520 msgid "QO-100 Dx Club Upload" msgstr "QO-100 Dx Club Upload" @@ -3415,27 +3416,27 @@ msgstr "HRDlog: Geen QSOs gevonden om te uploaden voor de stationsroepnaam: " msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "HRDlog: Geen stationprofielen met HRDlog-gegevens gevonden." -#: application/models/Logbook_model.php:1341 +#: application/models/Logbook_model.php:1346 msgid "Station ID not allowed" msgstr "Station-ID niet toegestaan" -#: application/models/Logbook_model.php:1346 +#: application/models/Logbook_model.php:1351 msgid "No Call given" msgstr "Geen roepnaam gegeven" -#: application/models/Logbook_model.php:1416 -#: application/models/Logbook_model.php:1618 +#: application/models/Logbook_model.php:1421 +#: application/models/Logbook_model.php:1623 msgid "DXCC has to be Numeric" msgstr "DXCC moet numeriek zijn" -#: application/models/Logbook_model.php:4643 +#: application/models/Logbook_model.php:4648 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "Verkeerde stationsroepnaam %s bij het importeren van QSO met %s voor %s: " "OVERGESLAGEN" -#: application/models/Logbook_model.php:4657 +#: application/models/Logbook_model.php:4662 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3443,11 +3444,11 @@ msgstr "" "Je hebt geprobeerd een QSO te importeren zonder geldige datum. Deze QSO is " "niet geïmporteerd. Het is ongeldig" -#: application/models/Logbook_model.php:4666 +#: application/models/Logbook_model.php:4671 msgid "QSO on" msgstr "QSO vanaf" -#: application/models/Logbook_model.php:4666 +#: application/models/Logbook_model.php:4671 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3455,7 +3456,7 @@ msgstr "" "Je hebt geprobeerd een QSO te importeren zonder een opgegeven CALL. Dit QSO " "is niet geïmporteerd. Het is ongeldig" -#: application/models/Logbook_model.php:4715 +#: application/models/Logbook_model.php:4720 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3464,64 +3465,64 @@ msgstr "" "QSO op %s: Je hebt geprobeerd een QSO te importeren zonder een opgegeven " "band. Dit QSO is niet geïmporteerd. Het is ongeldig" -#: application/models/Logbook_model.php:4980 +#: application/models/Logbook_model.php:4985 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "de qslrdate is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:4991 +#: application/models/Logbook_model.php:4996 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "de qslsdatum is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:5052 +#: application/models/Logbook_model.php:5057 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "de clublog_qso_upload_date is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:5427 +#: application/models/Logbook_model.php:5432 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Duplicaat voor" -#: application/models/Logbook_model.php:5492 -#: application/models/Logbook_model.php:5587 +#: application/models/Logbook_model.php:5497 +#: application/models/Logbook_model.php:5592 msgid "QSO could not be matched" msgstr "QSO kon niet worden gekoppeld" -#: application/models/Logbook_model.php:5500 +#: application/models/Logbook_model.php:5505 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "bevestigd door LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:5506 +#: application/models/Logbook_model.php:5511 msgid "confirmed by award manager" msgstr "Bevestigd door award manager" -#: application/models/Logbook_model.php:5510 +#: application/models/Logbook_model.php:5515 msgid "confirmed by cross-check of DCL data" msgstr "bevestigd door kruiscontrole van DCL-gegevens" -#: application/models/Logbook_model.php:5514 +#: application/models/Logbook_model.php:5519 msgid "confirmation pending" msgstr "bevestiging in afwachting" -#: application/models/Logbook_model.php:5517 +#: application/models/Logbook_model.php:5522 msgid "unconfirmed" msgstr "onbevestigd" -#: application/models/Logbook_model.php:5520 +#: application/models/Logbook_model.php:5525 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "onbekend" -#: application/models/Logbook_model.php:5590 +#: application/models/Logbook_model.php:5595 msgid "POTA reference already in log" msgstr "POTA-referentie al in logboek" -#: application/models/Logbook_model.php:5593 +#: application/models/Logbook_model.php:5598 msgid "QSO updated" msgstr "QSO bijgewerkt" -#: application/models/Logbook_model.php:6400 +#: application/models/Logbook_model.php:6405 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -4961,7 +4962,7 @@ msgstr "Controleer %s voor hints over fouten in ADIF-bestanden." #: application/views/adif/import_success.php:59 msgid "You might have ADIF errors. Please check the following information:" -msgstr "" +msgstr "Je kunt ADIF-fouten hebben. Controleer de volgende informatie:" #: application/views/adif/mark_lotw.php:12 #: application/views/hrdlog/mark_hrdlog.php:12 @@ -5051,7 +5052,7 @@ msgid "Save" msgstr "Opslaan" #: application/views/api/index.php:8 -#: application/views/interface_assets/header.php:530 +#: application/views/interface_assets/header.php:532 msgid "API Keys" msgstr "API-sleutels" @@ -9296,7 +9297,7 @@ msgstr "ADIF-naam" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:572 +#: application/views/interface_assets/header.php:574 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:8 application/views/mode/index.php:55 @@ -11634,7 +11635,7 @@ msgstr "" "installatie-instructies." #: application/views/interface_assets/footer.php:223 -#: application/views/interface_assets/header.php:533 +#: application/views/interface_assets/header.php:535 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "Versie-informatie" @@ -12021,80 +12022,80 @@ msgstr "Beheer %s" msgid "No Clubstations available" msgstr "Geen clubstations beschikbaar" -#: application/views/interface_assets/header.php:477 +#: application/views/interface_assets/header.php:479 msgid "Other Export Options" msgstr "Andere exportopties" -#: application/views/interface_assets/header.php:485 +#: application/views/interface_assets/header.php:487 msgid "Cabrillo Export" msgstr "Cabrillo-export" -#: application/views/interface_assets/header.php:487 +#: application/views/interface_assets/header.php:489 msgid "EDI Export" msgstr "EDI-export" -#: application/views/interface_assets/header.php:509 +#: application/views/interface_assets/header.php:511 msgid "QSL Queue" msgstr "QSL Wachtrij" -#: application/views/interface_assets/header.php:510 +#: application/views/interface_assets/header.php:512 msgid "Labels" msgstr "Labels" -#: application/views/interface_assets/header.php:512 +#: application/views/interface_assets/header.php:514 msgid "Third-Party Services" msgstr "Diensten van derden" -#: application/views/interface_assets/header.php:515 +#: application/views/interface_assets/header.php:517 msgid "eQSL Import / Export" msgstr "eQSL importeren / exporteren" -#: application/views/interface_assets/header.php:516 +#: application/views/interface_assets/header.php:518 msgid "HRDLog Logbook" msgstr "HRDLog Logboek" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:521 msgid "Clublog Import / Export" msgstr "Clublog importeren / exporteren" -#: application/views/interface_assets/header.php:522 +#: application/views/interface_assets/header.php:524 msgid "DCL Export" msgstr "DCL exporteren" -#: application/views/interface_assets/header.php:534 +#: application/views/interface_assets/header.php:536 #: application/views/logbookadvanced/index.php:831 msgid "Help" msgstr "Help" -#: application/views/interface_assets/header.php:535 +#: application/views/interface_assets/header.php:537 msgid "Forum" msgstr "Forum" -#: application/views/interface_assets/header.php:539 +#: application/views/interface_assets/header.php:541 #, php-format msgid "Stop impersonate and switch back to %s" msgstr "Stop met imiteren en schakel terug naar %s" -#: application/views/interface_assets/header.php:540 +#: application/views/interface_assets/header.php:542 #, php-format msgid "Switch back to %s" msgstr "Schakel terug naar %s" -#: application/views/interface_assets/header.php:544 +#: application/views/interface_assets/header.php:546 msgid "Logout" msgstr "Uitloggen" -#: application/views/interface_assets/header.php:552 +#: application/views/interface_assets/header.php:554 msgid "Select a Location" msgstr "Selecteer een locatie" -#: application/views/interface_assets/header.php:594 +#: application/views/interface_assets/header.php:596 msgid "You miss station-locations here? Go to stationsetup and fav them" msgstr "" "Mis je hier stationslocaties? Ga naar stationssetup en voeg ze toe aan je " "favorieten" -#: application/views/interface_assets/header.php:631 +#: application/views/interface_assets/header.php:633 msgid "Extras" msgstr "Extra's" @@ -18353,7 +18354,7 @@ msgstr "eQSL afbeelding" #: application/views/view_log/qso.php:916 msgid "QSO not found" -msgstr "" +msgstr "QSO niet gevonden" #: application/views/visitor/layout/footer.php:239 msgid "Filter Results" diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.po b/application/locale/pl_PL/LC_MESSAGES/messages.po index 0006bebf1..aa3ea9e1f 100644 --- a/application/locale/pl_PL/LC_MESSAGES/messages.po +++ b/application/locale/pl_PL/LC_MESSAGES/messages.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-12-07 09:59+0000\n" +"POT-Creation-Date: 2025-12-08 10:52+0000\n" "PO-Revision-Date: 2025-12-03 07:44+0000\n" "Last-Translator: Szymon \n" "Language-Team: Polish \n" "Language-Team: Portuguese (Portugal) \n" "Language-Team: Russian \n" @@ -112,7 +112,7 @@ msgstr "" #: application/controllers/Search.php:12 #: application/controllers/Simplefle.php:7 #: application/controllers/Station.php:17 -#: application/controllers/Stationsetup.php:15 +#: application/controllers/Stationsetup.php:16 #: application/controllers/Themes.php:17 #: application/controllers/Timeline.php:10 #: application/controllers/Timeplotter.php:11 @@ -217,7 +217,7 @@ msgid "date incorrect" msgstr "дата неверна" #: application/controllers/Adif.php:283 -#: application/views/interface_assets/header.php:474 +#: application/views/interface_assets/header.php:476 msgid "ADIF Import / Export" msgstr "Импорт / Экспорт ADIF" @@ -890,7 +890,7 @@ msgid "Not running" msgstr "Не работает" #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:483 +#: application/views/interface_assets/header.php:485 msgid "SOTA CSV Export" msgstr "Экспорт SOTA в CSV" @@ -1017,7 +1017,7 @@ msgid "and propagation" msgstr "и тип прохождения" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:481 +#: application/views/interface_assets/header.php:483 msgid "DX Atlas Gridsquare Export" msgstr "Экспорт квадратов DX Atlas" @@ -1117,7 +1117,7 @@ msgid "No QSOs found to upload." msgstr "Не найдены QSO для загрузки." #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:479 +#: application/views/interface_assets/header.php:481 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "Экспорт KML" @@ -1829,7 +1829,7 @@ msgid "Operator" msgstr "Оператор" #: application/controllers/Logbook.php:1395 -#: application/controllers/Stationsetup.php:423 +#: application/controllers/Stationsetup.php:424 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/dxcc/index.php:291 #: application/views/awards/wae/index.php:175 @@ -1846,7 +1846,7 @@ msgstr "Оператор" #: application/views/station_profile/edit.php:109 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/locationlist.php:54 +#: application/views/stationsetup/locationlist.php:58 #: application/views/stationsetup/stationsetup.php:156 #: application/views/timeline/index.php:216 #: application/views/timeplotter/index.php:33 @@ -1868,7 +1868,7 @@ msgstr "Быстрый поиск" #: application/controllers/Lotw.php:64 application/controllers/Lotw.php:96 #: application/controllers/Lotw.php:136 application/views/adif/import.php:42 #: application/views/dcl_views/upload_cert.php:3 -#: application/views/interface_assets/header.php:514 +#: application/views/interface_assets/header.php:516 #: application/views/lotw/import.php:3 application/views/lotw_views/index.php:9 #: application/views/lotw_views/upload_cert.php:3 #: application/views/user/edit.php:880 application/views/visitor/index.php:328 @@ -2198,7 +2198,7 @@ msgid "Invalid Station ID" msgstr "Недействительный идентификатор станции" #: application/controllers/Oqrs.php:163 -#: application/views/interface_assets/header.php:504 +#: application/views/interface_assets/header.php:506 msgid "OQRS Requests" msgstr "Запросы OQRS" @@ -2258,7 +2258,7 @@ msgstr "" "западу от Гринвича." #: application/controllers/Qrz.php:204 -#: application/views/interface_assets/header.php:517 +#: application/views/interface_assets/header.php:519 msgid "QRZ Logbook" msgstr "Журнал QRZ" @@ -2306,7 +2306,7 @@ msgid "No callsign provided." msgstr "Позывной не указан." #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:531 +#: application/views/interface_assets/header.php:533 msgid "Hardware Interfaces" msgstr "Интерфейсы радиостанций" @@ -2353,7 +2353,7 @@ msgid "Default (click to release)" msgstr "По умолчанию (кликните, чтобы освободить)" #: application/controllers/Radio.php:115 -#: application/controllers/Stationsetup.php:401 +#: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 @@ -2372,7 +2372,7 @@ msgid "Edit" msgstr "Редактировать" #: application/controllers/Radio.php:116 -#: application/controllers/Stationsetup.php:414 +#: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 #: application/views/club/permissions.php:353 @@ -2544,7 +2544,7 @@ msgid "Empty Logbook" msgstr "Пустой журнал" #: application/controllers/Station.php:38 -#: application/controllers/Stationsetup.php:251 +#: application/controllers/Stationsetup.php:252 msgid "Create Station Location" msgstr "Создать профиль QTH" @@ -2577,54 +2577,55 @@ msgstr "Дубликат профиля QTH:" msgid "Please check value for grid locator (%s)" msgstr "Пожалуйста, проверьте значение QTH локатора (%s)" -#: application/controllers/Stationsetup.php:60 +#: application/controllers/Stationsetup.php:61 #: application/views/interface_assets/header.php:441 -#: application/views/interface_assets/header.php:594 +#: application/views/interface_assets/header.php:474 +#: application/views/interface_assets/header.php:596 msgid "Station Setup" msgstr "Настройка станции" -#: application/controllers/Stationsetup.php:75 -#: application/controllers/Stationsetup.php:93 -#: application/controllers/Stationsetup.php:437 -#: application/controllers/Stationsetup.php:451 +#: application/controllers/Stationsetup.php:76 +#: application/controllers/Stationsetup.php:94 +#: application/controllers/Stationsetup.php:438 +#: application/controllers/Stationsetup.php:452 msgid "Not allowed" msgstr "Не разрешено" -#: application/controllers/Stationsetup.php:97 -#: application/controllers/Stationsetup.php:111 -#: application/controllers/Stationsetup.php:130 -#: application/controllers/Stationsetup.php:143 -#: application/controllers/Stationsetup.php:156 -#: application/controllers/Stationsetup.php:177 -#: application/controllers/Stationsetup.php:478 +#: application/controllers/Stationsetup.php:98 +#: application/controllers/Stationsetup.php:112 +#: application/controllers/Stationsetup.php:131 +#: application/controllers/Stationsetup.php:144 +#: application/controllers/Stationsetup.php:157 +#: application/controllers/Stationsetup.php:178 +#: application/controllers/Stationsetup.php:479 #: application/views/qso/index.php:745 application/views/simplefle/index.php:39 #: application/views/widgets/on_air.php:181 #: application/views/widgets/on_air.php:243 msgid "Error" msgstr "Ошибка" -#: application/controllers/Stationsetup.php:184 +#: application/controllers/Stationsetup.php:185 #: application/views/stationsetup/stationsetup.php:25 msgid "Create Station Logbook" msgstr "Создать журнал" -#: application/controllers/Stationsetup.php:191 +#: application/controllers/Stationsetup.php:192 msgid "Edit container name" msgstr "Редактировать название контейнера" -#: application/controllers/Stationsetup.php:206 +#: application/controllers/Stationsetup.php:207 msgid "Edit linked locations" msgstr "Редактировать привязанные профили QTH" -#: application/controllers/Stationsetup.php:215 +#: application/controllers/Stationsetup.php:216 msgid "Edit visitor site" msgstr "Редактировать публичную страницу" -#: application/controllers/Stationsetup.php:237 +#: application/controllers/Stationsetup.php:238 msgid "Error. Link is already in use!" msgstr "Ошибка. Ссылка уже используется!" -#: application/controllers/Stationsetup.php:278 +#: application/controllers/Stationsetup.php:279 #: application/views/options/appearance.php:57 #: application/views/options/appearance.php:64 #: application/views/options/appearance.php:73 @@ -2642,19 +2643,19 @@ msgstr "Ошибка. Ссылка уже используется!" msgid "Disabled" msgstr "Выключено" -#: application/controllers/Stationsetup.php:286 +#: application/controllers/Stationsetup.php:287 #: application/views/stationsetup/stationsetup.php:47 msgid "Set as Active Logbook" msgstr "Установить как активный" -#: application/controllers/Stationsetup.php:288 -#: application/views/interface_assets/header.php:592 +#: application/controllers/Stationsetup.php:289 +#: application/views/interface_assets/header.php:594 #: application/views/stationsetup/stationsetup.php:49 #: application/views/view_log/index.php:4 msgid "Active Logbook" msgstr "Активный журнал" -#: application/controllers/Stationsetup.php:295 +#: application/controllers/Stationsetup.php:296 #: application/views/stationsetup/stationsetup.php:58 #, php-format msgid "" @@ -2664,33 +2665,33 @@ msgstr "" "Вы уверены, что хотите удалить журнал %s? Нужно привязать все привязанные к " "нему профили QTH к другому журналу." -#: application/controllers/Stationsetup.php:305 +#: application/controllers/Stationsetup.php:306 #: application/views/stationsetup/stationsetup.php:68 msgid "View Public Page for Logbook: " msgstr "Просмотр публичной страницы журнала: " -#: application/controllers/Stationsetup.php:306 +#: application/controllers/Stationsetup.php:307 msgid "Are you sure you want to delete the public slug?" msgstr "Вы уверены, что хотите удалить публичный псевдоним?" -#: application/controllers/Stationsetup.php:391 +#: application/controllers/Stationsetup.php:392 #: application/views/stationsetup/stationsetup.php:161 #, php-format msgid "" "Are you sure you want to make the station profile %s the active station?" msgstr "Вы уверены, что хотите сделать профиль QTH %s активным?" -#: application/controllers/Stationsetup.php:391 +#: application/controllers/Stationsetup.php:392 #: application/views/stationsetup/stationsetup.php:161 msgid "Set Active" msgstr "Установить активным" -#: application/controllers/Stationsetup.php:393 +#: application/controllers/Stationsetup.php:394 #: application/views/stationsetup/stationsetup.php:163 msgid "Active Station" msgstr "Активный профиль QTH" -#: application/controllers/Stationsetup.php:396 +#: application/controllers/Stationsetup.php:397 #: application/views/interface_assets/header.php:131 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:86 #: application/views/simplefle/index.php:28 @@ -2700,24 +2701,24 @@ msgstr "Активный профиль QTH" msgid "QSO" msgstr "QSO" -#: application/controllers/Stationsetup.php:405 +#: application/controllers/Stationsetup.php:406 #: application/views/stationsetup/stationsetup.php:192 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "Вы уверены, что хотите удалить все QSO из этого профиля станции?" -#: application/controllers/Stationsetup.php:405 +#: application/controllers/Stationsetup.php:406 #: application/views/stationsetup/stationsetup.php:142 #: application/views/stationsetup/stationsetup.php:194 msgid "Empty Log" msgstr "Очистить лог" -#: application/controllers/Stationsetup.php:409 +#: application/controllers/Stationsetup.php:410 #: application/views/stationsetup/stationsetup.php:135 #: application/views/stationsetup/stationsetup.php:175 msgid "Copy" msgstr "Скопировать" -#: application/controllers/Stationsetup.php:414 +#: application/controllers/Stationsetup.php:415 #: application/views/stationsetup/stationsetup.php:198 #, php-format msgid "" @@ -2727,7 +2728,7 @@ msgstr "" "Вы уверены в том, что хотите удалить профиль QTH '%s'? Это удалит все QSO, " "связанные с этим профилем QTH." -#: application/controllers/Stationsetup.php:421 +#: application/controllers/Stationsetup.php:422 #: application/views/qso/edit_ajax.php:236 #: application/views/station_profile/create.php:75 #: application/views/station_profile/edit.php:103 @@ -2736,11 +2737,11 @@ msgstr "" msgid "Please select one" msgstr "Пожалуйста, выберите один" -#: application/controllers/Stationsetup.php:504 +#: application/controllers/Stationsetup.php:505 msgid "Edit Export Map options" msgstr "Редактировать настройка экспорта карты" -#: application/controllers/Stationsetup.php:526 +#: application/controllers/Stationsetup.php:527 msgid "Station location list" msgstr "Список профилей QTH" @@ -3230,7 +3231,7 @@ msgstr "Экспорт карты" #: application/controllers/Webadif.php:95 #: application/controllers/Webadif.php:142 -#: application/views/interface_assets/header.php:518 +#: application/views/interface_assets/header.php:520 msgid "QO-100 Dx Club Upload" msgstr "Загрузка в QO-100 Dx Club" @@ -3423,25 +3424,25 @@ msgstr "HRDlog: на найдены QSO для загруки для позыв msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "HRDlog: не найдены профили QTH с данными входя на HRDlog." -#: application/models/Logbook_model.php:1341 +#: application/models/Logbook_model.php:1346 msgid "Station ID not allowed" msgstr "Недопустимый ID станции" -#: application/models/Logbook_model.php:1346 +#: application/models/Logbook_model.php:1351 msgid "No Call given" msgstr "Не указан позывной" -#: application/models/Logbook_model.php:1416 -#: application/models/Logbook_model.php:1618 +#: application/models/Logbook_model.php:1421 +#: application/models/Logbook_model.php:1623 msgid "DXCC has to be Numeric" msgstr "DXCC должен быть цифровым" -#: application/models/Logbook_model.php:4643 +#: application/models/Logbook_model.php:4648 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "Неправильный позывной %s при импорте QSO с %s для %s: ПРОПУЩЕНО" -#: application/models/Logbook_model.php:4657 +#: application/models/Logbook_model.php:4662 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3449,11 +3450,11 @@ msgstr "" "Вы пытались импортировать QSO без действительной даты. Это QSO не " "действительно и не было импортировано" -#: application/models/Logbook_model.php:4666 +#: application/models/Logbook_model.php:4671 msgid "QSO on" msgstr "начало QSO" -#: application/models/Logbook_model.php:4666 +#: application/models/Logbook_model.php:4671 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3461,7 +3462,7 @@ msgstr "" "Вы пытались импортировать QSO без указанного позывного. Это QSO не было " "импортировано. Оно недействительно" -#: application/models/Logbook_model.php:4715 +#: application/models/Logbook_model.php:4720 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3470,64 +3471,64 @@ msgstr "" "QSO в %s: Вы пыталсь импортировать QSO без информации о диапазоне. Это QSO " "некорректно, импорт отклонён.imported. It's invalid" -#: application/models/Logbook_model.php:4980 +#: application/models/Logbook_model.php:4985 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "дата получения QSL недействительна (ГГГГММДД)" -#: application/models/Logbook_model.php:4991 +#: application/models/Logbook_model.php:4996 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "дата отправки QSL недействительна (ГГГГММДД)" -#: application/models/Logbook_model.php:5052 +#: application/models/Logbook_model.php:5057 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "дата загрузки QSO в Clublog недействительна (ГГГГММДД)" -#: application/models/Logbook_model.php:5427 +#: application/models/Logbook_model.php:5432 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Дубликат для" -#: application/models/Logbook_model.php:5492 -#: application/models/Logbook_model.php:5587 +#: application/models/Logbook_model.php:5497 +#: application/models/Logbook_model.php:5592 msgid "QSO could not be matched" msgstr "QSO не может быть сопоставлено" -#: application/models/Logbook_model.php:5500 +#: application/models/Logbook_model.php:5505 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "подтверждено LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:5506 +#: application/models/Logbook_model.php:5511 msgid "confirmed by award manager" msgstr "подтверждено менеджером диплома" -#: application/models/Logbook_model.php:5510 +#: application/models/Logbook_model.php:5515 msgid "confirmed by cross-check of DCL data" msgstr "подтверждено кросс-проверкой с данными DCL" -#: application/models/Logbook_model.php:5514 +#: application/models/Logbook_model.php:5519 msgid "confirmation pending" msgstr "подтверждение ожидается" -#: application/models/Logbook_model.php:5517 +#: application/models/Logbook_model.php:5522 msgid "unconfirmed" msgstr "не подтверждено" -#: application/models/Logbook_model.php:5520 +#: application/models/Logbook_model.php:5525 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "неизвестно" -#: application/models/Logbook_model.php:5590 +#: application/models/Logbook_model.php:5595 msgid "POTA reference already in log" msgstr "Ренференция POTA уже в журнале" -#: application/models/Logbook_model.php:5593 +#: application/models/Logbook_model.php:5598 msgid "QSO updated" msgstr "QSO обновлено" -#: application/models/Logbook_model.php:6400 +#: application/models/Logbook_model.php:6405 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -4968,6 +4969,8 @@ msgstr "Проверьте %s на наличие подсказок об оши #: application/views/adif/import_success.php:59 msgid "You might have ADIF errors. Please check the following information:" msgstr "" +"Возможно, что в файле ADIF присутствуют ошибки. Пожалуйста, проверьте " +"следующее:" #: application/views/adif/mark_lotw.php:12 #: application/views/hrdlog/mark_hrdlog.php:12 @@ -5056,7 +5059,7 @@ msgid "Save" msgstr "Сохранить" #: application/views/api/index.php:8 -#: application/views/interface_assets/header.php:530 +#: application/views/interface_assets/header.php:532 msgid "API Keys" msgstr "Ключи API" @@ -9320,7 +9323,7 @@ msgstr "название для ADIF" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:572 +#: application/views/interface_assets/header.php:574 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:8 application/views/mode/index.php:55 @@ -11673,7 +11676,7 @@ msgstr "" "получения инструкций по настройке." #: application/views/interface_assets/footer.php:223 -#: application/views/interface_assets/header.php:533 +#: application/views/interface_assets/header.php:535 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "Информация о версии" @@ -12058,80 +12061,80 @@ msgstr "Управление %s" msgid "No Clubstations available" msgstr "Нет доступных коллективных станций" -#: application/views/interface_assets/header.php:477 +#: application/views/interface_assets/header.php:479 msgid "Other Export Options" msgstr "Другие варианты экспорта" -#: application/views/interface_assets/header.php:485 +#: application/views/interface_assets/header.php:487 msgid "Cabrillo Export" msgstr "Экспорт Cabrillo" -#: application/views/interface_assets/header.php:487 +#: application/views/interface_assets/header.php:489 msgid "EDI Export" msgstr "Экспорт EDI" -#: application/views/interface_assets/header.php:509 +#: application/views/interface_assets/header.php:511 msgid "QSL Queue" msgstr "Очередь QSL" -#: application/views/interface_assets/header.php:510 +#: application/views/interface_assets/header.php:512 msgid "Labels" msgstr "Наклейки" -#: application/views/interface_assets/header.php:512 +#: application/views/interface_assets/header.php:514 msgid "Third-Party Services" msgstr "Сторонние сервисы" -#: application/views/interface_assets/header.php:515 +#: application/views/interface_assets/header.php:517 msgid "eQSL Import / Export" msgstr "импорт / экспорт eQSL" -#: application/views/interface_assets/header.php:516 +#: application/views/interface_assets/header.php:518 msgid "HRDLog Logbook" msgstr "Журнал HRDLog" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:521 msgid "Clublog Import / Export" msgstr "Импорт / Экспорт из Clublog" -#: application/views/interface_assets/header.php:522 +#: application/views/interface_assets/header.php:524 msgid "DCL Export" msgstr "Экспорт DCL" -#: application/views/interface_assets/header.php:534 +#: application/views/interface_assets/header.php:536 #: application/views/logbookadvanced/index.php:831 msgid "Help" msgstr "Помощь" -#: application/views/interface_assets/header.php:535 +#: application/views/interface_assets/header.php:537 msgid "Forum" msgstr "Форум" -#: application/views/interface_assets/header.php:539 +#: application/views/interface_assets/header.php:541 #, php-format msgid "Stop impersonate and switch back to %s" msgstr "Прекратить выдавать себя за другого и переключиться обратно на %s" -#: application/views/interface_assets/header.php:540 +#: application/views/interface_assets/header.php:542 #, php-format msgid "Switch back to %s" msgstr "Переключиться обратно на %s" -#: application/views/interface_assets/header.php:544 +#: application/views/interface_assets/header.php:546 msgid "Logout" msgstr "Выход" -#: application/views/interface_assets/header.php:552 +#: application/views/interface_assets/header.php:554 msgid "Select a Location" msgstr "Выберите профиль QTH" -#: application/views/interface_assets/header.php:594 +#: application/views/interface_assets/header.php:596 msgid "You miss station-locations here? Go to stationsetup and fav them" msgstr "" "Не видите нужных профилей QTH? Перейдите в \"Настройки станции\" и добавьте " "их в избранное" -#: application/views/interface_assets/header.php:631 +#: application/views/interface_assets/header.php:633 msgid "Extras" msgstr "Дополнения" diff --git a/application/locale/sk/LC_MESSAGES/messages.po b/application/locale/sk/LC_MESSAGES/messages.po index 69552fc94..cd1ac0229 100644 --- a/application/locale/sk/LC_MESSAGES/messages.po +++ b/application/locale/sk/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-12-07 09:59+0000\n" +"POT-Creation-Date: 2025-12-08 10:52+0000\n" "PO-Revision-Date: 2025-12-03 07:44+0000\n" "Last-Translator: Viliam Petrik \n" "Language-Team: Slovak \n" "Language-Team: Albanian \n" "Language-Team: Serbian \n" "Language-Team: Swedish \n" @@ -107,7 +107,7 @@ msgstr "" #: application/controllers/Search.php:12 #: application/controllers/Simplefle.php:7 #: application/controllers/Station.php:17 -#: application/controllers/Stationsetup.php:15 +#: application/controllers/Stationsetup.php:16 #: application/controllers/Themes.php:17 #: application/controllers/Timeline.php:10 #: application/controllers/Timeplotter.php:11 @@ -212,7 +212,7 @@ msgid "date incorrect" msgstr "datum felaktigt" #: application/controllers/Adif.php:283 -#: application/views/interface_assets/header.php:474 +#: application/views/interface_assets/header.php:476 msgid "ADIF Import / Export" msgstr "ADIF Import / Export" @@ -882,7 +882,7 @@ msgid "Not running" msgstr "Inte igång" #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:483 +#: application/views/interface_assets/header.php:485 msgid "SOTA CSV Export" msgstr "SOTA CSV-export" @@ -1008,7 +1008,7 @@ msgid "and propagation" msgstr "och utbredning" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:481 +#: application/views/interface_assets/header.php:483 msgid "DX Atlas Gridsquare Export" msgstr "DX Atlas Export av Lokatorrutor" @@ -1107,7 +1107,7 @@ msgid "No QSOs found to upload." msgstr "Inga QSOs hittades för att ladda upp." #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:479 +#: application/views/interface_assets/header.php:481 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "KML-export" @@ -1819,7 +1819,7 @@ msgid "Operator" msgstr "Operatör" #: application/controllers/Logbook.php:1395 -#: application/controllers/Stationsetup.php:423 +#: application/controllers/Stationsetup.php:424 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/dxcc/index.php:291 #: application/views/awards/wae/index.php:175 @@ -1836,7 +1836,7 @@ msgstr "Operatör" #: application/views/station_profile/edit.php:109 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/locationlist.php:54 +#: application/views/stationsetup/locationlist.php:58 #: application/views/stationsetup/stationsetup.php:156 #: application/views/timeline/index.php:216 #: application/views/timeplotter/index.php:33 @@ -1858,7 +1858,7 @@ msgstr "Snabb uppslagning" #: application/controllers/Lotw.php:64 application/controllers/Lotw.php:96 #: application/controllers/Lotw.php:136 application/views/adif/import.php:42 #: application/views/dcl_views/upload_cert.php:3 -#: application/views/interface_assets/header.php:514 +#: application/views/interface_assets/header.php:516 #: application/views/lotw/import.php:3 application/views/lotw_views/index.php:9 #: application/views/lotw_views/upload_cert.php:3 #: application/views/user/edit.php:880 application/views/visitor/index.php:328 @@ -2187,7 +2187,7 @@ msgid "Invalid Station ID" msgstr "Ogiltigt stations-ID" #: application/controllers/Oqrs.php:163 -#: application/views/interface_assets/header.php:504 +#: application/views/interface_assets/header.php:506 msgid "OQRS Requests" msgstr "OQRS Förfrågningar" @@ -2244,7 +2244,7 @@ msgstr "" "Greenwich." #: application/controllers/Qrz.php:204 -#: application/views/interface_assets/header.php:517 +#: application/views/interface_assets/header.php:519 msgid "QRZ Logbook" msgstr "QRZ Loggbok" @@ -2292,7 +2292,7 @@ msgid "No callsign provided." msgstr "Ingen anropssignal angiven." #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:531 +#: application/views/interface_assets/header.php:533 msgid "Hardware Interfaces" msgstr "Hårdvarugränssnitt" @@ -2339,7 +2339,7 @@ msgid "Default (click to release)" msgstr "Standard (klicka för att släppa)" #: application/controllers/Radio.php:115 -#: application/controllers/Stationsetup.php:401 +#: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 @@ -2358,7 +2358,7 @@ msgid "Edit" msgstr "Redigera" #: application/controllers/Radio.php:116 -#: application/controllers/Stationsetup.php:414 +#: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 #: application/views/club/permissions.php:353 @@ -2530,7 +2530,7 @@ msgid "Empty Logbook" msgstr "Tom loggbok" #: application/controllers/Station.php:38 -#: application/controllers/Stationsetup.php:251 +#: application/controllers/Stationsetup.php:252 msgid "Create Station Location" msgstr "Skapa stationsplats" @@ -2563,54 +2563,55 @@ msgstr "Duplicera stationsplats:" msgid "Please check value for grid locator (%s)" msgstr "Kontrollera värdet för Lokatorrutan (%s)" -#: application/controllers/Stationsetup.php:60 +#: application/controllers/Stationsetup.php:61 #: application/views/interface_assets/header.php:441 -#: application/views/interface_assets/header.php:594 +#: application/views/interface_assets/header.php:474 +#: application/views/interface_assets/header.php:596 msgid "Station Setup" msgstr "Stationsinställningar" -#: application/controllers/Stationsetup.php:75 -#: application/controllers/Stationsetup.php:93 -#: application/controllers/Stationsetup.php:437 -#: application/controllers/Stationsetup.php:451 +#: application/controllers/Stationsetup.php:76 +#: application/controllers/Stationsetup.php:94 +#: application/controllers/Stationsetup.php:438 +#: application/controllers/Stationsetup.php:452 msgid "Not allowed" msgstr "Inte tillåtet" -#: application/controllers/Stationsetup.php:97 -#: application/controllers/Stationsetup.php:111 -#: application/controllers/Stationsetup.php:130 -#: application/controllers/Stationsetup.php:143 -#: application/controllers/Stationsetup.php:156 -#: application/controllers/Stationsetup.php:177 -#: application/controllers/Stationsetup.php:478 +#: application/controllers/Stationsetup.php:98 +#: application/controllers/Stationsetup.php:112 +#: application/controllers/Stationsetup.php:131 +#: application/controllers/Stationsetup.php:144 +#: application/controllers/Stationsetup.php:157 +#: application/controllers/Stationsetup.php:178 +#: application/controllers/Stationsetup.php:479 #: application/views/qso/index.php:745 application/views/simplefle/index.php:39 #: application/views/widgets/on_air.php:181 #: application/views/widgets/on_air.php:243 msgid "Error" msgstr "Fel" -#: application/controllers/Stationsetup.php:184 +#: application/controllers/Stationsetup.php:185 #: application/views/stationsetup/stationsetup.php:25 msgid "Create Station Logbook" msgstr "Skapa stationsloggbok" -#: application/controllers/Stationsetup.php:191 +#: application/controllers/Stationsetup.php:192 msgid "Edit container name" msgstr "Redigera behållarens namn" -#: application/controllers/Stationsetup.php:206 +#: application/controllers/Stationsetup.php:207 msgid "Edit linked locations" msgstr "Redigera länkade platser" -#: application/controllers/Stationsetup.php:215 +#: application/controllers/Stationsetup.php:216 msgid "Edit visitor site" msgstr "Redigera besökarwebbplats" -#: application/controllers/Stationsetup.php:237 +#: application/controllers/Stationsetup.php:238 msgid "Error. Link is already in use!" msgstr "Fel. Länken används redan!" -#: application/controllers/Stationsetup.php:278 +#: application/controllers/Stationsetup.php:279 #: application/views/options/appearance.php:57 #: application/views/options/appearance.php:64 #: application/views/options/appearance.php:73 @@ -2628,19 +2629,19 @@ msgstr "Fel. Länken används redan!" msgid "Disabled" msgstr "Inaktiverad" -#: application/controllers/Stationsetup.php:286 +#: application/controllers/Stationsetup.php:287 #: application/views/stationsetup/stationsetup.php:47 msgid "Set as Active Logbook" msgstr "Ange som aktiv loggbok" -#: application/controllers/Stationsetup.php:288 -#: application/views/interface_assets/header.php:592 +#: application/controllers/Stationsetup.php:289 +#: application/views/interface_assets/header.php:594 #: application/views/stationsetup/stationsetup.php:49 #: application/views/view_log/index.php:4 msgid "Active Logbook" msgstr "Aktiv loggbok" -#: application/controllers/Stationsetup.php:295 +#: application/controllers/Stationsetup.php:296 #: application/views/stationsetup/stationsetup.php:58 #, php-format msgid "" @@ -2650,16 +2651,16 @@ msgstr "" "Är du säker på att du vill ta bort loggboken för stationen %s? Du måste " "länka om alla platser som är länkade här till en annan loggbok." -#: application/controllers/Stationsetup.php:305 +#: application/controllers/Stationsetup.php:306 #: application/views/stationsetup/stationsetup.php:68 msgid "View Public Page for Logbook: " msgstr "Visa offentlig sida för loggbok: " -#: application/controllers/Stationsetup.php:306 +#: application/controllers/Stationsetup.php:307 msgid "Are you sure you want to delete the public slug?" msgstr "Är du säker på att du vill ta bort den offentliga sluggen?" -#: application/controllers/Stationsetup.php:391 +#: application/controllers/Stationsetup.php:392 #: application/views/stationsetup/stationsetup.php:161 #, php-format msgid "" @@ -2668,17 +2669,17 @@ msgstr "" "Är du säker på att du vill göra stationsprofilen %s till den aktiva " "stationen?" -#: application/controllers/Stationsetup.php:391 +#: application/controllers/Stationsetup.php:392 #: application/views/stationsetup/stationsetup.php:161 msgid "Set Active" msgstr "Aktivera" -#: application/controllers/Stationsetup.php:393 +#: application/controllers/Stationsetup.php:394 #: application/views/stationsetup/stationsetup.php:163 msgid "Active Station" msgstr "Aktiv station" -#: application/controllers/Stationsetup.php:396 +#: application/controllers/Stationsetup.php:397 #: application/views/interface_assets/header.php:131 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:86 #: application/views/simplefle/index.php:28 @@ -2688,24 +2689,24 @@ msgstr "Aktiv station" msgid "QSO" msgstr "QSO" -#: application/controllers/Stationsetup.php:405 +#: application/controllers/Stationsetup.php:406 #: application/views/stationsetup/stationsetup.php:192 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "Är du säker på att du vill radera alla QSOs inom denna stationsprofil?" -#: application/controllers/Stationsetup.php:405 +#: application/controllers/Stationsetup.php:406 #: application/views/stationsetup/stationsetup.php:142 #: application/views/stationsetup/stationsetup.php:194 msgid "Empty Log" msgstr "Tom logg" -#: application/controllers/Stationsetup.php:409 +#: application/controllers/Stationsetup.php:410 #: application/views/stationsetup/stationsetup.php:135 #: application/views/stationsetup/stationsetup.php:175 msgid "Copy" msgstr "Kopiera" -#: application/controllers/Stationsetup.php:414 +#: application/controllers/Stationsetup.php:415 #: application/views/stationsetup/stationsetup.php:198 #, php-format msgid "" @@ -2715,7 +2716,7 @@ msgstr "" "Är du säker på att du vill ta bort stationsprofilen '%s'? Detta kommer att " "radera alla QSOs inom denna stationsprofil." -#: application/controllers/Stationsetup.php:421 +#: application/controllers/Stationsetup.php:422 #: application/views/qso/edit_ajax.php:236 #: application/views/station_profile/create.php:75 #: application/views/station_profile/edit.php:103 @@ -2724,11 +2725,11 @@ msgstr "" msgid "Please select one" msgstr "Välj ett alternativ" -#: application/controllers/Stationsetup.php:504 +#: application/controllers/Stationsetup.php:505 msgid "Edit Export Map options" msgstr "Redigera alternativ för exportkarta" -#: application/controllers/Stationsetup.php:526 +#: application/controllers/Stationsetup.php:527 msgid "Station location list" msgstr "Lista över stationsplatser" @@ -3216,7 +3217,7 @@ msgstr "Exportera karta" #: application/controllers/Webadif.php:95 #: application/controllers/Webadif.php:142 -#: application/views/interface_assets/header.php:518 +#: application/views/interface_assets/header.php:520 msgid "QO-100 Dx Club Upload" msgstr "QO-100 Dx Club Ladda upp" @@ -3405,25 +3406,25 @@ msgstr "HRDlog: Inga QSOs hittades att ladda upp för stationsanropssignalen: " msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "HRDlog: Inga stationsprofiler med HRDlog-uppgifter hittades." -#: application/models/Logbook_model.php:1341 +#: application/models/Logbook_model.php:1346 msgid "Station ID not allowed" msgstr "Stations-ID inte tillåtet" -#: application/models/Logbook_model.php:1346 +#: application/models/Logbook_model.php:1351 msgid "No Call given" msgstr "Ingen anropssignal angiven" -#: application/models/Logbook_model.php:1416 -#: application/models/Logbook_model.php:1618 +#: application/models/Logbook_model.php:1421 +#: application/models/Logbook_model.php:1623 msgid "DXCC has to be Numeric" msgstr "DXCC måste vara numerisk" -#: application/models/Logbook_model.php:4643 +#: application/models/Logbook_model.php:4648 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "Fel anropssignal %s vid import av QSO med %s för %s: HOPPADES ÖVER" -#: application/models/Logbook_model.php:4657 +#: application/models/Logbook_model.php:4662 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3431,11 +3432,11 @@ msgstr "" "Du försökte importera ett QSO utan giltigt datum. Detta QSO importerades " "inte. Det är ogiltigt" -#: application/models/Logbook_model.php:4666 +#: application/models/Logbook_model.php:4671 msgid "QSO on" msgstr "QSO kl" -#: application/models/Logbook_model.php:4666 +#: application/models/Logbook_model.php:4671 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3443,7 +3444,7 @@ msgstr "" "Du försökte importera ett QSO utan angivet CALL. Detta QSO importerades " "inte. Det är ogiltigt" -#: application/models/Logbook_model.php:4715 +#: application/models/Logbook_model.php:4720 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3452,64 +3453,64 @@ msgstr "" "QSO på %s: Du försökte importera ett QSO utan angivet band. Detta QSO " "importerades inte. Det är ogiltigt" -#: application/models/Logbook_model.php:4980 +#: application/models/Logbook_model.php:4985 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "qslrdate är ogiltigt (ÅÅÅÅMMDD)" -#: application/models/Logbook_model.php:4991 +#: application/models/Logbook_model.php:4996 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "qslsdate är ogiltigt (ÅÅÅÅMMDD)" -#: application/models/Logbook_model.php:5052 +#: application/models/Logbook_model.php:5057 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "clublog_qso_upload_date är ogiltigt (ÅÅÅÅMMDD)" -#: application/models/Logbook_model.php:5427 +#: application/models/Logbook_model.php:5432 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Dubblett för" -#: application/models/Logbook_model.php:5492 -#: application/models/Logbook_model.php:5587 +#: application/models/Logbook_model.php:5497 +#: application/models/Logbook_model.php:5592 msgid "QSO could not be matched" msgstr "QSO kunde inte matchas" -#: application/models/Logbook_model.php:5500 +#: application/models/Logbook_model.php:5505 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "bekräftad av LoTW/Clublog/eQSL/Tävling" -#: application/models/Logbook_model.php:5506 +#: application/models/Logbook_model.php:5511 msgid "confirmed by award manager" msgstr "bekräftad av diplomansvarig" -#: application/models/Logbook_model.php:5510 +#: application/models/Logbook_model.php:5515 msgid "confirmed by cross-check of DCL data" msgstr "bekräftat genom korskontroll av DCL-data" -#: application/models/Logbook_model.php:5514 +#: application/models/Logbook_model.php:5519 msgid "confirmation pending" msgstr "bekräftelse väntar" -#: application/models/Logbook_model.php:5517 +#: application/models/Logbook_model.php:5522 msgid "unconfirmed" msgstr "obekräftad" -#: application/models/Logbook_model.php:5520 +#: application/models/Logbook_model.php:5525 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "Okänd" -#: application/models/Logbook_model.php:5590 +#: application/models/Logbook_model.php:5595 msgid "POTA reference already in log" msgstr "POTA-referens redan i loggen" -#: application/models/Logbook_model.php:5593 +#: application/models/Logbook_model.php:5598 msgid "QSO updated" msgstr "QSO uppdaterad" -#: application/models/Logbook_model.php:6400 +#: application/models/Logbook_model.php:6405 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3623,7 +3624,7 @@ msgstr "Ackumulerat antal WAJA kontaktade" #: application/views/timeline/index.php:107 #: application/views/visitor/index.php:250 msgid "Year" -msgstr "I år" +msgstr "År" #: application/views/accumulate/index.php:9 #: application/views/accumulate/index.php:67 @@ -4943,7 +4944,7 @@ msgstr "Kolla %s för tips om fel i ADIF-filer." #: application/views/adif/import_success.php:59 msgid "You might have ADIF errors. Please check the following information:" -msgstr "" +msgstr "Du kan ha ADIF-fel. Kontrollera följande information:" #: application/views/adif/mark_lotw.php:12 #: application/views/hrdlog/mark_hrdlog.php:12 @@ -5032,7 +5033,7 @@ msgid "Save" msgstr "Spara" #: application/views/api/index.php:8 -#: application/views/interface_assets/header.php:530 +#: application/views/interface_assets/header.php:532 msgid "API Keys" msgstr "API-nycklar" @@ -9251,7 +9252,7 @@ msgstr "ADIF-namn" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:572 +#: application/views/interface_assets/header.php:574 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:8 application/views/mode/index.php:55 @@ -11583,7 +11584,7 @@ msgstr "" "installationsinstruktioner." #: application/views/interface_assets/footer.php:223 -#: application/views/interface_assets/header.php:533 +#: application/views/interface_assets/header.php:535 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "Versionsinformation" @@ -11968,80 +11969,80 @@ msgstr "Hantera %s" msgid "No Clubstations available" msgstr "Inga klubbstationer tillgängliga" -#: application/views/interface_assets/header.php:477 +#: application/views/interface_assets/header.php:479 msgid "Other Export Options" msgstr "Andra exportalternativ" -#: application/views/interface_assets/header.php:485 +#: application/views/interface_assets/header.php:487 msgid "Cabrillo Export" msgstr "Cabrillo-export" -#: application/views/interface_assets/header.php:487 +#: application/views/interface_assets/header.php:489 msgid "EDI Export" msgstr "EDI-export" -#: application/views/interface_assets/header.php:509 +#: application/views/interface_assets/header.php:511 msgid "QSL Queue" msgstr "QSL-kö" -#: application/views/interface_assets/header.php:510 +#: application/views/interface_assets/header.php:512 msgid "Labels" msgstr "Etiketter" -#: application/views/interface_assets/header.php:512 +#: application/views/interface_assets/header.php:514 msgid "Third-Party Services" msgstr "Tredjepartstjänster" -#: application/views/interface_assets/header.php:515 +#: application/views/interface_assets/header.php:517 msgid "eQSL Import / Export" msgstr "eQSL Import / Export" -#: application/views/interface_assets/header.php:516 +#: application/views/interface_assets/header.php:518 msgid "HRDLog Logbook" msgstr "HRDLog Loggbok" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:521 msgid "Clublog Import / Export" msgstr "Clublog Import / Export" -#: application/views/interface_assets/header.php:522 +#: application/views/interface_assets/header.php:524 msgid "DCL Export" msgstr "DCL-export" -#: application/views/interface_assets/header.php:534 +#: application/views/interface_assets/header.php:536 #: application/views/logbookadvanced/index.php:831 msgid "Help" msgstr "Hjälp" -#: application/views/interface_assets/header.php:535 +#: application/views/interface_assets/header.php:537 msgid "Forum" msgstr "Forum" -#: application/views/interface_assets/header.php:539 +#: application/views/interface_assets/header.php:541 #, php-format msgid "Stop impersonate and switch back to %s" msgstr "Sluta imitera och byt tillbaka till %s" -#: application/views/interface_assets/header.php:540 +#: application/views/interface_assets/header.php:542 #, php-format msgid "Switch back to %s" msgstr "Byt tillbaka till %s" -#: application/views/interface_assets/header.php:544 +#: application/views/interface_assets/header.php:546 msgid "Logout" msgstr "Logga ut" -#: application/views/interface_assets/header.php:552 +#: application/views/interface_assets/header.php:554 msgid "Select a Location" msgstr "Välj en plats" -#: application/views/interface_assets/header.php:594 +#: application/views/interface_assets/header.php:596 msgid "You miss station-locations here? Go to stationsetup and fav them" msgstr "" "Saknar du stationens platser här? Gå till stationens config och lägg till " "dem som favoriter" -#: application/views/interface_assets/header.php:631 +#: application/views/interface_assets/header.php:633 msgid "Extras" msgstr "Extra" diff --git a/application/locale/tr_TR/LC_MESSAGES/messages.po b/application/locale/tr_TR/LC_MESSAGES/messages.po index 47614fba1..875e23e15 100644 --- a/application/locale/tr_TR/LC_MESSAGES/messages.po +++ b/application/locale/tr_TR/LC_MESSAGES/messages.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-12-07 09:59+0000\n" +"POT-Creation-Date: 2025-12-08 10:52+0000\n" "PO-Revision-Date: 2025-11-28 13:13+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Turkish \n" "Language-Team: Chinese (Simplified Han script) db->where('option_name', 'version'); + $this->db->update('options', array('option_value' => '2.2.1')); + + // Trigger Version Info Dialog + $this->db->where('option_type', 'version_dialog'); + $this->db->where('option_name', 'confirmed'); + $this->db->update('user_options', array('option_value' => 'false')); + + // Also set Version Dialog to "both" if only custom text is applied + $this->db->where('option_name', 'version_dialog'); + $this->db->where('option_value', 'custom_text'); + $this->db->update('options', array('option_value' => 'both')); + } + + public function down() + { + $this->db->where('option_name', 'version'); + $this->db->update('options', array('option_value' => '2.2')); + } +} diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index 74c640d7b..6935ca62f 100644 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -57,7 +57,12 @@ class Logbook_model extends CI_Model { $end_datetime_obj = DateTime::createFromFormat("$date_format H:i:s", "$start_date $end_time"); if ($end_datetime_obj === false) { - $datetime_off = $datetime; + $end_datetime_obj = DateTime::createFromFormat("$date_format H:i", "$start_date $end_time"); // Try converting as H:i if H:i:s failed b4 + if ($end_datetime_obj === false) { + $datetime_off = $datetime; // No Luck? Than end = start + } else { + $datetime_off = $end_datetime_obj->format('Y-m-d H:i:s'); + } } else { // If time-off is before time-on and hour is 00 → add 1 day if ($end_datetime_obj < $datetime_obj && str_starts_with($end_time, "00")) { diff --git a/application/views/interface_assets/header.php b/application/views/interface_assets/header.php index b92790ea1..82ce0be81 100644 --- a/application/views/interface_assets/header.php +++ b/application/views/interface_assets/header.php @@ -470,6 +470,8 @@ + +
  • diff --git a/application/views/stationsetup/locationlist.php b/application/views/stationsetup/locationlist.php index c003820a4..5a90886bc 100644 --- a/application/views/stationsetup/locationlist.php +++ b/application/views/stationsetup/locationlist.php @@ -45,7 +45,11 @@ station_id; ?> station_active ? 'Yes' : 'No' ?> qso_total; ?> + station_id; ?>">station_profile_name; ?> + + station_profile_name; ?> + station_callsign; ?> station_gridsquare; ?> station_city; ?> @@ -116,6 +120,7 @@ $(node).removeClass('dt-button').addClass('btn btn-primary'); } }, + { text: 'Import Locations', className: 'mb-1 btn btn-sm btn-primary', @@ -158,6 +163,7 @@ $(node).removeClass('dt-button').addClass('btn btn-primary'); } } + ] }); diff --git a/assets/json/datatables_languages/fr-FR.json b/assets/json/datatables_languages/fr-FR.json index edee25e8c..80201865e 100644 --- a/assets/json/datatables_languages/fr-FR.json +++ b/assets/json/datatables_languages/fr-FR.json @@ -21,7 +21,7 @@ "fill": "Remplir toutes les cellules avec %d", "fillHorizontal": "Remplir les cellules horizontalement", "fillVertical": "Remplir les cellules verticalement", - "info": "AutoFill info example" + "info": "Exemple d'informations de remplissage automatique" }, "searchBuilder": { "conditions": { diff --git a/assets/json/datatables_languages/it-IT.json b/assets/json/datatables_languages/it-IT.json index 4000b73a1..6784165b8 100644 --- a/assets/json/datatables_languages/it-IT.json +++ b/assets/json/datatables_languages/it-IT.json @@ -19,7 +19,7 @@ "fill": "Riempi tutte le celle con %d", "fillHorizontal": "Riempi celle orizzontalmente", "fillVertical": "Riempi celle verticalmente", - "info": "AutoFill info example" + "info": "Esempio di informazioni di riempimento automatico" }, "buttons": { "collection": "Collezione ", @@ -37,7 +37,7 @@ "pageLength": { "-1": "Mostra tutte le righe", "_": "Mostra %d righe", - "1": "Show 1 row" + "1": "Mostra 1 riga" }, "pdf": "PDF", "print": "Stampa", @@ -178,19 +178,7 @@ "8": "Settembre", "9": "Ottobre", "10": "Novembre", - "11": "Dicembre", - "0": "January", - "1": "February", - "10": "November", - "11": "December", - "2": "March", - "3": "April", - "4": "May", - "5": "June", - "6": "July", - "7": "August", - "8": "September", - "9": "October" + "11": "Dicembre" } }, "editor": { diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot index e2aba806a..e165814e6 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: 2025-12-07 09:59+0000\n" +"POT-Creation-Date: 2025-12-08 10:52+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -103,7 +103,7 @@ msgstr "" #: application/controllers/Search.php:12 #: application/controllers/Simplefle.php:7 #: application/controllers/Station.php:17 -#: application/controllers/Stationsetup.php:15 +#: application/controllers/Stationsetup.php:16 #: application/controllers/Themes.php:17 #: application/controllers/Timeline.php:10 #: application/controllers/Timeplotter.php:11 @@ -208,7 +208,7 @@ msgid "date incorrect" msgstr "" #: application/controllers/Adif.php:283 -#: application/views/interface_assets/header.php:474 +#: application/views/interface_assets/header.php:476 msgid "ADIF Import / Export" msgstr "" @@ -872,7 +872,7 @@ msgid "Not running" msgstr "" #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:483 +#: application/views/interface_assets/header.php:485 msgid "SOTA CSV Export" msgstr "" @@ -995,7 +995,7 @@ msgid "and propagation" msgstr "" #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:481 +#: application/views/interface_assets/header.php:483 msgid "DX Atlas Gridsquare Export" msgstr "" @@ -1094,7 +1094,7 @@ msgid "No QSOs found to upload." msgstr "" #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:479 +#: application/views/interface_assets/header.php:481 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "" @@ -1800,7 +1800,7 @@ msgid "Operator" msgstr "" #: application/controllers/Logbook.php:1395 -#: application/controllers/Stationsetup.php:423 +#: application/controllers/Stationsetup.php:424 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/dxcc/index.php:291 #: application/views/awards/wae/index.php:175 @@ -1817,7 +1817,7 @@ msgstr "" #: application/views/station_profile/edit.php:109 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/locationlist.php:54 +#: application/views/stationsetup/locationlist.php:58 #: application/views/stationsetup/stationsetup.php:156 #: application/views/timeline/index.php:216 #: application/views/timeplotter/index.php:33 @@ -1839,7 +1839,7 @@ msgstr "" #: application/controllers/Lotw.php:64 application/controllers/Lotw.php:96 #: application/controllers/Lotw.php:136 application/views/adif/import.php:42 #: application/views/dcl_views/upload_cert.php:3 -#: application/views/interface_assets/header.php:514 +#: application/views/interface_assets/header.php:516 #: application/views/lotw/import.php:3 application/views/lotw_views/index.php:9 #: application/views/lotw_views/upload_cert.php:3 #: application/views/user/edit.php:880 application/views/visitor/index.php:328 @@ -2159,7 +2159,7 @@ msgid "Invalid Station ID" msgstr "" #: application/controllers/Oqrs.php:163 -#: application/views/interface_assets/header.php:504 +#: application/views/interface_assets/header.php:506 msgid "OQRS Requests" msgstr "" @@ -2214,7 +2214,7 @@ msgid "" msgstr "" #: application/controllers/Qrz.php:204 -#: application/views/interface_assets/header.php:517 +#: application/views/interface_assets/header.php:519 msgid "QRZ Logbook" msgstr "" @@ -2262,7 +2262,7 @@ msgid "No callsign provided." msgstr "" #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:531 +#: application/views/interface_assets/header.php:533 msgid "Hardware Interfaces" msgstr "" @@ -2309,7 +2309,7 @@ msgid "Default (click to release)" msgstr "" #: application/controllers/Radio.php:115 -#: application/controllers/Stationsetup.php:401 +#: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 @@ -2328,7 +2328,7 @@ msgid "Edit" msgstr "" #: application/controllers/Radio.php:116 -#: application/controllers/Stationsetup.php:414 +#: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 #: application/views/club/permissions.php:353 @@ -2498,7 +2498,7 @@ msgid "Empty Logbook" msgstr "" #: application/controllers/Station.php:38 -#: application/controllers/Stationsetup.php:251 +#: application/controllers/Stationsetup.php:252 msgid "Create Station Location" msgstr "" @@ -2531,54 +2531,55 @@ msgstr "" msgid "Please check value for grid locator (%s)" msgstr "" -#: application/controllers/Stationsetup.php:60 +#: application/controllers/Stationsetup.php:61 #: application/views/interface_assets/header.php:441 -#: application/views/interface_assets/header.php:594 +#: application/views/interface_assets/header.php:474 +#: application/views/interface_assets/header.php:596 msgid "Station Setup" msgstr "" -#: application/controllers/Stationsetup.php:75 -#: application/controllers/Stationsetup.php:93 -#: application/controllers/Stationsetup.php:437 -#: application/controllers/Stationsetup.php:451 +#: application/controllers/Stationsetup.php:76 +#: application/controllers/Stationsetup.php:94 +#: application/controllers/Stationsetup.php:438 +#: application/controllers/Stationsetup.php:452 msgid "Not allowed" msgstr "" -#: application/controllers/Stationsetup.php:97 -#: application/controllers/Stationsetup.php:111 -#: application/controllers/Stationsetup.php:130 -#: application/controllers/Stationsetup.php:143 -#: application/controllers/Stationsetup.php:156 -#: application/controllers/Stationsetup.php:177 -#: application/controllers/Stationsetup.php:478 +#: application/controllers/Stationsetup.php:98 +#: application/controllers/Stationsetup.php:112 +#: application/controllers/Stationsetup.php:131 +#: application/controllers/Stationsetup.php:144 +#: application/controllers/Stationsetup.php:157 +#: application/controllers/Stationsetup.php:178 +#: application/controllers/Stationsetup.php:479 #: application/views/qso/index.php:745 application/views/simplefle/index.php:39 #: application/views/widgets/on_air.php:181 #: application/views/widgets/on_air.php:243 msgid "Error" msgstr "" -#: application/controllers/Stationsetup.php:184 +#: application/controllers/Stationsetup.php:185 #: application/views/stationsetup/stationsetup.php:25 msgid "Create Station Logbook" msgstr "" -#: application/controllers/Stationsetup.php:191 +#: application/controllers/Stationsetup.php:192 msgid "Edit container name" msgstr "" -#: application/controllers/Stationsetup.php:206 +#: application/controllers/Stationsetup.php:207 msgid "Edit linked locations" msgstr "" -#: application/controllers/Stationsetup.php:215 +#: application/controllers/Stationsetup.php:216 msgid "Edit visitor site" msgstr "" -#: application/controllers/Stationsetup.php:237 +#: application/controllers/Stationsetup.php:238 msgid "Error. Link is already in use!" msgstr "" -#: application/controllers/Stationsetup.php:278 +#: application/controllers/Stationsetup.php:279 #: application/views/options/appearance.php:57 #: application/views/options/appearance.php:64 #: application/views/options/appearance.php:73 @@ -2596,19 +2597,19 @@ msgstr "" msgid "Disabled" msgstr "" -#: application/controllers/Stationsetup.php:286 +#: application/controllers/Stationsetup.php:287 #: application/views/stationsetup/stationsetup.php:47 msgid "Set as Active Logbook" msgstr "" -#: application/controllers/Stationsetup.php:288 -#: application/views/interface_assets/header.php:592 +#: application/controllers/Stationsetup.php:289 +#: application/views/interface_assets/header.php:594 #: application/views/stationsetup/stationsetup.php:49 #: application/views/view_log/index.php:4 msgid "Active Logbook" msgstr "" -#: application/controllers/Stationsetup.php:295 +#: application/controllers/Stationsetup.php:296 #: application/views/stationsetup/stationsetup.php:58 #, php-format msgid "" @@ -2616,33 +2617,33 @@ msgid "" "locations linked here to another logbook." msgstr "" -#: application/controllers/Stationsetup.php:305 +#: application/controllers/Stationsetup.php:306 #: application/views/stationsetup/stationsetup.php:68 msgid "View Public Page for Logbook: " msgstr "" -#: application/controllers/Stationsetup.php:306 +#: application/controllers/Stationsetup.php:307 msgid "Are you sure you want to delete the public slug?" msgstr "" -#: application/controllers/Stationsetup.php:391 +#: application/controllers/Stationsetup.php:392 #: application/views/stationsetup/stationsetup.php:161 #, php-format msgid "" "Are you sure you want to make the station profile %s the active station?" msgstr "" -#: application/controllers/Stationsetup.php:391 +#: application/controllers/Stationsetup.php:392 #: application/views/stationsetup/stationsetup.php:161 msgid "Set Active" msgstr "" -#: application/controllers/Stationsetup.php:393 +#: application/controllers/Stationsetup.php:394 #: application/views/stationsetup/stationsetup.php:163 msgid "Active Station" msgstr "" -#: application/controllers/Stationsetup.php:396 +#: application/controllers/Stationsetup.php:397 #: application/views/interface_assets/header.php:131 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:86 #: application/views/simplefle/index.php:28 @@ -2652,24 +2653,24 @@ msgstr "" msgid "QSO" msgstr "" -#: application/controllers/Stationsetup.php:405 +#: application/controllers/Stationsetup.php:406 #: application/views/stationsetup/stationsetup.php:192 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" -#: application/controllers/Stationsetup.php:405 +#: application/controllers/Stationsetup.php:406 #: application/views/stationsetup/stationsetup.php:142 #: application/views/stationsetup/stationsetup.php:194 msgid "Empty Log" msgstr "" -#: application/controllers/Stationsetup.php:409 +#: application/controllers/Stationsetup.php:410 #: application/views/stationsetup/stationsetup.php:135 #: application/views/stationsetup/stationsetup.php:175 msgid "Copy" msgstr "" -#: application/controllers/Stationsetup.php:414 +#: application/controllers/Stationsetup.php:415 #: application/views/stationsetup/stationsetup.php:198 #, php-format msgid "" @@ -2677,7 +2678,7 @@ msgid "" "within this station profile." msgstr "" -#: application/controllers/Stationsetup.php:421 +#: application/controllers/Stationsetup.php:422 #: application/views/qso/edit_ajax.php:236 #: application/views/station_profile/create.php:75 #: application/views/station_profile/edit.php:103 @@ -2686,11 +2687,11 @@ msgstr "" msgid "Please select one" msgstr "" -#: application/controllers/Stationsetup.php:504 +#: application/controllers/Stationsetup.php:505 msgid "Edit Export Map options" msgstr "" -#: application/controllers/Stationsetup.php:526 +#: application/controllers/Stationsetup.php:527 msgid "Station location list" msgstr "" @@ -3152,7 +3153,7 @@ msgstr "" #: application/controllers/Webadif.php:95 #: application/controllers/Webadif.php:142 -#: application/views/interface_assets/header.php:518 +#: application/views/interface_assets/header.php:520 msgid "QO-100 Dx Club Upload" msgstr "" @@ -3335,105 +3336,105 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:1341 +#: application/models/Logbook_model.php:1346 msgid "Station ID not allowed" msgstr "" -#: application/models/Logbook_model.php:1346 +#: application/models/Logbook_model.php:1351 msgid "No Call given" msgstr "" -#: application/models/Logbook_model.php:1416 -#: application/models/Logbook_model.php:1618 +#: application/models/Logbook_model.php:1421 +#: application/models/Logbook_model.php:1623 msgid "DXCC has to be Numeric" msgstr "" -#: application/models/Logbook_model.php:4643 +#: application/models/Logbook_model.php:4648 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" -#: application/models/Logbook_model.php:4657 +#: application/models/Logbook_model.php:4662 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" msgstr "" -#: application/models/Logbook_model.php:4666 +#: application/models/Logbook_model.php:4671 msgid "QSO on" msgstr "" -#: application/models/Logbook_model.php:4666 +#: application/models/Logbook_model.php:4671 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" msgstr "" -#: application/models/Logbook_model.php:4715 +#: application/models/Logbook_model.php:4720 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " "imported. It's invalid" msgstr "" -#: application/models/Logbook_model.php:4980 +#: application/models/Logbook_model.php:4985 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4991 +#: application/models/Logbook_model.php:4996 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:5052 +#: application/models/Logbook_model.php:5057 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:5427 +#: application/models/Logbook_model.php:5432 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "" -#: application/models/Logbook_model.php:5492 -#: application/models/Logbook_model.php:5587 +#: application/models/Logbook_model.php:5497 +#: application/models/Logbook_model.php:5592 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:5500 +#: application/models/Logbook_model.php:5505 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:5506 +#: application/models/Logbook_model.php:5511 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:5510 +#: application/models/Logbook_model.php:5515 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:5514 +#: application/models/Logbook_model.php:5519 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:5517 +#: application/models/Logbook_model.php:5522 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:5520 +#: application/models/Logbook_model.php:5525 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:293 msgid "unknown" msgstr "" -#: application/models/Logbook_model.php:5590 +#: application/models/Logbook_model.php:5595 msgid "POTA reference already in log" msgstr "" -#: application/models/Logbook_model.php:5593 +#: application/models/Logbook_model.php:5598 msgid "QSO updated" msgstr "" -#: application/models/Logbook_model.php:6400 +#: application/models/Logbook_model.php:6405 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -4906,7 +4907,7 @@ msgid "Save" msgstr "" #: application/views/api/index.php:8 -#: application/views/interface_assets/header.php:530 +#: application/views/interface_assets/header.php:532 msgid "API Keys" msgstr "" @@ -8835,7 +8836,7 @@ msgstr "" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:572 +#: application/views/interface_assets/header.php:574 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:8 application/views/mode/index.php:55 @@ -11028,7 +11029,7 @@ msgid "" msgstr "" #: application/views/interface_assets/footer.php:223 -#: application/views/interface_assets/header.php:533 +#: application/views/interface_assets/header.php:535 #: application/views/options/sidebar.php:10 msgid "Version Info" msgstr "" @@ -11410,78 +11411,78 @@ msgstr "" msgid "No Clubstations available" msgstr "" -#: application/views/interface_assets/header.php:477 +#: application/views/interface_assets/header.php:479 msgid "Other Export Options" msgstr "" -#: application/views/interface_assets/header.php:485 +#: application/views/interface_assets/header.php:487 msgid "Cabrillo Export" msgstr "" -#: application/views/interface_assets/header.php:487 +#: application/views/interface_assets/header.php:489 msgid "EDI Export" msgstr "" -#: application/views/interface_assets/header.php:509 +#: application/views/interface_assets/header.php:511 msgid "QSL Queue" msgstr "" -#: application/views/interface_assets/header.php:510 +#: application/views/interface_assets/header.php:512 msgid "Labels" msgstr "" -#: application/views/interface_assets/header.php:512 +#: application/views/interface_assets/header.php:514 msgid "Third-Party Services" msgstr "" -#: application/views/interface_assets/header.php:515 +#: application/views/interface_assets/header.php:517 msgid "eQSL Import / Export" msgstr "" -#: application/views/interface_assets/header.php:516 +#: application/views/interface_assets/header.php:518 msgid "HRDLog Logbook" msgstr "" -#: application/views/interface_assets/header.php:519 +#: application/views/interface_assets/header.php:521 msgid "Clublog Import / Export" msgstr "" -#: application/views/interface_assets/header.php:522 +#: application/views/interface_assets/header.php:524 msgid "DCL Export" msgstr "" -#: application/views/interface_assets/header.php:534 +#: application/views/interface_assets/header.php:536 #: application/views/logbookadvanced/index.php:831 msgid "Help" msgstr "" -#: application/views/interface_assets/header.php:535 +#: application/views/interface_assets/header.php:537 msgid "Forum" msgstr "" -#: application/views/interface_assets/header.php:539 +#: application/views/interface_assets/header.php:541 #, php-format msgid "Stop impersonate and switch back to %s" msgstr "" -#: application/views/interface_assets/header.php:540 +#: application/views/interface_assets/header.php:542 #, php-format msgid "Switch back to %s" msgstr "" -#: application/views/interface_assets/header.php:544 +#: application/views/interface_assets/header.php:546 msgid "Logout" msgstr "" -#: application/views/interface_assets/header.php:552 +#: application/views/interface_assets/header.php:554 msgid "Select a Location" msgstr "" -#: application/views/interface_assets/header.php:594 +#: application/views/interface_assets/header.php:596 msgid "You miss station-locations here? Go to stationsetup and fav them" msgstr "" -#: application/views/interface_assets/header.php:631 +#: application/views/interface_assets/header.php:633 msgid "Extras" msgstr ""