diff --git a/README.md b/README.md index a592d390c..427f7be11 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) +[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) Translators: diff --git a/application/config/migration.php b/application/config/migration.php index bd90bbc19..3cf48e933 100644 --- a/application/config/migration.php +++ b/application/config/migration.php @@ -22,7 +22,7 @@ $config['migration_enabled'] = TRUE; | */ -$config['migration_version'] = 252; +$config['migration_version'] = 253; /* |-------------------------------------------------------------------------- diff --git a/application/controllers/Adif.php b/application/controllers/Adif.php index 0c73b83cd..e3386fe02 100644 --- a/application/controllers/Adif.php +++ b/application/controllers/Adif.php @@ -220,11 +220,11 @@ class adif extends CI_Controller { $fdata['upload_data']=''; // free memory $this->adif_parser->initialize(); - $custom_errors = ""; - $alladif=[]; + $custom_errors['errormessage'] = ""; + $alladif = []; $contest_qso_infos = []; while($record = $this->adif_parser->get_record()) { - + //overwrite the contest id if user chose a contest in UI if ($contest != '') { $record['contest_id'] = $contest; @@ -250,7 +250,7 @@ class adif extends CI_Controller { if(count($record) == 0) { break; }; - array_push($alladif,$record); + array_push($alladif, $record); }; $record=''; // free memory try { @@ -271,11 +271,12 @@ class adif extends CI_Controller { return; } } else { - $custom_errors=__("Station Profile not valid for User"); + $custom_errors['errormessage'] = __("Station Profile not valid for User"); } log_message("Error","ADIF End"); - $data['adif_errors'] = $custom_errors; + $data['adif_errors'] = $custom_errors['errormessage']; + $data['qsocount'] = $custom_errors['qsocount'] ?? 0; $data['skip_dupes'] = $this->input->post('skipDuplicate'); $data['imported_contests'] = $contest_qso_infos; diff --git a/application/controllers/Api.php b/application/controllers/Api.php index 8797a47b9..e28d2dfe0 100644 --- a/application/controllers/Api.php +++ b/application/controllers/Api.php @@ -277,7 +277,8 @@ class API extends CI_Controller { }; $record=''; // free memory gc_collect_cycles(); - $custom_errors = $this->logbook_model->import_bulk($alladif, $obj['station_profile_id'], false, false, false, false, false, false, false, false, true, false, true, false); + $result = $this->logbook_model->import_bulk($alladif, $obj['station_profile_id'], false, false, false, false, false, false, false, false, true, false, true, false); + $custom_errors = $result['errormessage']; if ($custom_errors) { $adif_errors++; } diff --git a/application/controllers/Simplefle.php b/application/controllers/Simplefle.php index bf7d6ef03..a12284aaa 100644 --- a/application/controllers/Simplefle.php +++ b/application/controllers/Simplefle.php @@ -12,7 +12,7 @@ class SimpleFLE extends CI_Controller { $this->load->model('modes'); $this->load->model('bands'); $this->load->model('contesting_model'); - + $data['contests']=$this->contesting_model->getActivecontests(); $data['station_profile'] = $this->stations->all_of_user(); // Used in the view for station location select $data['bands'] = $this->bands->get_all_bands(); // Fetching Bands for SFLE @@ -84,7 +84,8 @@ class SimpleFLE extends CI_Controller { $qsos = json_decode($qsos, true); $station_id = $qsos[0]['station_id']; // we can trust this value - $bulk_result = $this->logbook_model->import_bulk($qsos, $station_id); + $result = $this->logbook_model->import_bulk($qsos, $station_id); + $bulk_result = $result['errormessage']; $clean_result = str_replace(['

'], "\n", $bulk_result); log_message('debug', "SimpleFLE, save_qsos(); Bulk Result: \n" . $clean_result); @@ -95,11 +96,11 @@ class SimpleFLE extends CI_Controller { } $this->staticmap_model->remove_static_map_image($station_id); - if (empty($result)) { + if (empty($bulk_result)) { echo "success"; } else { - echo json_encode($result); + echo json_encode($bulk_result); } } - + } diff --git a/application/libraries/Cabrilloformat.php b/application/libraries/Cabrilloformat.php index 36fd25a56..4b0bc771f 100644 --- a/application/libraries/Cabrilloformat.php +++ b/application/libraries/Cabrilloformat.php @@ -147,7 +147,7 @@ class Cabrilloformat { } if ($grid_export == true) { - $returnstring .= substr($qso->station_gridsquare, 0, 4) ?? '' ." "; + $returnstring .= (substr($qso->station_gridsquare, 0, 4) ?? '') ." "; } if ($qso->COL_STX_STRING != "") { @@ -161,7 +161,7 @@ class Cabrilloformat { } if ($grid_export == true) { - $returnstring .= substr($qso->COL_GRIDSQUARE, 0, 4) ?? '' ." "; + $returnstring .= (substr($qso->COL_GRIDSQUARE, 0, 4) ?? '') ." "; } if ($qso->COL_SRX_STRING != "") { diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po index 95fe918bc..cb298df8a 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-08-20 19:04+0000\n" +"POT-Creation-Date: 2025-08-24 15:29+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" @@ -248,16 +248,16 @@ msgstr "ADIF-Import fehlgeschlagen!" msgid "Station Profile not valid for User" msgstr "Stations-Standort ist für diesen Benutzer nicht gültig" -#: application/controllers/Adif.php:282 +#: application/controllers/Adif.php:283 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "ADIF importiert" -#: application/controllers/Adif.php:293 +#: application/controllers/Adif.php:294 msgid "DCL Import" msgstr "DCL Import" -#: application/controllers/Adif.php:351 +#: application/controllers/Adif.php:352 msgid "DCL Data Imported" msgstr "DCL-Daten importiert" @@ -3218,36 +3218,31 @@ 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:1291 +#: application/models/Logbook_model.php:1292 msgid "Station ID not allowed" msgstr "Stations ID nicht erlaubt" -#: application/models/Logbook_model.php:1296 +#: application/models/Logbook_model.php:1297 msgid "No Call given" msgstr "Kein Rufzeichen angegeben" -#: application/models/Logbook_model.php:1366 -#: application/models/Logbook_model.php:1540 +#: application/models/Logbook_model.php:1367 +#: application/models/Logbook_model.php:1541 msgid "DXCC has to be Numeric" msgstr "DXCC muss numerisch sein" -#: application/models/Logbook_model.php:3987 +#: application/models/Logbook_model.php:4005 #, 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:3988 -#, php-format -msgid "Check %s for hints about errors in ADIF files." -msgstr "Schaue im %s für Tipps zu möglichen Fehlern in der ADIF-Datei." - -#: application/models/Logbook_model.php:4000 +#: application/models/Logbook_model.php:4018 msgid "QSO on" msgstr "QSO am" -#: application/models/Logbook_model.php:4000 +#: application/models/Logbook_model.php:4018 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3255,63 +3250,63 @@ 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:4299 +#: application/models/Logbook_model.php:4317 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "Das (Papier-)QSL-Empfangsdatum hat das falsche Format (JJJJMMDD)" -#: application/models/Logbook_model.php:4310 +#: application/models/Logbook_model.php:4328 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "Das (Papier-)QSL Sendedatum hat das falsche Format (JJJJMMTT)" -#: application/models/Logbook_model.php:4371 +#: application/models/Logbook_model.php:4389 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "Das Format des Clublog-Upload-Datums ist falsch (JJJJMMTT)" -#: application/models/Logbook_model.php:4391 +#: application/models/Logbook_model.php:4409 msgid "the lotw_qslrdate is invalid (YYYYMMDD)" msgstr "Das Format des LoTW-Empfangs-Datums ist falsch (JJJJMMTT)" -#: application/models/Logbook_model.php:4412 +#: application/models/Logbook_model.php:4430 msgid "the lotw_qslsdate is invalid (YYYYMMDD)" msgstr "Das Format des LoTW-Sende-Datums ist falsch (JJJJMMTT)" -#: application/models/Logbook_model.php:4704 +#: application/models/Logbook_model.php:4722 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Doublette zu" -#: application/models/Logbook_model.php:4765 +#: application/models/Logbook_model.php:4783 msgid "QSO could not be matched" msgstr "QSO konnte nicht gefunden werden" -#: application/models/Logbook_model.php:4771 +#: application/models/Logbook_model.php:4789 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "bestätigt durch LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:4776 +#: application/models/Logbook_model.php:4794 msgid "confirmed by award manager" msgstr "bestätigt durch Diplommananger" -#: application/models/Logbook_model.php:4779 +#: application/models/Logbook_model.php:4797 msgid "confirmed by cross-check of DCL data" msgstr "bestätigt durch Cross-Check von DCL-Daten" -#: application/models/Logbook_model.php:4782 +#: application/models/Logbook_model.php:4800 msgid "confirmation pending" msgstr "Bestätigung ausstehend" -#: application/models/Logbook_model.php:4785 +#: application/models/Logbook_model.php:4803 msgid "unconfirmed" msgstr "nicht bestätigt" -#: application/models/Logbook_model.php:4788 +#: application/models/Logbook_model.php:4806 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:287 msgid "unknown" msgstr "unbekannt" -#: application/models/Logbook_model.php:5626 +#: application/models/Logbook_model.php:5644 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:39 #: application/views/awards/gridmaster/index.php:54 @@ -4023,7 +4018,7 @@ msgstr "Minimale Anzahl" #: application/views/awards/wapc/index.php:168 #: application/views/awards/was/index.php:201 #: application/views/awards/wwff/index.php:65 -#: application/views/callstats/index.php:129 +#: application/views/callstats/index.php:128 #: application/views/clublog/export.php:60 #: application/views/distancerecords/index.php:52 #: application/views/public_search/empty.php:3 @@ -4040,7 +4035,7 @@ msgstr "Nichts gefunden!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wwff/index.php:35 #: application/views/cabrillo/index.php:31 -#: application/views/callstats/index.php:148 +#: application/views/callstats/index.php:147 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 #: application/views/contesting/index.php:166 @@ -4084,7 +4079,7 @@ msgid "Count" msgstr "Zähler" #: application/views/activators/index.php:101 -#: application/views/callstats/index.php:150 +#: application/views/callstats/index.php:151 #: application/views/timeline/index.php:203 #: application/views/timeline/index.php:238 #: application/views/timeline/index.php:266 @@ -4567,7 +4562,7 @@ msgstr "" "ebenfalls bereitstellt, importieren, um diese Daten in Wavelog zu korrigeren." #: application/views/adif/import.php:370 -#: application/views/adif/import_success.php:31 +#: application/views/adif/import_success.php:40 #: application/views/lotw_views/index.php:137 msgid "Information" msgstr "Information" @@ -4632,27 +4627,31 @@ msgstr "" "Datenbank eingefügt werden. Bitte überprüfe die importierte ADIF-Datei. Du " "kannst einen Online-ADIF-Datei-Checker verwenden. Zum Beispiel:" -#: application/views/adif/import_success.php:17 -msgid "Yay, its imported!" -msgstr "Yay, Datei importiert!" +#: application/views/adif/import_success.php:22 +msgid "Yay, it's imported!" +msgstr "Yay, es ist importiert!" -#: application/views/adif/import_success.php:18 +#: application/views/adif/import_success.php:23 msgid "The ADIF File has been imported." msgstr "Die ADIF-Datei wurde importiert." -#: application/views/adif/import_success.php:22 +#: application/views/adif/import_success.php:25 +msgid "Number of QSOs imported:" +msgstr "Anzahl der importierten QSOs:" + +#: application/views/adif/import_success.php:31 msgid "Dupes were inserted!" msgstr "Duplikate wurden eingefügt!" -#: application/views/adif/import_success.php:24 +#: application/views/adif/import_success.php:33 msgid "Dupes were skipped." msgstr "evtl. vorhandene Duplikate wurden übersprungen." -#: application/views/adif/import_success.php:31 +#: application/views/adif/import_success.php:40 msgid "Contest logs imported" msgstr "Contest Logs importiert" -#: application/views/adif/import_success.php:33 +#: application/views/adif/import_success.php:42 msgid "" "Sometimes, depending on your contest logging software, your exchanges will " "not be imported properly from that softwares ADIF. If you like to correct " @@ -4662,19 +4661,24 @@ msgstr "" "richtig aus der ADIF dieser Software importiert. Wenn du das korrigieren " "möchtest, wechsle zum CBR-Import-Tab der ADIF-Importseite." -#: application/views/adif/import_success.php:33 +#: application/views/adif/import_success.php:42 msgid "You imported at least 1 QSO containing a contest ID." msgstr "Du hast mindestens 1 QSO mit einer Contest-ID importiert." -#: application/views/adif/import_success.php:34 +#: application/views/adif/import_success.php:43 msgid "We found the following numbers of QSOs for the following contest IDs:" msgstr "Wir haben die folgende QSOs für die folgenden Contest-IDs gefunden:" -#: application/views/adif/import_success.php:47 +#: application/views/adif/import_success.php:57 msgid "Import details / possible problems" msgstr "Details zum Import / Mögliche Probleme" -#: application/views/adif/import_success.php:48 +#: application/views/adif/import_success.php:58 +#, php-format +msgid "Check %s for hints about errors in ADIF files." +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, the QSOs have still been added. Please check the " "following information:" @@ -4952,6 +4956,8 @@ msgid "" "Fields taken for this Award: Propagation-Mode and SAT-Name (ADIF: " "PROP_MODE=SAT, SAT_NAME='AO-73')" msgstr "" +"Für diesen Award berücksichtigte Felder: Propagation-Mode und SAT-Name " +"(ADIF: PROP_MODE=SAT, SAT_NAME=AO-73)" #: application/views/awards/73on73/index.php:32 #: application/views/awards/jcc/index.php:152 @@ -5014,6 +5020,9 @@ msgid "" "Fields taken for this Award: State (ADIF: STATE), Stations County (ADIF: " "CNTY), DXCC (Must be one of 291 (U.S.A.) ,6 (ALASKA) or 110 (HAWAII))" msgstr "" +"Für diesen Award berücksichtigte Felder: State (ADIF: STATE), Stations " +"County (ADIF: CNTY), DXCC (muss eines von 291 (U.S.A.), 6 (ALASKA) oder 110 " +"(HAWAII) sein)" #: application/views/awards/counties/index.php:22 msgid "Counties Worked" @@ -5116,7 +5125,7 @@ msgstr "Du findest alle Informationen und Regeln auf der Website von N4BAA: %s" #: application/views/awards/cq/index.php:24 msgid "Fields taken for this Award: CQ-Zone (ADIF: CQZ)" -msgstr "" +msgstr "Für diesen Award berücksichtigte Felder: CQ-Zone (ADIF: CQZ)" #: application/views/awards/cq/index.php:26 msgid "Awards - CQ WAZ" @@ -5377,7 +5386,7 @@ msgstr "" #: application/views/awards/dok/index.php:11 msgid "Fields taken for this Award: DOK (ADIF: DARC_DOK)" -msgstr "" +msgstr "Für diesen Award berücksichtigte Felder: DOK (ADIF: DARC_DOK)" #: application/views/awards/dok/index.php:21 msgid "DOK / SDOK" @@ -5463,6 +5472,8 @@ msgid "" "Fields taken for this Award: DXCC (Needs to be a valid one out of the DXCC-" "ADIF-Spec-List" msgstr "" +"Für diesen Award berücksichtigte Felder: DXCC (muss ein valider Eintrag " +"gemäß DXCC-Liste der ADIF Spezifikation sein)" #: application/views/awards/dxcc/index.php:33 #: application/views/awards/iota/index.php:34 @@ -5636,6 +5647,8 @@ msgid "" "Fields taken for this Award: DXCC (Must be USA), Gridsquare (Must contain a " "grid from one of the 488 mainland gridsquares!), Band must be 6M." msgstr "" +"Für diesen Award berücksichtigte Felder: DXCC (muss USA sein), Locator (muss " +"einer der 488 Festland Locator sein!), Band muss 6m sein." #: application/views/awards/gridmaster/index.php:8 msgid "US Gridmaster Award" @@ -5690,6 +5703,8 @@ msgid "" "grid from one of the 488 mainland gridsquares!), Propagation-Mode and SAT-" "Name" msgstr "" +"Für diesen Award berücksichtigte Felder: DXCC (muss USA sein), Locator (muss " +"einer der 488 Festland Locator sein!), Propagation-Mode und SAT-Name" #: application/views/awards/gridmaster/index.php:14 msgid "Gridmaster Award" @@ -5718,18 +5733,24 @@ msgid "" "Fields taken for this Award: DXCC (Must be Germany), Gridsquare, Propagation-" "Mode and SAT-Name" msgstr "" +"Für diesen Award berücksichtigte Felder: DXCC (muss Deutschland sein), " +"Locator, Propagation-Mode und SAT-Name" #: application/views/awards/gridmaster/index.php:23 msgid "" "Fields taken for this Award: DXCC (Must be Luxembourg), Gridsquare, " "Propagation-Mode and SAT-Name" msgstr "" +"Für diesen Award berücksichtigte Felder: DXCC (muss Luxemburg sein), " +"Locator, Propagation-Mode und SAT-Name" #: application/views/awards/gridmaster/index.php:26 msgid "" "Fields taken for this Award: DXCC (Must be Japan), Gridsquare, Propagation-" "Mode and SAT-Name" msgstr "" +"Für diesen Award berücksichtigte Felder: DXCC (muss Japan sein), Locator, " +"Propagation-Mode und SAT-Name" #: application/views/awards/helvetia/index.php:3 msgctxt "Switzerland Canton" @@ -5771,6 +5792,8 @@ msgid "" "Fields taken for this Award: DXCC (Must be Switzerland) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" +"Für diesen Award berücksichtigte Felder: DXCC (muss Schweiz sein), Locator, " +"Propagation-Mode und SAT-Name" #: application/views/awards/helvetia/index.php:115 msgid "Show Helvetia Map" @@ -5841,6 +5864,8 @@ msgid "" "Fields taken for this Award: IOTA (ADIF: IOTA) must contain valid IOTA-" "Reference" msgstr "" +"Für diesen Award berücksichtigte Felder: IOTA (ADIF: IOTA) muss eine valide " +"IOTA-Referenz enthalten" #: application/views/awards/iota/index.php:30 msgid "Deleted IOTA" @@ -5916,7 +5941,7 @@ msgstr "Du findest weitere Informationen auf der Webseite von %s." #: application/views/awards/itu/index.php:24 msgid "Fields taken for this Award: ITU-Zone (ADIF: ITUZ)" -msgstr "" +msgstr "Für diesen Award berücksichtigte Felder: ITU-Zone (ADIF: ITUZ)" #: application/views/awards/itu/index.php:26 msgid "Awards - ITU Zones" @@ -5957,6 +5982,8 @@ msgid "" "Fields taken for this Award: DXCC (Japan) and County (Must contain a valid " "reference!)" msgstr "" +"Für diesen Award berücksichtigte Felder: DXCC (Japan) und County (muss eine " +"valide Referenz enthalten!)" #: application/views/awards/jcc/index.php:116 msgid "Show JCC Map" @@ -6026,6 +6053,8 @@ msgstr "" #: application/views/awards/pota/index.php:11 msgid "Fields taken for this Award: POTA_REF (must contain Park-Reference)" msgstr "" +"Für diesen Award berücksichtigte Felder: POTA_REF (muss eine Park-Referenz " +"enthalten)" #: application/views/awards/pota/index.php:32 #: application/views/qso/index.php:274 application/views/qso/index.php:567 @@ -6190,6 +6219,8 @@ msgid "" "Fields taken for this Award: Gridsquare and vucc_grids (ADIF: GRIDSQUARE, " "VUCC_GRIDS)" msgstr "" +"Für diesen Award berücksichtigte Felder: Locator und VUCC-Grids (ADIF: " +"GRIDSQUARE, VUCC_GRIDS)" #: application/views/awards/vucc/index.php:23 msgid "Grids Worked" @@ -6225,6 +6256,8 @@ msgid "" "Fields taken for this Award: SIG (Has to be 'WAB') and SIG_INFO (should " "contain valid WAB-Grid)" msgstr "" +"Für diesen Award berücksichtigte Felder: SIG (muss 'WAB' sein) und SIG_INFO " +"(muss ein valides WAB-Grid en" #: application/views/awards/wab/index.php:110 msgid "List" @@ -6250,6 +6283,8 @@ msgid "" "Fields taken for this Award: Continent (ADIF tag 'CONT'). Must contain a " "valid continent-abbreviation!" msgstr "" +"Für diesen Award berücksichtigte Felder: Kontinent (ADIF: CONT). Muss eine " +"gültige Abkürzung eines Kontinents enthalten!" #: application/views/awards/wac/index.php:14 msgid "Awards - Worked All Continents (WAC)" @@ -6293,7 +6328,7 @@ msgstr "" #: application/views/awards/wae/index.php:11 msgid "Fields taken for this Award: Region, DXCC" -msgstr "" +msgstr "Für diesen Award berücksichtigte Felder: Region, DXCC" #: application/views/awards/wae/index.php:162 msgid "WAE Name" @@ -6337,6 +6372,8 @@ msgid "" "Fields taken for this Award: DXCC (Japan) and STATE (Must contain a valid " "prefecture!)" msgstr "" +"Für diesen Award berücksichtigte Felder: DXCC (Japan) und STATE (muss eine " +"gültige Präfektur enthalten)" #: application/views/awards/waja/index.php:119 msgid "Show WAJA Map" @@ -6401,6 +6438,8 @@ msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" +"Für diesen Award berücksichtigte Felder: DXCC (muss Niederlande sein) und " +"STATE (muss eine gültige Abkürzung der Provinz enthalten!)" #: application/views/awards/wap/index.php:115 msgid "Show WAP Map" @@ -6442,6 +6481,9 @@ msgid "" "Macao/152, Taiwan/386, Pratas Isl./505 or Scarborough Reef/506) and valid " "State (ADIF: DXCC and STATE)" msgstr "" +"Für diesen Award berücksichtigte Felder: DXCC (muss eines von China/318, " +"HongKong/321, Macao/152, Taiwan/386, Pratas Isl./505 or Scarborough Reef/506 " +"sein) und STATE (ADIF: DXCC and STATE)" #: application/views/awards/wapc/index.php:119 msgid "Code" @@ -6499,6 +6541,9 @@ msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" msgstr "" +"Für diesen Award berücksichtigte Felder: DXCC (muss eines von U.S.A, Alaska " +"oder Hawaii sein) und STATE (muss die gültige Abkürzung eines U.S. " +"Bundesstaats enthalten!)" #: application/views/awards/was/index.php:115 msgid "Show WAS Map" @@ -6530,7 +6575,7 @@ msgstr "" #: application/views/awards/wwff/index.php:11 msgid "Fields taken for this Award: WWFF (ADIF: WWFF_REF)" -msgstr "" +msgstr "Für diesen Award berücksichtigte Felder: WWFF (ADIF: WWFF_REF)" #: application/views/awards/wwff/index.php:32 #: application/views/qso/index.php:262 application/views/qso/index.php:554 @@ -7170,10 +7215,19 @@ msgstr "Es wurden keine Conteste in deinem Log gefunden." msgid "All except SAT" msgstr "Alle ausser SAT" -#: application/views/callstats/index.php:149 +#: application/views/callstats/index.php:148 msgid "#QSOs" msgstr "#QSOs" +#: application/views/callstats/index.php:149 +msgid "First QSO" +msgstr "" + +#: application/views/callstats/index.php:150 +#: application/views/stationsetup/stationsetup.php:129 +msgid "Last QSO" +msgstr "Letztes QSO" + #: application/views/cfd/index.php:7 #, php-format msgid "Export of CFD-File for DARC-Toplist (See %s)" @@ -13917,9 +13971,8 @@ msgid "" "properly configured at Clublog" msgstr "" "Wenn aktiviert, werden die QSOs, die von diesem Standort gemacht wurden, " -"beim Clublog-Upload ignoriert.
Sofern das Feld 'von allein' auf " -"deaktiviert springt, bitte bei Clublog die Einstellungen für diesen Call " -"überprüfen" +"beim Clublog-Upload ignoriert. Sofern das Feld 'von allein' auf deaktiviert " +"springt, bitte bei Clublog die Einstellungen für diesen Call überprüfen" #: application/views/station_profile/create.php:221 #: application/views/station_profile/edit.php:368 @@ -14062,6 +14115,11 @@ msgstr "Name der besonderen Interessengruppen (SIG) Station (z. B. GMA)." msgid "Special Interest Group Information" msgstr "Informationen für Besondere Interessengruppe (SIG)" +#: application/views/station_profile/edit.php:309 +#, php-format +msgid "Trouble? Check the %swiki%s." +msgstr "Probleme? Schau im %sWiki%s nach." + #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "Name des Stationslogbuchs" @@ -14209,10 +14267,6 @@ msgstr "Wartung" msgid "Please reassign them at " msgstr "Bitte mache die Zuordnung in " -#: application/views/stationsetup/stationsetup.php:129 -msgid "Last QSO" -msgstr "Letztes QSO" - #: application/views/stationsetup/stationsetup.php:131 msgid "Linked" msgstr "Verlinkt" @@ -14848,8 +14902,12 @@ msgid "Station Locations Quickswitch" msgstr "Stationsstandort-Quickswitch" #: application/views/user/edit.php:483 -msgid "Show the Station Locations Quickswitch in the main menu" -msgstr "Zeigt den Stationsstandort-Quickswitch im Hauptmenü" +msgid "" +"Show the Station Locations Quickswitch in the main menu. You can add " +"locations by adding them to favourites at the station setup page." +msgstr "" +"Zeige den Stationsstandort-Quickswitch im Hauptmenü. Du kannst auf der " +"Stationssetup-Seite Locations zu den Favoriten hinzufügen." #: application/views/user/edit.php:487 msgid "UTC Time in Menu" @@ -15914,6 +15972,12 @@ msgstr "Anfrage senden" msgid "Rcvd" msgstr "Rcvd" +#~ msgid "Yay, its imported!" +#~ msgstr "Yay, Datei importiert!" + +#~ msgid "Show the Station Locations Quickswitch in the main menu" +#~ msgstr "Zeigt den Stationsstandort-Quickswitch im Hauptmenü" + #~ msgid "Mark QSOs as uploaded" #~ msgstr "QSOs als hochgeladen markieren" diff --git a/application/locale/el_GR/LC_MESSAGES/messages.po b/application/locale/el_GR/LC_MESSAGES/messages.po index b1c83c999..a7cfeb3ef 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-08-20 19:04+0000\n" +"POT-Creation-Date: 2025-08-24 15:29+0000\n" "PO-Revision-Date: 2025-08-19 17:14+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Greek \n" +"POT-Creation-Date: 2025-08-24 15:29+0000\n" +"PO-Revision-Date: 2025-08-23 15:21+0000\n" +"Last-Translator: David Quental \n" "Language-Team: Spanish \n" "Language: es_ES\n" @@ -235,16 +235,16 @@ msgstr "¡Importación de ADIF con falla!" msgid "Station Profile not valid for User" msgstr "Perfil de Estación no válida para el Usuario" -#: application/controllers/Adif.php:282 +#: application/controllers/Adif.php:283 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "ADIF Importado" -#: application/controllers/Adif.php:293 +#: application/controllers/Adif.php:294 msgid "DCL Import" msgstr "Importar DCL" -#: application/controllers/Adif.php:351 +#: application/controllers/Adif.php:352 msgid "DCL Data Imported" msgstr "Datos DCL Importados" @@ -3213,35 +3213,30 @@ msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" "HRDlog: No se encontraron perfiles de estación con credenciales de HRDlog." -#: application/models/Logbook_model.php:1291 +#: application/models/Logbook_model.php:1292 msgid "Station ID not allowed" msgstr "ID de estación no permitida" -#: application/models/Logbook_model.php:1296 +#: application/models/Logbook_model.php:1297 msgid "No Call given" msgstr "Ningún indicativo dado" -#: application/models/Logbook_model.php:1366 -#: application/models/Logbook_model.php:1540 +#: application/models/Logbook_model.php:1367 +#: application/models/Logbook_model.php:1541 msgid "DXCC has to be Numeric" msgstr "DXCC tiene que ser numérico" -#: application/models/Logbook_model.php:3987 +#: application/models/Logbook_model.php:4005 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "Indicativo de estación incorrecto %s al importar QSO con %s para %s: OMITIDO" -#: application/models/Logbook_model.php:3988 -#, php-format -msgid "Check %s for hints about errors in ADIF files." -msgstr "Revisa %s para obtener pistas sobre errores en archivos ADIF." - -#: application/models/Logbook_model.php:4000 +#: application/models/Logbook_model.php:4018 msgid "QSO on" msgstr "QSO en" -#: application/models/Logbook_model.php:4000 +#: application/models/Logbook_model.php:4018 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3249,63 +3244,63 @@ msgstr "" "Intentaste importar un QSO sin ningún indicativo dado. Este QSO no fue " "importado. Es inválido" -#: application/models/Logbook_model.php:4299 +#: application/models/Logbook_model.php:4317 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "la qslrfecha es inválida (AAAAMMDD)" -#: application/models/Logbook_model.php:4310 +#: application/models/Logbook_model.php:4328 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "la qslfecha es inválida (YYYYMMDD)" -#: application/models/Logbook_model.php:4371 +#: application/models/Logbook_model.php:4389 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "la fecha de carga de clublog_qso es inválida (AAAAMMDD)" -#: application/models/Logbook_model.php:4391 +#: application/models/Logbook_model.php:4409 msgid "the lotw_qslrdate is invalid (YYYYMMDD)" msgstr "la lotw_qslrdate no es válida (YYYYMMDD)" -#: application/models/Logbook_model.php:4412 +#: application/models/Logbook_model.php:4430 msgid "the lotw_qslsdate is invalid (YYYYMMDD)" msgstr "el lotw_qslsdate es inválido (AAAAMMDD)" -#: application/models/Logbook_model.php:4704 +#: application/models/Logbook_model.php:4722 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Duplicado para" -#: application/models/Logbook_model.php:4765 +#: application/models/Logbook_model.php:4783 msgid "QSO could not be matched" msgstr "QSOs que no concuerdan" -#: application/models/Logbook_model.php:4771 +#: application/models/Logbook_model.php:4789 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "confirmados por LoTW/Clublog/eQSL/Concurso" -#: application/models/Logbook_model.php:4776 +#: application/models/Logbook_model.php:4794 msgid "confirmed by award manager" msgstr "confirmados por el administrador del premio" -#: application/models/Logbook_model.php:4779 +#: application/models/Logbook_model.php:4797 msgid "confirmed by cross-check of DCL data" msgstr "confirmados al hacer chequeo cruzadoc on datos de DCL" -#: application/models/Logbook_model.php:4782 +#: application/models/Logbook_model.php:4800 msgid "confirmation pending" msgstr "pendiente de confirmación" -#: application/models/Logbook_model.php:4785 +#: application/models/Logbook_model.php:4803 msgid "unconfirmed" msgstr "sin confirmar" -#: application/models/Logbook_model.php:4788 +#: application/models/Logbook_model.php:4806 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:287 msgid "unknown" msgstr "desconocido" -#: application/models/Logbook_model.php:5626 +#: application/models/Logbook_model.php:5644 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:39 #: application/views/awards/gridmaster/index.php:54 @@ -4016,7 +4011,7 @@ msgstr "Cuenta Mínima" #: application/views/awards/wapc/index.php:168 #: application/views/awards/was/index.php:201 #: application/views/awards/wwff/index.php:65 -#: application/views/callstats/index.php:129 +#: application/views/callstats/index.php:128 #: application/views/clublog/export.php:60 #: application/views/distancerecords/index.php:52 #: application/views/public_search/empty.php:3 @@ -4033,7 +4028,7 @@ msgstr "¡Nada encontrado!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wwff/index.php:35 #: application/views/cabrillo/index.php:31 -#: application/views/callstats/index.php:148 +#: application/views/callstats/index.php:147 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 #: application/views/contesting/index.php:166 @@ -4077,7 +4072,7 @@ msgid "Count" msgstr "Conteo" #: application/views/activators/index.php:101 -#: application/views/callstats/index.php:150 +#: application/views/callstats/index.php:151 #: application/views/timeline/index.php:203 #: application/views/timeline/index.php:238 #: application/views/timeline/index.php:266 @@ -4555,7 +4550,7 @@ msgstr "" "también proporciona para reescribir esos datos en Wavelog." #: application/views/adif/import.php:370 -#: application/views/adif/import_success.php:31 +#: application/views/adif/import_success.php:40 #: application/views/lotw_views/index.php:137 msgid "Information" msgstr "Información" @@ -4620,27 +4615,31 @@ msgstr "" "base de datos. Por favor, revisa el archivo ADIF importado. Puedes usar un " "verificador de archivos ADIF en línea. Por ejemplo:" -#: application/views/adif/import_success.php:17 -msgid "Yay, its imported!" -msgstr "¡Bien, lo hemos importado!" +#: application/views/adif/import_success.php:22 +msgid "Yay, it's imported!" +msgstr "" -#: application/views/adif/import_success.php:18 +#: application/views/adif/import_success.php:23 msgid "The ADIF File has been imported." msgstr "El archivo ADIF fue importado." -#: application/views/adif/import_success.php:22 +#: application/views/adif/import_success.php:25 +msgid "Number of QSOs imported:" +msgstr "" + +#: application/views/adif/import_success.php:31 msgid "Dupes were inserted!" msgstr "¡Se insertaron duplicados!" -#: application/views/adif/import_success.php:24 +#: application/views/adif/import_success.php:33 msgid "Dupes were skipped." msgstr "Se omitieron los duplicados." -#: application/views/adif/import_success.php:31 +#: application/views/adif/import_success.php:40 msgid "Contest logs imported" msgstr "Registros de concurso importados" -#: application/views/adif/import_success.php:33 +#: application/views/adif/import_success.php:42 msgid "" "Sometimes, depending on your contest logging software, your exchanges will " "not be imported properly from that softwares ADIF. If you like to correct " @@ -4651,21 +4650,26 @@ msgstr "" "Si deseas corregir eso, cambia a la pestaña de Importación CBR de la página " "de Importación ADIF." -#: application/views/adif/import_success.php:33 +#: application/views/adif/import_success.php:42 msgid "You imported at least 1 QSO containing a contest ID." msgstr "Has importado al menos 1 QSO que contiene un ID de concurso." -#: application/views/adif/import_success.php:34 +#: application/views/adif/import_success.php:43 msgid "We found the following numbers of QSOs for the following contest IDs:" msgstr "" "Encontramos los siguientes números de QSOs para los siguientes IDs de " "concurso:" -#: application/views/adif/import_success.php:47 +#: application/views/adif/import_success.php:57 msgid "Import details / possible problems" msgstr "Detalles de importación / posibles problemas" -#: application/views/adif/import_success.php:48 +#: application/views/adif/import_success.php:58 +#, php-format +msgid "Check %s for hints about errors in ADIF files." +msgstr "Revisa %s para obtener pistas sobre errores en archivos ADIF." + +#: application/views/adif/import_success.php:59 msgid "" "You might have ADIF errors, the QSOs have still been added. Please check the " "following information:" @@ -4943,6 +4947,8 @@ msgid "" "Fields taken for this Award: Propagation-Mode and SAT-Name (ADIF: " "PROP_MODE=SAT, SAT_NAME='AO-73')" msgstr "" +"Campos tomados para este premio: Modo de propagación y Nombre del SAT (ADIF: " +"PROP_MODE=SAT, SAT_NAME='AO-73')" #: application/views/awards/73on73/index.php:32 #: application/views/awards/jcc/index.php:152 @@ -5006,6 +5012,9 @@ msgid "" "Fields taken for this Award: State (ADIF: STATE), Stations County (ADIF: " "CNTY), DXCC (Must be one of 291 (U.S.A.) ,6 (ALASKA) or 110 (HAWAII))" msgstr "" +"Campos tomados para este premio: Estado (ADIF: STATE), Condado de la " +"estación (ADIF: CNTY), DXCC (Debe ser uno de 291 (EE.UU.), 6 (ALASKA) o 110 " +"(HAWÁI))" #: application/views/awards/counties/index.php:22 msgid "Counties Worked" @@ -5110,7 +5119,7 @@ msgstr "" #: application/views/awards/cq/index.php:24 msgid "Fields taken for this Award: CQ-Zone (ADIF: CQZ)" -msgstr "" +msgstr "Campos tomados para este premio: Zona CQ (ADIF: CQZ)" #: application/views/awards/cq/index.php:26 msgid "Awards - CQ WAZ" @@ -5372,7 +5381,7 @@ msgstr "" #: application/views/awards/dok/index.php:11 msgid "Fields taken for this Award: DOK (ADIF: DARC_DOK)" -msgstr "" +msgstr "Campos tomados para este premio: DOK (ADIF: DARC_DOK)" #: application/views/awards/dok/index.php:21 msgid "DOK / SDOK" @@ -5459,6 +5468,8 @@ msgid "" "Fields taken for this Award: DXCC (Needs to be a valid one out of the DXCC-" "ADIF-Spec-List" msgstr "" +"Campos tomados para este premio: DXCC (Debe ser uno válido de la lista de " +"especificaciones DXCC-ADIF)" #: application/views/awards/dxcc/index.php:33 #: application/views/awards/iota/index.php:34 @@ -5632,6 +5643,9 @@ msgid "" "Fields taken for this Award: DXCC (Must be USA), Gridsquare (Must contain a " "grid from one of the 488 mainland gridsquares!), Band must be 6M." msgstr "" +"Campos tomados para este premio: DXCC (Debe ser EE.UU.), Cuadrícula (¡Debe " +"contener una cuadrícula de una de las 488 cuadrículas continentales!), La " +"banda debe ser 6M." #: application/views/awards/gridmaster/index.php:8 msgid "US Gridmaster Award" @@ -5687,6 +5701,9 @@ msgid "" "grid from one of the 488 mainland gridsquares!), Propagation-Mode and SAT-" "Name" msgstr "" +"Campos tomados para este premio: DXCC (Debe ser EE.UU.), Cuadrícula (¡Debe " +"contener una cuadrícula de una de las 488 cuadrículas continentales!), Modo " +"de propagación y Nombre del SAT" #: application/views/awards/gridmaster/index.php:14 msgid "Gridmaster Award" @@ -5715,18 +5732,24 @@ msgid "" "Fields taken for this Award: DXCC (Must be Germany), Gridsquare, Propagation-" "Mode and SAT-Name" msgstr "" +"Campos tomados para este premio: DXCC (debe ser Alemania), cuadrícula, modo " +"de propagación y nombre del satélite" #: application/views/awards/gridmaster/index.php:23 msgid "" "Fields taken for this Award: DXCC (Must be Luxembourg), Gridsquare, " "Propagation-Mode and SAT-Name" msgstr "" +"Campos tomados para este premio: DXCC (Debe ser Luxemburgo), Cuadrícula, " +"Modo de propagación y Nombre del SAT" #: application/views/awards/gridmaster/index.php:26 msgid "" "Fields taken for this Award: DXCC (Must be Japan), Gridsquare, Propagation-" "Mode and SAT-Name" msgstr "" +"Campos tomados para este premio: DXCC (Debe ser Japón), Cuadrícula, Modo de " +"propagación y Nombre del SAT" #: application/views/awards/helvetia/index.php:3 msgctxt "Switzerland Canton" @@ -5768,6 +5791,8 @@ msgid "" "Fields taken for this Award: DXCC (Must be Switzerland) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" +"Campos tomados para este premio: DXCC (Debe ser Suiza) y ESTADO (¡Debe " +"contener una abreviatura de estado válida!)" #: application/views/awards/helvetia/index.php:115 msgid "Show Helvetia Map" @@ -5837,6 +5862,8 @@ msgid "" "Fields taken for this Award: IOTA (ADIF: IOTA) must contain valid IOTA-" "Reference" msgstr "" +"Campos tomados para este premio: IOTA (ADIF: IOTA) debe contener una " +"referencia IOTA válida" #: application/views/awards/iota/index.php:30 msgid "Deleted IOTA" @@ -5912,7 +5939,7 @@ msgstr "Puedes encontrar más información en el sitio web de %s." #: application/views/awards/itu/index.php:24 msgid "Fields taken for this Award: ITU-Zone (ADIF: ITUZ)" -msgstr "" +msgstr "Campos tomados para este premio: Zona ITU (ADIF: ITUZ)" #: application/views/awards/itu/index.php:26 msgid "Awards - ITU Zones" @@ -5953,6 +5980,8 @@ msgid "" "Fields taken for this Award: DXCC (Japan) and County (Must contain a valid " "reference!)" msgstr "" +"Campos tomados para este premio: DXCC (Japón) y Condado (¡Debe contener una " +"referencia válida!)" #: application/views/awards/jcc/index.php:116 msgid "Show JCC Map" @@ -6022,6 +6051,8 @@ msgstr "" #: application/views/awards/pota/index.php:11 msgid "Fields taken for this Award: POTA_REF (must contain Park-Reference)" msgstr "" +"Campos tomados para este premio: POTA_REF (debe contener la referencia del " +"parque)" #: application/views/awards/pota/index.php:32 #: application/views/qso/index.php:274 application/views/qso/index.php:567 @@ -6187,6 +6218,8 @@ msgid "" "Fields taken for this Award: Gridsquare and vucc_grids (ADIF: GRIDSQUARE, " "VUCC_GRIDS)" msgstr "" +"Campos tomados para este premio: Cuadrícula y vucc_grids (ADIF: GRIDSQUARE, " +"VUCC_GRIDS)" #: application/views/awards/vucc/index.php:23 msgid "Grids Worked" @@ -6223,6 +6256,8 @@ msgid "" "Fields taken for this Award: SIG (Has to be 'WAB') and SIG_INFO (should " "contain valid WAB-Grid)" msgstr "" +"Campos tomados para este premio: SIG (tiene que ser 'WAB') y SIG_INFO (debe " +"contener una cuadrícula WAB válida)" #: application/views/awards/wab/index.php:110 msgid "List" @@ -6248,6 +6283,8 @@ msgid "" "Fields taken for this Award: Continent (ADIF tag 'CONT'). Must contain a " "valid continent-abbreviation!" msgstr "" +"Campos tomados para este Premio: Continente (etiqueta ADIF 'CONT'). ¡Debe " +"contener una abreviatura de continente válida!" #: application/views/awards/wac/index.php:14 msgid "Awards - Worked All Continents (WAC)" @@ -6291,7 +6328,7 @@ msgstr "" #: application/views/awards/wae/index.php:11 msgid "Fields taken for this Award: Region, DXCC" -msgstr "" +msgstr "Campos tomados para este premio: Región, DXCC" #: application/views/awards/wae/index.php:162 msgid "WAE Name" @@ -6337,6 +6374,8 @@ msgid "" "Fields taken for this Award: DXCC (Japan) and STATE (Must contain a valid " "prefecture!)" msgstr "" +"Campos tomados para este premio: DXCC (Japón) y ESTADO (¡Debe contener una " +"prefectura válida!)" #: application/views/awards/waja/index.php:119 msgid "Show WAJA Map" @@ -6401,6 +6440,8 @@ msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" +"Campos tomados para este premio: DXCC (Debe ser Países Bajos) y ESTADO " +"(¡Debe contener una abreviatura de estado válida!)" #: application/views/awards/wap/index.php:115 msgid "Show WAP Map" @@ -6442,6 +6483,9 @@ msgid "" "Macao/152, Taiwan/386, Pratas Isl./505 or Scarborough Reef/506) and valid " "State (ADIF: DXCC and STATE)" msgstr "" +"Campos tomados para este Premio: DXCC (Debe ser uno de China/318, " +"HongKong/321, Macao/152, Taiwán/386, Islas Pratas/505 o Arrecife " +"Scarborough/506) y Estado válido (ADIF: DXCC y STATE)" #: application/views/awards/wapc/index.php:119 msgid "Code" @@ -6500,6 +6544,9 @@ msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" msgstr "" +"Campos tomados para este premio: DXCC (Debe ser uno de EE.UU., Alaska o " +"Hawái) y ESTADO (¡Debe contener una abreviatura válida de un estado de EE." +"UU.!)" #: application/views/awards/was/index.php:115 msgid "Show WAS Map" @@ -6531,7 +6578,7 @@ msgstr "" #: application/views/awards/wwff/index.php:11 msgid "Fields taken for this Award: WWFF (ADIF: WWFF_REF)" -msgstr "" +msgstr "Campos tomados para este premio: WWFF (ADIF: WWFF_REF)" #: application/views/awards/wwff/index.php:32 #: application/views/qso/index.php:262 application/views/qso/index.php:554 @@ -7172,10 +7219,19 @@ msgstr "No se encontraron concursos en tu registro." msgid "All except SAT" msgstr "Todo excepto SAT" -#: application/views/callstats/index.php:149 +#: application/views/callstats/index.php:148 msgid "#QSOs" msgstr "#QSOs" +#: application/views/callstats/index.php:149 +msgid "First QSO" +msgstr "" + +#: application/views/callstats/index.php:150 +#: application/views/stationsetup/stationsetup.php:129 +msgid "Last QSO" +msgstr "Último QSO" + #: application/views/cfd/index.php:7 #, php-format msgid "Export of CFD-File for DARC-Toplist (See %s)" @@ -14082,6 +14138,11 @@ msgstr "" msgid "Special Interest Group Information" msgstr "Información del Grupo de Interés Especial" +#: application/views/station_profile/edit.php:309 +#, php-format +msgid "Trouble? Check the %swiki%s." +msgstr "¿Problemas? Consulta la %swiki%s." + #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "Nombre del Libro de Guardia de Estación" @@ -14229,10 +14290,6 @@ msgstr "Mantenimiento" msgid "Please reassign them at " msgstr "Por favor, reasignelas en " -#: application/views/stationsetup/stationsetup.php:129 -msgid "Last QSO" -msgstr "Último QSO" - #: application/views/stationsetup/stationsetup.php:131 msgid "Linked" msgstr "Vinculado" @@ -14871,9 +14928,13 @@ msgid "Station Locations Quickswitch" msgstr "Cambio rápido de ubicaciones de estación" #: application/views/user/edit.php:483 -msgid "Show the Station Locations Quickswitch in the main menu" +msgid "" +"Show the Station Locations Quickswitch in the main menu. You can add " +"locations by adding them to favourites at the station setup page." msgstr "" -"Mostrar el cambio rápido de ubicaciones de estaciones en el menú principal" +"Muestra el cambio rápido de ubicaciones de estaciones en el menú principal. " +"Puedes añadir ubicaciones agregándolas a favoritos en la página de " +"configuración de la estación." #: application/views/user/edit.php:487 msgid "UTC Time in Menu" @@ -15934,6 +15995,13 @@ msgstr "Enviar solicitud" msgid "Rcvd" msgstr "Recibido" +#~ msgid "Yay, its imported!" +#~ msgstr "¡Bien, lo hemos importado!" + +#~ msgid "Show the Station Locations Quickswitch in the main menu" +#~ msgstr "" +#~ "Mostrar el cambio rápido de ubicaciones de estaciones en el menú principal" + #~ msgid "ADIF File" #~ msgstr "Archivo ADIF" diff --git a/application/locale/et/LC_MESSAGES/messages.po b/application/locale/et/LC_MESSAGES/messages.po index d7a88b94a..114ddb788 100644 --- a/application/locale/et/LC_MESSAGES/messages.po +++ b/application/locale/et/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-08-20 19:04+0000\n" +"POT-Creation-Date: 2025-08-24 15:29+0000\n" "PO-Revision-Date: 2025-02-11 12:33+0000\n" "Last-Translator: tviitkar \n" "Language-Team: Estonian \n" "Language-Team: Finnish \n" "Language-Team: French \n" "Language-Team: Croatian \n" "Language-Team: Hungarian , 2024. +# Matthias Jung , 2025. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-08-20 19:04+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"POT-Creation-Date: 2025-08-24 15:29+0000\n" +"PO-Revision-Date: 2025-08-23 15:21+0000\n" +"Last-Translator: Matthias Jung \n" +"Language-Team: Armenian \n" "Language: hy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 5.12.2\n" #: application/controllers/Accumulated.php:12 #: application/controllers/Activators.php:13 @@ -120,17 +123,17 @@ msgstr "" #: application/controllers/Usermode.php:15 #: application/controllers/Webadif.php:91 application/models/Club_model.php:52 msgid "You're not allowed to do that!" -msgstr "" +msgstr "Ձեզ դա թույլ չի տրվում:" #: application/controllers/Accumulated.php:19 #: application/views/interface_assets/header.php:162 msgid "Accumulated Statistics" -msgstr "" +msgstr "Կուտակված վիճակագրություն" #: application/controllers/Activated_gridmap.php:10 #: application/views/activated_gridmap/index.php:5 msgid "Activated Gridsquare Map" -msgstr "" +msgstr "Ակտիվացված քառակուսի քարտեզ" #: application/controllers/Activated_gridmap.php:31 #: application/controllers/Awards.php:1003 @@ -142,7 +145,7 @@ msgstr "" #: application/views/visitor/layout/footer.php:12 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" -msgstr "" +msgstr "Քառակուսիներ" #: application/controllers/Activated_gridmap.php:32 #: application/controllers/Gridmap.php:32 @@ -226,16 +229,16 @@ msgstr "" msgid "Station Profile not valid for User" msgstr "" -#: application/controllers/Adif.php:282 +#: application/controllers/Adif.php:283 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "" -#: application/controllers/Adif.php:293 +#: application/controllers/Adif.php:294 msgid "DCL Import" msgstr "" -#: application/controllers/Adif.php:351 +#: application/controllers/Adif.php:352 msgid "DCL Data Imported" msgstr "" @@ -3120,96 +3123,91 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:1291 +#: application/models/Logbook_model.php:1292 msgid "Station ID not allowed" msgstr "" -#: application/models/Logbook_model.php:1296 +#: application/models/Logbook_model.php:1297 msgid "No Call given" msgstr "" -#: application/models/Logbook_model.php:1366 -#: application/models/Logbook_model.php:1540 +#: application/models/Logbook_model.php:1367 +#: application/models/Logbook_model.php:1541 msgid "DXCC has to be Numeric" msgstr "" -#: application/models/Logbook_model.php:3987 +#: application/models/Logbook_model.php:4005 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" -#: application/models/Logbook_model.php:3988 -#, php-format -msgid "Check %s for hints about errors in ADIF files." -msgstr "" - -#: application/models/Logbook_model.php:4000 +#: application/models/Logbook_model.php:4018 msgid "QSO on" msgstr "" -#: application/models/Logbook_model.php:4000 +#: application/models/Logbook_model.php:4018 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:4299 +#: application/models/Logbook_model.php:4317 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4310 +#: application/models/Logbook_model.php:4328 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4371 +#: application/models/Logbook_model.php:4389 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4391 +#: application/models/Logbook_model.php:4409 msgid "the lotw_qslrdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4412 +#: application/models/Logbook_model.php:4430 msgid "the lotw_qslsdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4704 +#: application/models/Logbook_model.php:4722 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "" -#: application/models/Logbook_model.php:4765 +#: application/models/Logbook_model.php:4783 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:4771 +#: application/models/Logbook_model.php:4789 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:4776 +#: application/models/Logbook_model.php:4794 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:4779 +#: application/models/Logbook_model.php:4797 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:4782 +#: application/models/Logbook_model.php:4800 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:4785 +#: application/models/Logbook_model.php:4803 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:4788 +#: application/models/Logbook_model.php:4806 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:287 msgid "unknown" msgstr "" -#: application/models/Logbook_model.php:5626 +#: application/models/Logbook_model.php:5644 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:39 #: application/views/awards/gridmaster/index.php:54 @@ -3920,7 +3918,7 @@ msgstr "" #: application/views/awards/wapc/index.php:168 #: application/views/awards/was/index.php:201 #: application/views/awards/wwff/index.php:65 -#: application/views/callstats/index.php:129 +#: application/views/callstats/index.php:128 #: application/views/clublog/export.php:60 #: application/views/distancerecords/index.php:52 #: application/views/public_search/empty.php:3 @@ -3937,7 +3935,7 @@ msgstr "" #: application/views/awards/sota/index.php:33 #: application/views/awards/wwff/index.php:35 #: application/views/cabrillo/index.php:31 -#: application/views/callstats/index.php:148 +#: application/views/callstats/index.php:147 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 #: application/views/contesting/index.php:166 @@ -3981,7 +3979,7 @@ msgid "Count" msgstr "" #: application/views/activators/index.php:101 -#: application/views/callstats/index.php:150 +#: application/views/callstats/index.php:151 #: application/views/timeline/index.php:203 #: application/views/timeline/index.php:238 #: application/views/timeline/index.php:266 @@ -4428,7 +4426,7 @@ msgid "" msgstr "" #: application/views/adif/import.php:370 -#: application/views/adif/import_success.php:31 +#: application/views/adif/import_success.php:40 #: application/views/lotw_views/index.php:137 msgid "Information" msgstr "" @@ -4478,46 +4476,55 @@ msgid "" "file checker. For example:" msgstr "" -#: application/views/adif/import_success.php:17 -msgid "Yay, its imported!" +#: application/views/adif/import_success.php:22 +msgid "Yay, it's imported!" msgstr "" -#: application/views/adif/import_success.php:18 +#: application/views/adif/import_success.php:23 msgid "The ADIF File has been imported." msgstr "" -#: application/views/adif/import_success.php:22 -msgid "Dupes were inserted!" -msgstr "" - -#: application/views/adif/import_success.php:24 -msgid "Dupes were skipped." +#: application/views/adif/import_success.php:25 +msgid "Number of QSOs imported:" msgstr "" #: application/views/adif/import_success.php:31 -msgid "Contest logs imported" +msgid "Dupes were inserted!" msgstr "" #: application/views/adif/import_success.php:33 +msgid "Dupes were skipped." +msgstr "" + +#: application/views/adif/import_success.php:40 +msgid "Contest logs imported" +msgstr "" + +#: application/views/adif/import_success.php:42 msgid "" "Sometimes, depending on your contest logging software, your exchanges will " "not be imported properly from that softwares ADIF. If you like to correct " "that, switch to the CBR Import Tab of the ADIF Import page." msgstr "" -#: application/views/adif/import_success.php:33 +#: application/views/adif/import_success.php:42 msgid "You imported at least 1 QSO containing a contest ID." msgstr "" -#: application/views/adif/import_success.php:34 +#: application/views/adif/import_success.php:43 msgid "We found the following numbers of QSOs for the following contest IDs:" msgstr "" -#: application/views/adif/import_success.php:47 +#: application/views/adif/import_success.php:57 msgid "Import details / possible problems" msgstr "" -#: application/views/adif/import_success.php:48 +#: application/views/adif/import_success.php:58 +#, php-format +msgid "Check %s for hints about errors in ADIF files." +msgstr "" + +#: application/views/adif/import_success.php:59 msgid "" "You might have ADIF errors, the QSOs have still been added. Please check the " "following information:" @@ -6781,10 +6788,19 @@ msgstr "" msgid "All except SAT" msgstr "" -#: application/views/callstats/index.php:149 +#: application/views/callstats/index.php:148 msgid "#QSOs" msgstr "" +#: application/views/callstats/index.php:149 +msgid "First QSO" +msgstr "" + +#: application/views/callstats/index.php:150 +#: application/views/stationsetup/stationsetup.php:129 +msgid "Last QSO" +msgstr "" + #: application/views/cfd/index.php:7 #, php-format msgid "Export of CFD-File for DARC-Toplist (See %s)" @@ -8270,15 +8286,15 @@ msgstr "" #: application/views/debug/index.php:668 msgid "Albanian" -msgstr "" +msgstr "ալբաներեն" #: application/views/debug/index.php:669 msgid "Armenian" -msgstr "" +msgstr "Հայերեն" #: application/views/debug/index.php:670 msgid "Bosnian" -msgstr "" +msgstr "բոսնիերեն" #: application/views/debug/index.php:671 msgid "Bulgarian" @@ -13270,6 +13286,11 @@ msgstr "" msgid "Special Interest Group Information" msgstr "" +#: application/views/station_profile/edit.php:309 +#, php-format +msgid "Trouble? Check the %swiki%s." +msgstr "" + #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "" @@ -13400,10 +13421,6 @@ msgstr "" msgid "Please reassign them at " msgstr "" -#: application/views/stationsetup/stationsetup.php:129 -msgid "Last QSO" -msgstr "" - #: application/views/stationsetup/stationsetup.php:131 msgid "Linked" msgstr "" @@ -13981,7 +13998,9 @@ msgid "Station Locations Quickswitch" msgstr "" #: application/views/user/edit.php:483 -msgid "Show the Station Locations Quickswitch in the main menu" +msgid "" +"Show the Station Locations Quickswitch in the main menu. You can add " +"locations by adding them to favourites at the station setup page." msgstr "" #: application/views/user/edit.php:487 diff --git a/application/locale/it_IT/LC_MESSAGES/messages.mo b/application/locale/it_IT/LC_MESSAGES/messages.mo index 6e7094e7d..8b700827c 100644 Binary files a/application/locale/it_IT/LC_MESSAGES/messages.mo and b/application/locale/it_IT/LC_MESSAGES/messages.mo differ diff --git a/application/locale/it_IT/LC_MESSAGES/messages.po b/application/locale/it_IT/LC_MESSAGES/messages.po index d50313f87..3364ddbc3 100644 --- a/application/locale/it_IT/LC_MESSAGES/messages.po +++ b/application/locale/it_IT/LC_MESSAGES/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-08-20 19:04+0000\n" -"PO-Revision-Date: 2025-08-19 17:14+0000\n" +"POT-Creation-Date: 2025-08-24 15:29+0000\n" +"PO-Revision-Date: 2025-08-23 15:21+0000\n" "Last-Translator: Luca \n" "Language-Team: Italian \n" @@ -192,7 +192,7 @@ msgstr "Locatori principali totali collegati" #: application/views/activators/index.php:5 #: application/views/interface_assets/header.php:152 msgid "Gridsquare Activators" -msgstr "Attivatori locatori" +msgstr "Attivatori di locatori" #: application/controllers/Activatorsmap.php:17 #: application/views/activators/index.php:2 @@ -230,16 +230,16 @@ msgstr "Importazione ADIF fallita!" msgid "Station Profile not valid for User" msgstr "Il profilo di stazione non è valido per l'utente" -#: application/controllers/Adif.php:282 +#: application/controllers/Adif.php:283 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "ADIF importato" -#: application/controllers/Adif.php:293 +#: application/controllers/Adif.php:294 msgid "DCL Import" msgstr "Importa DCL" -#: application/controllers/Adif.php:351 +#: application/controllers/Adif.php:352 msgid "DCL Data Imported" msgstr "Dati DCL importati" @@ -943,7 +943,7 @@ msgstr "e propagazione" #: application/controllers/Dxatlas.php:19 #: application/views/interface_assets/header.php:459 msgid "DX Atlas Gridsquare Export" -msgstr "Esporta DX Atlas Gridaquare" +msgstr "Esporta Locatore DX Atlas" #: application/controllers/Dxcalendar.php:10 #: application/views/interface_assets/header.php:283 @@ -1009,12 +1009,12 @@ msgstr "Conferme" #: application/controllers/Gridmap.php:10 #: application/views/interface_assets/header.php:148 msgid "Gridsquare Map" -msgstr "Mappa Gridsquare" +msgstr "Mappa locatori" #: application/controllers/Gridmap.php:34 #: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" -msgstr "Gridsquare collegati totali" +msgstr "Totale locatori collegati" #: application/controllers/Hamsat.php:59 msgid "Hamsat - Satellite Roving" @@ -1559,7 +1559,7 @@ msgstr "Stato" #: application/views/view_log/qso.php:664 #: application/views/visitor/index.php:27 msgid "Gridsquare" -msgstr "Gridsquare" +msgstr "Locatore" #: application/controllers/Logbook.php:1312 #: application/views/activated_gridmap/index.php:108 @@ -3199,36 +3199,31 @@ 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:1291 +#: application/models/Logbook_model.php:1292 msgid "Station ID not allowed" msgstr "ID stazione non consentito" -#: application/models/Logbook_model.php:1296 +#: application/models/Logbook_model.php:1297 msgid "No Call given" msgstr "Nessun nominatio fornito" -#: application/models/Logbook_model.php:1366 -#: application/models/Logbook_model.php:1540 +#: application/models/Logbook_model.php:1367 +#: application/models/Logbook_model.php:1541 msgid "DXCC has to be Numeric" msgstr "DXCC deve essere numerico" -#: application/models/Logbook_model.php:3987 +#: application/models/Logbook_model.php:4005 #, 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:3988 -#, php-format -msgid "Check %s for hints about errors in ADIF files." -msgstr "Controlla %s per suggerimenti sugli errori nei file ADIF." - -#: application/models/Logbook_model.php:4000 +#: application/models/Logbook_model.php:4018 msgid "QSO on" msgstr "QSO alle" -#: application/models/Logbook_model.php:4000 +#: application/models/Logbook_model.php:4018 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3236,63 +3231,63 @@ 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:4299 +#: application/models/Logbook_model.php:4317 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "La data di ricezione QSL non è valida (AAAAMMGG)" -#: application/models/Logbook_model.php:4310 +#: application/models/Logbook_model.php:4328 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "La data di invio QSL non è valida (AAAAMMGG)" -#: application/models/Logbook_model.php:4371 +#: application/models/Logbook_model.php:4389 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "La data di upload Clublog non è valida (AAAAMMGG)" -#: application/models/Logbook_model.php:4391 +#: application/models/Logbook_model.php:4409 msgid "the lotw_qslrdate is invalid (YYYYMMDD)" msgstr "La data di ricezione LoTW non è valida (AAAAMMGG)" -#: application/models/Logbook_model.php:4412 +#: application/models/Logbook_model.php:4430 msgid "the lotw_qslsdate is invalid (YYYYMMDD)" msgstr "La data di invio LoTW non è valida (AAAAMMGG)" -#: application/models/Logbook_model.php:4704 +#: application/models/Logbook_model.php:4722 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Duplicata" -#: application/models/Logbook_model.php:4765 +#: application/models/Logbook_model.php:4783 msgid "QSO could not be matched" msgstr "Impossibile abbinare QSO" -#: application/models/Logbook_model.php:4771 +#: application/models/Logbook_model.php:4789 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "confermato da LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:4776 +#: application/models/Logbook_model.php:4794 msgid "confirmed by award manager" msgstr "confermato dal responsabile del premio" -#: application/models/Logbook_model.php:4779 +#: application/models/Logbook_model.php:4797 msgid "confirmed by cross-check of DCL data" msgstr "confermato dal controllo incrociato dei dati DCL" -#: application/models/Logbook_model.php:4782 +#: application/models/Logbook_model.php:4800 msgid "confirmation pending" msgstr "Conferma in sospeso" -#: application/models/Logbook_model.php:4785 +#: application/models/Logbook_model.php:4803 msgid "unconfirmed" msgstr "Non confermato" -#: application/models/Logbook_model.php:4788 +#: application/models/Logbook_model.php:4806 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:287 msgid "unknown" msgstr "sconosciuto" -#: application/models/Logbook_model.php:5626 +#: application/models/Logbook_model.php:5644 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:39 #: application/views/awards/gridmaster/index.php:54 @@ -3360,7 +3355,7 @@ msgstr "Numero totale di DXCC collegati" #: application/views/accumulate/index.php:3 msgid "Accumulated number of States worked" -msgstr "Numero totale di Stati collegati" +msgstr "Numero totale di stati collegati" #: application/views/accumulate/index.php:4 msgid "Accumulated number of IOTAs worked" @@ -4003,7 +3998,7 @@ msgstr "Conteggio minimo" #: application/views/awards/wapc/index.php:168 #: application/views/awards/was/index.php:201 #: application/views/awards/wwff/index.php:65 -#: application/views/callstats/index.php:129 +#: application/views/callstats/index.php:128 #: application/views/clublog/export.php:60 #: application/views/distancerecords/index.php:52 #: application/views/public_search/empty.php:3 @@ -4020,7 +4015,7 @@ msgstr "Non ho trovato nulla!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wwff/index.php:35 #: application/views/cabrillo/index.php:31 -#: application/views/callstats/index.php:148 +#: application/views/callstats/index.php:147 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 #: application/views/contesting/index.php:166 @@ -4064,7 +4059,7 @@ msgid "Count" msgstr "Conteggio" #: application/views/activators/index.php:101 -#: application/views/callstats/index.php:150 +#: application/views/callstats/index.php:151 #: application/views/timeline/index.php:203 #: application/views/timeline/index.php:238 #: application/views/timeline/index.php:266 @@ -4542,7 +4537,7 @@ msgstr "" "quei dati in Wavelog." #: application/views/adif/import.php:370 -#: application/views/adif/import_success.php:31 +#: application/views/adif/import_success.php:40 #: application/views/lotw_views/index.php:137 msgid "Information" msgstr "Informazione" @@ -4607,27 +4602,31 @@ msgstr "" "campi ADIF. Controlla il file ADIF importato. È possibile utilizzare un " "controllo file ADIF online. Ad esempio:" -#: application/views/adif/import_success.php:17 -msgid "Yay, its imported!" -msgstr "Evviva, file importato!" +#: application/views/adif/import_success.php:22 +msgid "Yay, it's imported!" +msgstr "" -#: application/views/adif/import_success.php:18 +#: application/views/adif/import_success.php:23 msgid "The ADIF File has been imported." msgstr "Il file ADIF è stato importato." -#: application/views/adif/import_success.php:22 +#: application/views/adif/import_success.php:25 +msgid "Number of QSOs imported:" +msgstr "" + +#: application/views/adif/import_success.php:31 msgid "Dupes were inserted!" msgstr "Potrebbero essere stati inseriti dei duplicati!" -#: application/views/adif/import_success.php:24 +#: application/views/adif/import_success.php:33 msgid "Dupes were skipped." msgstr "I duplicati sono stati saltati." -#: application/views/adif/import_success.php:31 +#: application/views/adif/import_success.php:40 msgid "Contest logs imported" msgstr "Log del contest importati" -#: application/views/adif/import_success.php:33 +#: application/views/adif/import_success.php:42 msgid "" "Sometimes, depending on your contest logging software, your exchanges will " "not be imported properly from that softwares ADIF. If you like to correct " @@ -4638,19 +4637,24 @@ msgstr "" "desideri correggerlo, passa alla scheda Importazione CBR della pagina " "Importazione ADIF." -#: application/views/adif/import_success.php:33 +#: application/views/adif/import_success.php:42 msgid "You imported at least 1 QSO containing a contest ID." msgstr "Hai importato almeno 1 QSO contenente un ID contest." -#: application/views/adif/import_success.php:34 +#: application/views/adif/import_success.php:43 msgid "We found the following numbers of QSOs for the following contest IDs:" msgstr "Abbiamo trovato i seguenti numeri di QSO per i seguenti ID di contest:" -#: application/views/adif/import_success.php:47 +#: application/views/adif/import_success.php:57 msgid "Import details / possible problems" msgstr "Importa dettagli / possibili problemi" -#: application/views/adif/import_success.php:48 +#: application/views/adif/import_success.php:58 +#, php-format +msgid "Check %s for hints about errors in ADIF files." +msgstr "Controlla %s per suggerimenti sugli errori nei file ADIF." + +#: application/views/adif/import_success.php:59 msgid "" "You might have ADIF errors, the QSOs have still been added. Please check the " "following information:" @@ -4928,6 +4932,8 @@ msgid "" "Fields taken for this Award: Propagation-Mode and SAT-Name (ADIF: " "PROP_MODE=SAT, SAT_NAME='AO-73')" msgstr "" +"Campi presi in considerazione per questo premio: Modalità di propagazione e " +"Nome SAT (ADIF: PROP_MODE=SAT, SAT_NAME='AO-73')" #: application/views/awards/73on73/index.php:32 #: application/views/awards/jcc/index.php:152 @@ -4989,6 +4995,9 @@ msgid "" "Fields taken for this Award: State (ADIF: STATE), Stations County (ADIF: " "CNTY), DXCC (Must be one of 291 (U.S.A.) ,6 (ALASKA) or 110 (HAWAII))" msgstr "" +"Campi presi in considerazione per questo premio: Stato (ADIF: STATE), Contea " +"della stazione (ADIF: CNTY), DXCC (Deve essere uno di 291 (U.S.A.), 6 " +"(ALASKA) o 110 (HAWAII))" #: application/views/awards/counties/index.php:22 msgid "Counties Worked" @@ -5092,7 +5101,7 @@ msgstr "" #: application/views/awards/cq/index.php:24 msgid "Fields taken for this Award: CQ-Zone (ADIF: CQZ)" -msgstr "" +msgstr "Campi presi in considerazione per questo premio: CQ-Zone (ADIF: CQZ)" #: application/views/awards/cq/index.php:26 msgid "Awards - CQ WAZ" @@ -5354,7 +5363,7 @@ msgstr "" #: application/views/awards/dok/index.php:11 msgid "Fields taken for this Award: DOK (ADIF: DARC_DOK)" -msgstr "" +msgstr "Campi presi in considerazione per questo premio: DOK (ADIF: DARC_DOK)" #: application/views/awards/dok/index.php:21 msgid "DOK / SDOK" @@ -5441,6 +5450,8 @@ msgid "" "Fields taken for this Award: DXCC (Needs to be a valid one out of the DXCC-" "ADIF-Spec-List" msgstr "" +"Campi presi in considerazione per questo premio: DXCC (Deve essere valido " +"dalla lista DXCC-ADIF-Spec)" #: application/views/awards/dxcc/index.php:33 #: application/views/awards/iota/index.php:34 @@ -5613,6 +5624,9 @@ msgid "" "Fields taken for this Award: DXCC (Must be USA), Gridsquare (Must contain a " "grid from one of the 488 mainland gridsquares!), Band must be 6M." msgstr "" +"Campi presi in considerazione per questo premio: DXCC (deve essere USA), " +"Locatore (deve contenere una griglia da una delle 488 griglie " +"continentali!), La banda deve essere 6M." #: application/views/awards/gridmaster/index.php:8 msgid "US Gridmaster Award" @@ -5667,6 +5681,9 @@ msgid "" "grid from one of the 488 mainland gridsquares!), Propagation-Mode and SAT-" "Name" msgstr "" +"Campi presi in considerazione per questo premio: DXCC (Deve essere USA), " +"Locatore (Deve contenere un locatore da una delle 488 griglie " +"continentali!), Modalità di propagazione e Nome SAT" #: application/views/awards/gridmaster/index.php:14 msgid "Gridmaster Award" @@ -5678,7 +5695,7 @@ msgid "" "worked in the USA." msgstr "" "Il premio Gridmaster è stato originariamente progettato per collegare tutti " -"i 488 grid square negli Stati Uniti." +"i 488 locatori degli Stati Uniti." #: application/views/awards/gridmaster/index.php:16 msgid "" @@ -5695,18 +5712,24 @@ msgid "" "Fields taken for this Award: DXCC (Must be Germany), Gridsquare, Propagation-" "Mode and SAT-Name" msgstr "" +"Campi presi in considerazione per questo premio: DXCC (deve essere " +"Germania), Locatore, Modalità di propagazione e Nome SAT" #: application/views/awards/gridmaster/index.php:23 msgid "" "Fields taken for this Award: DXCC (Must be Luxembourg), Gridsquare, " "Propagation-Mode and SAT-Name" msgstr "" +"Campi presi in considerazione per questo premio: DXCC (deve essere " +"Lussemburgo), Locatore, Modalità di propagazione e Nome SAT" #: application/views/awards/gridmaster/index.php:26 msgid "" "Fields taken for this Award: DXCC (Must be Japan), Gridsquare, Propagation-" "Mode and SAT-Name" msgstr "" +"Campi presi in considerazione per questo premio: DXCC (deve essere " +"Giappone), Locatore, Modalità di propagazione e Nome SAT" #: application/views/awards/helvetia/index.php:3 msgctxt "Switzerland Canton" @@ -5748,6 +5771,8 @@ msgid "" "Fields taken for this Award: DXCC (Must be Switzerland) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" +"Campi presi in considerazione per questo premio: DXCC (Deve essere Svizzera) " +"e STATE (Deve contenere un'abbreviazione valida dello stato!)" #: application/views/awards/helvetia/index.php:115 msgid "Show Helvetia Map" @@ -5817,6 +5842,8 @@ msgid "" "Fields taken for this Award: IOTA (ADIF: IOTA) must contain valid IOTA-" "Reference" msgstr "" +"Campi presi in considerazione per questo premio: IOTA (ADIF: IOTA) deve " +"contenere un riferimento IOTA valido" #: application/views/awards/iota/index.php:30 msgid "Deleted IOTA" @@ -5892,7 +5919,7 @@ msgstr "Puoi trovare maggiori informazioni sul sito web %s." #: application/views/awards/itu/index.php:24 msgid "Fields taken for this Award: ITU-Zone (ADIF: ITUZ)" -msgstr "" +msgstr "Campi presi in considerazione per questo premio: Zona ITU (ADIF: ITUZ)" #: application/views/awards/itu/index.php:26 msgid "Awards - ITU Zones" @@ -5933,6 +5960,8 @@ msgid "" "Fields taken for this Award: DXCC (Japan) and County (Must contain a valid " "reference!)" msgstr "" +"Campi presi in considerazione per questo premio: DXCC (Giappone) e Contea " +"(Deve contenere un riferimento valido!)" #: application/views/awards/jcc/index.php:116 msgid "Show JCC Map" @@ -6001,6 +6030,8 @@ msgstr "" #: application/views/awards/pota/index.php:11 msgid "Fields taken for this Award: POTA_REF (must contain Park-Reference)" msgstr "" +"Campi presi in considerazione per questo premio: POTA_REF (deve contenere il " +"riferimento del parco)" #: application/views/awards/pota/index.php:32 #: application/views/qso/index.php:274 application/views/qso/index.php:567 @@ -6166,6 +6197,8 @@ msgid "" "Fields taken for this Award: Gridsquare and vucc_grids (ADIF: GRIDSQUARE, " "VUCC_GRIDS)" msgstr "" +"Campi presi in considerazione per questo premio: Locatore e vucc_grids " +"(ADIF: GRIDSQUARE, VUCC_GRIDS)" #: application/views/awards/vucc/index.php:23 msgid "Grids Worked" @@ -6201,6 +6234,8 @@ msgid "" "Fields taken for this Award: SIG (Has to be 'WAB') and SIG_INFO (should " "contain valid WAB-Grid)" msgstr "" +"Campi presi in considerazione per questo premio: SIG (deve essere 'WAB') e " +"SIG_INFO (deve contenere un WAB-Grid valido)" #: application/views/awards/wab/index.php:110 msgid "List" @@ -6226,6 +6261,8 @@ msgid "" "Fields taken for this Award: Continent (ADIF tag 'CONT'). Must contain a " "valid continent-abbreviation!" msgstr "" +"Campi presi in considerazione per questo premio: Continente (tag ADIF " +"'CONT'). Deve contenere un'abbreviazione valida del continente!" #: application/views/awards/wac/index.php:14 msgid "Awards - Worked All Continents (WAC)" @@ -6269,7 +6306,7 @@ msgstr "" #: application/views/awards/wae/index.php:11 msgid "Fields taken for this Award: Region, DXCC" -msgstr "" +msgstr "Campi presi in considerazione per questo premio: Regione, DXCC" #: application/views/awards/wae/index.php:162 msgid "WAE Name" @@ -6315,6 +6352,8 @@ msgid "" "Fields taken for this Award: DXCC (Japan) and STATE (Must contain a valid " "prefecture!)" msgstr "" +"Campi presi in considerazione per questo premio: DXCC (Giappone) e STATE " +"(Deve contenere una prefettura valida!)" #: application/views/awards/waja/index.php:119 msgid "Show WAJA Map" @@ -6380,6 +6419,8 @@ msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" +"Campi presi in considerazione per questo premio: DXCC (Deve essere Paesi " +"Bassi) e STATE (Deve contenere un'abbreviazione valida dello stato!)" #: application/views/awards/wap/index.php:115 msgid "Show WAP Map" @@ -6420,6 +6461,9 @@ msgid "" "Macao/152, Taiwan/386, Pratas Isl./505 or Scarborough Reef/506) and valid " "State (ADIF: DXCC and STATE)" msgstr "" +"Campi presi in considerazione per questo premio: DXCC (deve essere uno tra " +"Cina/318, Hong Kong/321, Macao/152, Taiwan/386, Isole Pratas/505 o Scoglio " +"di Scarborough/506) e Stato valido (ADIF: DXCC e STATE)" #: application/views/awards/wapc/index.php:119 msgid "Code" @@ -6478,6 +6522,9 @@ msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" msgstr "" +"Campi presi in considerazione per questo premio: DXCC (Deve essere uno tra U." +"S.A., Alaska o Hawaii) e STATE (Deve contenere una valida abbreviazione di " +"uno stato U.S.A.!)" #: application/views/awards/was/index.php:115 msgid "Show WAS Map" @@ -6509,7 +6556,7 @@ msgstr "" #: application/views/awards/wwff/index.php:11 msgid "Fields taken for this Award: WWFF (ADIF: WWFF_REF)" -msgstr "" +msgstr "Campi presi in considerazione per questo premio: WWFF (ADIF: WWFF_REF)" #: application/views/awards/wwff/index.php:32 #: application/views/qso/index.php:262 application/views/qso/index.php:554 @@ -7148,10 +7195,19 @@ msgstr "Non sono stati trovati contest nel tuo registro." msgid "All except SAT" msgstr "Tutti tranne SAT" -#: application/views/callstats/index.php:149 +#: application/views/callstats/index.php:148 msgid "#QSOs" msgstr "#QSO" +#: application/views/callstats/index.php:149 +msgid "First QSO" +msgstr "" + +#: application/views/callstats/index.php:150 +#: application/views/stationsetup/stationsetup.php:129 +msgid "Last QSO" +msgstr "Ultimo QSO" + #: application/views/cfd/index.php:7 #, php-format msgid "Export of CFD-File for DARC-Toplist (See %s)" @@ -8131,7 +8187,7 @@ msgstr "Stato DXCC" #: application/views/dashboard/index.php:330 #: application/views/visitor/index.php:279 msgid "Needed" -msgstr "Necessario" +msgstr "Mancanti" #: application/views/dashboard/index.php:343 #: application/views/dashboard/index.php:370 @@ -8820,7 +8876,8 @@ msgstr "Turco" #: application/views/distancerecords/index.php:4 msgid "This page lists distance records per satellite based on gridsquares." msgstr "" -"Questa pagina elenca i record di distanza per satellite basati sui locatori." +"Questa pagina elenca i record di distanza per satellite calcolati in base ai " +"locatori." #: application/views/distancerecords/index.php:20 msgid "My Gridsquare" @@ -9258,7 +9315,8 @@ msgid "" "Use this if you have lots of QSOs to upload to eQSL it will save the server " "timing out." msgstr "" -"Scegli questa opzione se hai manualmente caricato tutti i tuoi QSO su eQSL." +"Scegli questa opzione se hai manualmente caricato tutti i tuoi QSO su eQSL o " +"se l'ultima richiesta è andata in timeout." #: application/views/eqslcard/index.php:10 #, php-format @@ -9637,11 +9695,11 @@ msgstr "Visualizza le ultime conferme" #: application/views/interface_assets/header.php:121 msgid "Live QSO" -msgstr "QSO in tempo reale" +msgstr "Inserisci QSO dal vivo" #: application/views/interface_assets/header.php:123 msgid "Post QSO" -msgstr "QSO passati" +msgstr "Inserisci QSO passati" #: application/views/interface_assets/header.php:125 msgid "Simple Fast Log Entry" @@ -10319,8 +10377,8 @@ msgid "" "Distance (in km). Leave blank to recalculate distance. (It will only work if " "a gridsquare is set)." msgstr "" -"Distanza (in km). Lascia vuoto per ricalcolare la distanza. (Funzionerà solo " -"se è impostato un locatore)." +"Distanza (in km). Lascia vuoto per ricalcolare la distanza. Funzionerà solo " +"se è impostato un locatore." #: application/views/logbookadvanced/help.php:1 msgid "In the text input searches, you can search in the following way:" @@ -13246,7 +13304,7 @@ msgstr "Nessun QSO con caricamento LoTW eccezionale è stato trovato." #: application/views/search/main.php:31 msgid "Callsign / Gridsquare" -msgstr "Callsign / Gridsquare" +msgstr "Nominativo / Locatore" #: application/views/search/result.php:2 #, php-format @@ -14032,6 +14090,11 @@ msgstr "Nome del Gruppo di Interesse Speciale della Stazione (ad es. GMA) .." msgid "Special Interest Group Information" msgstr "Informazioni sul Gruppo di Interesse Speciale" +#: application/views/station_profile/edit.php:309 +#, php-format +msgid "Trouble? Check the %swiki%s." +msgstr "Problemi? Prova a cercare nella %swiki%s." + #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "Nome del Registro della Stazione" @@ -14056,7 +14119,7 @@ msgstr "Sovrapposizione della zona CQ" #: application/views/stationsetup/exportmapoptions.php:15 msgctxt "Map Options" msgid "Gridsquare overlay" -msgstr "Sovrapposizione dei locatori" +msgstr "Mostra locatori" #: application/views/stationsetup/exportmapoptions.php:19 msgctxt "Map Options" @@ -14178,10 +14241,6 @@ msgstr "Manutenzione" msgid "Please reassign them at " msgstr "Per favore, riassegna loro a " -#: application/views/stationsetup/stationsetup.php:129 -msgid "Last QSO" -msgstr "Ultimo QSO" - #: application/views/stationsetup/stationsetup.php:131 msgid "Linked" msgstr "Collegato" @@ -14816,8 +14875,13 @@ msgid "Station Locations Quickswitch" msgstr "Posizioni delle stazioni Quickswitch" #: application/views/user/edit.php:483 -msgid "Show the Station Locations Quickswitch in the main menu" -msgstr "Mostra le posizioni delle stazioni Quickswitch nel menu principale" +msgid "" +"Show the Station Locations Quickswitch in the main menu. You can add " +"locations by adding them to favourites at the station setup page." +msgstr "" +"Mostra il cambio rapido delle postazioni nel menu principale. Puoi " +"aggiungere posizioni alla lista contrassegnandole come preferite nella " +"pagina di configurazione della stazione." #: application/views/user/edit.php:487 msgid "UTC Time in Menu" @@ -15877,6 +15941,14 @@ msgstr "Invia richiesta" msgid "Rcvd" msgstr "Ricevuto" +#~ msgid "Yay, its imported!" +#~ msgstr "Evviva, file importato!" + +#~ msgid "Show the Station Locations Quickswitch in the main menu" +#~ msgstr "" +#~ "Consente di commutare rapidamente tramite il menù Quickswitch tra le " +#~ "posizioni di stazione contrassegnate come preferite tra quelle impostate" + #~ msgid "Sig Info" #~ msgstr "Info Seg" diff --git a/application/locale/ja/LC_MESSAGES/messages.mo b/application/locale/ja/LC_MESSAGES/messages.mo index fde499096..914b92bdc 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 52404f752..2a0c643f8 100644 --- a/application/locale/ja/LC_MESSAGES/messages.po +++ b/application/locale/ja/LC_MESSAGES/messages.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-08-20 19:04+0000\n" -"PO-Revision-Date: 2025-08-19 16:58+0000\n" +"POT-Creation-Date: 2025-08-24 15:29+0000\n" +"PO-Revision-Date: 2025-08-24 06:41+0000\n" "Last-Translator: \"S.NAKAO\" \n" "Language-Team: Japanese \n" @@ -229,16 +229,16 @@ msgstr "ADIF インポートに失敗しました!" msgid "Station Profile not valid for User" msgstr "ユーザーに対して有効なステーションプロファイルではありません" -#: application/controllers/Adif.php:282 +#: application/controllers/Adif.php:283 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "ADIFインポート" -#: application/controllers/Adif.php:293 +#: application/controllers/Adif.php:294 msgid "DCL Import" msgstr "DCLインポート" -#: application/controllers/Adif.php:351 +#: application/controllers/Adif.php:352 msgid "DCL Data Imported" msgstr "DCLデータのインポート" @@ -3182,37 +3182,31 @@ msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" "HRDlog: HRDlog 資格情報を持つステーション プロファイルが見つかりません。" -#: application/models/Logbook_model.php:1291 +#: application/models/Logbook_model.php:1292 msgid "Station ID not allowed" msgstr "ステーションIDは許可されていません" -#: application/models/Logbook_model.php:1296 +#: application/models/Logbook_model.php:1297 msgid "No Call given" msgstr "コールなし" -#: application/models/Logbook_model.php:1366 -#: application/models/Logbook_model.php:1540 +#: application/models/Logbook_model.php:1367 +#: application/models/Logbook_model.php:1541 msgid "DXCC has to be Numeric" msgstr "DXCCは数値でなければなりません" -#: application/models/Logbook_model.php:3987 +#: application/models/Logbook_model.php:4005 #, 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:3988 -#, php-format -msgid "Check %s for hints about errors in ADIF files." -msgstr "" -"ADIF ファイルのエラーに関するヒントを確認するには、%s を参照してください。" - -#: application/models/Logbook_model.php:4000 +#: application/models/Logbook_model.php:4018 msgid "QSO on" msgstr "QSOオン" -#: application/models/Logbook_model.php:4000 +#: application/models/Logbook_model.php:4018 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3220,63 +3214,63 @@ msgstr "" "コールが指定されていないQSOをインポートしようとしました。このQSOはインポート" "されませんでした。無効です" -#: application/models/Logbook_model.php:4299 +#: application/models/Logbook_model.php:4317 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "qslrdate が無効です (YYYYMMDD)" -#: application/models/Logbook_model.php:4310 +#: application/models/Logbook_model.php:4328 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "qslsdate が無効です (YYYYMMDD)" -#: application/models/Logbook_model.php:4371 +#: application/models/Logbook_model.php:4389 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "clublog_qso_upload_date が無効です (YYYYMMDD)" -#: application/models/Logbook_model.php:4391 +#: application/models/Logbook_model.php:4409 msgid "the lotw_qslrdate is invalid (YYYYMMDD)" msgstr "lotw_qslrdate が無効です (YYYYMMDD)" -#: application/models/Logbook_model.php:4412 +#: application/models/Logbook_model.php:4430 msgid "the lotw_qslsdate is invalid (YYYYMMDD)" msgstr "lotw_qslsdate が無効です (YYYYMMDD)" -#: application/models/Logbook_model.php:4704 +#: application/models/Logbook_model.php:4722 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "複製用" -#: application/models/Logbook_model.php:4765 +#: application/models/Logbook_model.php:4783 msgid "QSO could not be matched" msgstr "QSOが一致しませんでした" -#: application/models/Logbook_model.php:4771 +#: application/models/Logbook_model.php:4789 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "LoTW/Clublog/eQSL/コンテストで確認済み" -#: application/models/Logbook_model.php:4776 +#: application/models/Logbook_model.php:4794 msgid "confirmed by award manager" msgstr "賞の管理者によって確認された" -#: application/models/Logbook_model.php:4779 +#: application/models/Logbook_model.php:4797 msgid "confirmed by cross-check of DCL data" msgstr "DCLデータのクロスチェックによって確認された" -#: application/models/Logbook_model.php:4782 +#: application/models/Logbook_model.php:4800 msgid "confirmation pending" msgstr "確認中" -#: application/models/Logbook_model.php:4785 +#: application/models/Logbook_model.php:4803 msgid "unconfirmed" msgstr "未確認" -#: application/models/Logbook_model.php:4788 +#: application/models/Logbook_model.php:4806 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:287 msgid "unknown" msgstr "不明" -#: application/models/Logbook_model.php:5626 +#: application/models/Logbook_model.php:5644 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:39 #: application/views/awards/gridmaster/index.php:54 @@ -3986,7 +3980,7 @@ msgstr "最小数" #: application/views/awards/wapc/index.php:168 #: application/views/awards/was/index.php:201 #: application/views/awards/wwff/index.php:65 -#: application/views/callstats/index.php:129 +#: application/views/callstats/index.php:128 #: application/views/clublog/export.php:60 #: application/views/distancerecords/index.php:52 #: application/views/public_search/empty.php:3 @@ -4003,7 +3997,7 @@ msgstr "何も見つかりません!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wwff/index.php:35 #: application/views/cabrillo/index.php:31 -#: application/views/callstats/index.php:148 +#: application/views/callstats/index.php:147 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 #: application/views/contesting/index.php:166 @@ -4047,7 +4041,7 @@ msgid "Count" msgstr "カウント" #: application/views/activators/index.php:101 -#: application/views/callstats/index.php:150 +#: application/views/callstats/index.php:151 #: application/views/timeline/index.php:203 #: application/views/timeline/index.php:238 #: application/views/timeline/index.php:266 @@ -4336,6 +4330,8 @@ msgstr "" #: application/views/adif/import.php:151 msgid "Mark QSOs as uploaded (This does NOT upload QSOs to these services!)" msgstr "" +"QSO をアップロード済みとしてマークします (これにより QSO がこれらのサービスに" +"アップロードされるわけではありません)" #: application/views/adif/import.php:158 msgid "Mark imported QSOs as uploaded to LoTW" @@ -4370,7 +4366,7 @@ msgstr "インポートしたQSOをDCLログブックにアップロード済み #: application/views/adif/import.php:207 msgid "Toggle all checkboxes" -msgstr "" +msgstr "すべてのチェックボックスを切り替える" #: application/views/adif/import.php:212 application/views/adif/import.php:355 #: application/views/adif/import.php:393 @@ -4519,7 +4515,7 @@ msgstr "" "きます。" #: application/views/adif/import.php:370 -#: application/views/adif/import_success.php:31 +#: application/views/adif/import_success.php:40 #: application/views/lotw_views/index.php:137 msgid "Information" msgstr "情報" @@ -4580,27 +4576,31 @@ msgstr "" "インポートしたADIFファイルを確認してください。オンラインのADIFファイルチェッ" "カーをご利用いただけます。例:" -#: application/views/adif/import_success.php:17 -msgid "Yay, its imported!" -msgstr "やった、インポートされました!" +#: application/views/adif/import_success.php:22 +msgid "Yay, it's imported!" +msgstr "" -#: application/views/adif/import_success.php:18 +#: application/views/adif/import_success.php:23 msgid "The ADIF File has been imported." msgstr "ADIF ファイルがインポートされました。" -#: application/views/adif/import_success.php:22 +#: application/views/adif/import_success.php:25 +msgid "Number of QSOs imported:" +msgstr "" + +#: application/views/adif/import_success.php:31 msgid "Dupes were inserted!" msgstr "複製が挿入されました!" -#: application/views/adif/import_success.php:24 +#: application/views/adif/import_success.php:33 msgid "Dupes were skipped." msgstr "重複データはスキップされました。" -#: application/views/adif/import_success.php:31 +#: application/views/adif/import_success.php:40 msgid "Contest logs imported" msgstr "コンテストログをインポートしました" -#: application/views/adif/import_success.php:33 +#: application/views/adif/import_success.php:42 msgid "" "Sometimes, depending on your contest logging software, your exchanges will " "not be imported properly from that softwares ADIF. If you like to correct " @@ -4610,19 +4610,25 @@ msgstr "" "正しくインポートされない場合があります。これを修正するには、ADIFインポート" "ページのCBRインポートタブに切り替えてください。" -#: application/views/adif/import_success.php:33 +#: application/views/adif/import_success.php:42 msgid "You imported at least 1 QSO containing a contest ID." msgstr "コンテスト ID を含む QSO を少なくとも 1 つインポートしました。" -#: application/views/adif/import_success.php:34 +#: application/views/adif/import_success.php:43 msgid "We found the following numbers of QSOs for the following contest IDs:" msgstr "次のコンテスト ID に対して、次の数の QSO が見つかりました。" -#: application/views/adif/import_success.php:47 +#: application/views/adif/import_success.php:57 msgid "Import details / possible problems" msgstr "インポートの詳細 / 考えられる問題" -#: application/views/adif/import_success.php:48 +#: application/views/adif/import_success.php:58 +#, php-format +msgid "Check %s for hints about errors in ADIF files." +msgstr "" +"ADIF ファイルのエラーに関するヒントを確認するには、%s を参照してください。" + +#: application/views/adif/import_success.php:59 msgid "" "You might have ADIF errors, the QSOs have still been added. Please check the " "following information:" @@ -4899,6 +4905,8 @@ msgid "" "Fields taken for this Award: Propagation-Mode and SAT-Name (ADIF: " "PROP_MODE=SAT, SAT_NAME='AO-73')" msgstr "" +"このアワードの対象となる項目:伝搬モードと衛星名(ADIF:PROP_MODE=SAT、" +"SAT_NAME=『AO-73』)" #: application/views/awards/73on73/index.php:32 #: application/views/awards/jcc/index.php:152 @@ -4958,6 +4966,9 @@ msgid "" "Fields taken for this Award: State (ADIF: STATE), Stations County (ADIF: " "CNTY), DXCC (Must be one of 291 (U.S.A.) ,6 (ALASKA) or 110 (HAWAII))" msgstr "" +"このアワードの応募時に入力するフィールド: 州 (ADIF: STATE)、ステーション郡 " +"(ADIF: CNTY)、DXCC (291 (米国)、6 (アラスカ)、または 110 (ハワイ) のいずれか" +"である必要があります)" #: application/views/awards/counties/index.php:22 msgid "Counties Worked" @@ -5058,7 +5069,7 @@ msgstr "すべての情報とルールは、N4BAA の Web サイトで確認で #: application/views/awards/cq/index.php:24 msgid "Fields taken for this Award: CQ-Zone (ADIF: CQZ)" -msgstr "" +msgstr "このアワードの対象となる分野: CQ-Zone (ADIF: CQZ)" #: application/views/awards/cq/index.php:26 msgid "Awards - CQ WAZ" @@ -5319,7 +5330,7 @@ msgstr "" #: application/views/awards/dok/index.php:11 msgid "Fields taken for this Award: DOK (ADIF: DARC_DOK)" -msgstr "" +msgstr "このアワードに応募したフィールド: DOK (ADIF: DARC_DOK)" #: application/views/awards/dok/index.php:21 msgid "DOK / SDOK" @@ -5404,6 +5415,8 @@ msgid "" "Fields taken for this Award: DXCC (Needs to be a valid one out of the DXCC-" "ADIF-Spec-List" msgstr "" +"このアワードに入力するフィールド: DXCC (DXCC-ADIF-Spec-List から有効なものを" +"選択する必要があります)" #: application/views/awards/dxcc/index.php:33 #: application/views/awards/iota/index.php:34 @@ -5505,31 +5518,31 @@ msgstr "DXCCマップを表示" #: application/views/awards/dxcc/index.php:221 msgid "Legend:" -msgstr "" +msgstr "凡例:" #: application/views/awards/dxcc/index.php:222 msgid "(Q)SL-Paper-Card" -msgstr "" +msgstr "(Q)SL-紙カード" #: application/views/awards/dxcc/index.php:223 msgid "(L)oTW" -msgstr "" +msgstr "(L)oTW" #: application/views/awards/dxcc/index.php:224 msgid "(e)QSL" -msgstr "" +msgstr "(e)QSL" #: application/views/awards/dxcc/index.php:225 msgid "QR(Z)-\"confirmation\"" -msgstr "" +msgstr "QR(Z)-「確認」" #: application/views/awards/dxcc/index.php:226 msgid "(C)lublog" -msgstr "" +msgstr "(C)lublog" #: application/views/awards/dxcc/index.php:227 msgid "(W)orked" -msgstr "" +msgstr "(W)作業した" #: application/views/awards/dxcc/index.php:233 msgid "DXCC Name" @@ -5574,6 +5587,9 @@ msgid "" "Fields taken for this Award: DXCC (Must be USA), Gridsquare (Must contain a " "grid from one of the 488 mainland gridsquares!), Band must be 6M." msgstr "" +"このアワードの対象となるフィールド: DXCC (米国である必要があります)、グリッド" +"スクエア (本土の 488 のグリッドスクエアのいずれかからのグリッドが含まれている" +"必要があります)、バンドは 6M である必要があります。" #: application/views/awards/gridmaster/index.php:8 msgid "US Gridmaster Award" @@ -5625,6 +5641,9 @@ msgid "" "grid from one of the 488 mainland gridsquares!), Propagation-Mode and SAT-" "Name" msgstr "" +"このアワードに応募するフィールド: DXCC (米国である必要があります)、グリッドス" +"クエア (本土の 488 グリッドスクエアのいずれかのグリッドが含まれている必要があ" +"ります)、伝播モード、SAT 名" #: application/views/awards/gridmaster/index.php:14 msgid "Gridmaster Award" @@ -5653,18 +5672,24 @@ msgid "" "Fields taken for this Award: DXCC (Must be Germany), Gridsquare, Propagation-" "Mode and SAT-Name" msgstr "" +"このアワードの応募に必要なフィールド: DXCC (ドイツである必要があります)、" +"Gridsquare、伝播モード、SAT 名" #: application/views/awards/gridmaster/index.php:23 msgid "" "Fields taken for this Award: DXCC (Must be Luxembourg), Gridsquare, " "Propagation-Mode and SAT-Name" msgstr "" +"このアワードの応募に必要なフィールド: DXCC (ルクセンブルクであること)、" +"Gridsquare、伝播モード、SAT 名" #: application/views/awards/gridmaster/index.php:26 msgid "" "Fields taken for this Award: DXCC (Must be Japan), Gridsquare, Propagation-" "Mode and SAT-Name" msgstr "" +"このアワードの応募に必要なフィールド: DXCC (日本のみ)、Gridsquare、伝播モー" +"ド、SAT名" #: application/views/awards/helvetia/index.php:3 msgctxt "Switzerland Canton" @@ -5705,6 +5730,8 @@ msgid "" "Fields taken for this Award: DXCC (Must be Switzerland) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" +"このアワードに入力するフィールド: DXCC (スイスである必要があります) および " +"STATE (有効な州の略語が含まれている必要があります)" #: application/views/awards/helvetia/index.php:115 msgid "Show Helvetia Map" @@ -5770,6 +5797,8 @@ msgid "" "Fields taken for this Award: IOTA (ADIF: IOTA) must contain valid IOTA-" "Reference" msgstr "" +"このアワードに入力するフィールド: IOTA (ADIF: IOTA) には有効なIOTA参照が含ま" +"れている必要があります" #: application/views/awards/iota/index.php:30 msgid "Deleted IOTA" @@ -5844,7 +5873,7 @@ msgstr "%sのウェブサイトで、さらに詳しい情報をご確認いた #: application/views/awards/itu/index.php:24 msgid "Fields taken for this Award: ITU-Zone (ADIF: ITUZ)" -msgstr "" +msgstr "このアワードの対象となる分野: ITUゾーン (ADIF: ITUZ)" #: application/views/awards/itu/index.php:26 msgid "Awards - ITU Zones" @@ -5883,6 +5912,8 @@ msgid "" "Fields taken for this Award: DXCC (Japan) and County (Must contain a valid " "reference!)" msgstr "" +"このアワードの応募フィールド: DXCC (日本) および郡 (有効な参照が含まれている" +"必要があります)" #: application/views/awards/jcc/index.php:116 msgid "Show JCC Map" @@ -5948,6 +5979,8 @@ msgstr "利用可能なアワードとカテゴリーに関する詳細情報は #: application/views/awards/pota/index.php:11 msgid "Fields taken for this Award: POTA_REF (must contain Park-Reference)" msgstr "" +"このアワードに入力するフィールド: POTA_REF (Park-Reference を含める必要があり" +"ます)" #: application/views/awards/pota/index.php:32 #: application/views/qso/index.php:274 application/views/qso/index.php:567 @@ -6109,6 +6142,8 @@ msgid "" "Fields taken for this Award: Gridsquare and vucc_grids (ADIF: GRIDSQUARE, " "VUCC_GRIDS)" msgstr "" +"このアワードに応募されたフィールド: Gridsquare および vucc_grids (ADIF: " +"GRIDSQUARE、VUCC_GRIDS)" #: application/views/awards/vucc/index.php:23 msgid "Grids Worked" @@ -6143,6 +6178,8 @@ msgid "" "Fields taken for this Award: SIG (Has to be 'WAB') and SIG_INFO (should " "contain valid WAB-Grid)" msgstr "" +"このアワードに入力するフィールド: SIG (「WAB」である必要があります) および " +"SIG_INFO (有効な WAB グリッドが含まれている必要があります)" #: application/views/awards/wab/index.php:110 msgid "List" @@ -6167,6 +6204,8 @@ msgid "" "Fields taken for this Award: Continent (ADIF tag 'CONT'). Must contain a " "valid continent-abbreviation!" msgstr "" +"このアワードに入力されたフィールド:大陸(ADIFタグ「CONT」)。有効な大陸略語" +"を含める必要があります!" #: application/views/awards/wac/index.php:14 msgid "Awards - Worked All Continents (WAC)" @@ -6209,7 +6248,7 @@ msgstr "" #: application/views/awards/wae/index.php:11 msgid "Fields taken for this Award: Region, DXCC" -msgstr "" +msgstr "この賞の対象となる分野: 地域、DXCC" #: application/views/awards/wae/index.php:162 msgid "WAE Name" @@ -6252,6 +6291,8 @@ msgid "" "Fields taken for this Award: DXCC (Japan) and STATE (Must contain a valid " "prefecture!)" msgstr "" +"このアワードに入力するフィールド: DXCC (日本) および STATE (有効な都道府県が" +"含まれている必要があります)" #: application/views/awards/waja/index.php:119 msgid "Show WAJA Map" @@ -6311,6 +6352,8 @@ msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" +"このアワードに入力するフィールド: DXCC (オランダである必要があります) および " +"STATE (有効な州の略語が含まれている必要があります)" #: application/views/awards/wap/index.php:115 msgid "Show WAP Map" @@ -6350,6 +6393,9 @@ msgid "" "Macao/152, Taiwan/386, Pratas Isl./505 or Scarborough Reef/506) and valid " "State (ADIF: DXCC and STATE)" msgstr "" +"このアワードの取得に必要なフィールド: DXCC (中国/318、香港/321、マカオ/152、" +"台湾/386、プラタス島/505、またはスカボローリーフ/506 のいずれか) および有効な" +"州 (ADIF: DXCC および州)" #: application/views/awards/wapc/index.php:119 msgid "Code" @@ -6404,6 +6450,8 @@ msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" msgstr "" +"このアワードに入力するフィールド: DXCC (米国、アラスカ、ハワイのいずれか) お" +"よび STATE (有効な米国の州の略語を含める必要があります)" #: application/views/awards/was/index.php:115 msgid "Show WAS Map" @@ -6434,7 +6482,7 @@ msgstr "" #: application/views/awards/wwff/index.php:11 msgid "Fields taken for this Award: WWFF (ADIF: WWFF_REF)" -msgstr "" +msgstr "このアワードに応募したフィールド: WWFF (ADIF: WWFF_REF)" #: application/views/awards/wwff/index.php:32 #: application/views/qso/index.php:262 application/views/qso/index.php:554 @@ -7066,10 +7114,19 @@ msgstr "ログにコンテストが見つかりませんでした。" msgid "All except SAT" msgstr "SATを除くすべて" -#: application/views/callstats/index.php:149 +#: application/views/callstats/index.php:148 msgid "#QSOs" msgstr "#QSO" +#: application/views/callstats/index.php:149 +msgid "First QSO" +msgstr "" + +#: application/views/callstats/index.php:150 +#: application/views/stationsetup/stationsetup.php:129 +msgid "Last QSO" +msgstr "最後のQSO" + #: application/views/cfd/index.php:7 #, php-format msgid "Export of CFD-File for DARC-Toplist (See %s)" @@ -9722,396 +9779,406 @@ msgstr "%s を管理する" #: application/views/interface_assets/header.php:447 msgid "No Clubstations available" -msgstr "" +msgstr "利用できるクラブステーションはありません" #: application/views/interface_assets/header.php:455 msgid "Other Export Options" -msgstr "" +msgstr "その他のエクスポートオプション" #: application/views/interface_assets/header.php:463 msgid "Cabrillo Export" -msgstr "" +msgstr "Cabrillo・エクスポート" #: application/views/interface_assets/header.php:465 msgid "EDI Export" -msgstr "" +msgstr "EDIエクスポート" #: application/views/interface_assets/header.php:489 msgid "QSL Queue" -msgstr "" +msgstr "QSLキュー" #: application/views/interface_assets/header.php:490 msgid "Labels" -msgstr "" +msgstr "ラベル" #: application/views/interface_assets/header.php:492 msgid "Third-Party Services" -msgstr "" +msgstr "サードパーティのサービス" #: application/views/interface_assets/header.php:495 msgid "eQSL Import / Export" -msgstr "" +msgstr "eQSLインポート/エクスポート" #: application/views/interface_assets/header.php:496 msgid "HRDLog Logbook" -msgstr "" +msgstr "HRDLog ログブック" #: application/views/interface_assets/header.php:499 msgid "Clublog Import / Export" -msgstr "" +msgstr "Clublogのインポート/エクスポート" #: application/views/interface_assets/header.php:510 #: application/views/logbookadvanced/index.php:675 msgid "Help" -msgstr "" +msgstr "ヘルプ" #: application/views/interface_assets/header.php:511 msgid "Forum" -msgstr "" +msgstr "フォーラム" #: application/views/interface_assets/header.php:515 #, php-format msgid "Stop impersonate and switch back to %s" -msgstr "" +msgstr "%s へのなりすましを停止し、元に戻す" #: application/views/interface_assets/header.php:516 #, php-format msgid "Switch back to %s" -msgstr "" +msgstr "%sに戻す" #: application/views/interface_assets/header.php:520 msgid "Logout" -msgstr "" +msgstr "ログアウト" #: application/views/interface_assets/header.php:528 msgid "Select a Location" -msgstr "" +msgstr "場所を選択" #: application/views/interface_assets/header.php:570 msgid "You miss station-locations here? Go to stationsetup and fav them" msgstr "" +"ステーションの位置が表示されていない場合は、駅設定画面に移動して、お気に入り" +"登録してください" #: application/views/interface_assets/header.php:607 msgid "Extras" -msgstr "" +msgstr "特典" #: application/views/kml/index.php:7 msgid "Export your logbook to a KML file for use in Google Earth." msgstr "" +"Google Earth で使用するために、ログブックを KML ファイルにエクスポートしま" +"す。" #: application/views/labels/create.php:24 msgid "" "Label name used for display purposes, so pick something meaningful, perhaps " "the label style." msgstr "" +"ラベル名は表示目的で使用されるため、ラベル スタイルなど、意味のわかる名前を選" +"択してください。" #: application/views/labels/create.php:39 #: application/views/labels/createpaper.php:41 #: application/views/labels/edit.php:41 #: application/views/labels/editpaper.php:41 msgid "Measurement used" -msgstr "" +msgstr "使用された測定方法" #: application/views/labels/create.php:42 #: application/views/labels/createpaper.php:44 #: application/views/labels/edit.php:44 #: application/views/labels/editpaper.php:44 msgid "Millimeters" -msgstr "" +msgstr "ミリメートル" #: application/views/labels/create.php:43 #: application/views/labels/createpaper.php:45 #: application/views/labels/edit.php:45 #: application/views/labels/editpaper.php:45 msgid "Inches" -msgstr "" +msgstr "インチ" #: application/views/labels/create.php:49 application/views/labels/edit.php:51 msgid "Margin Top" -msgstr "" +msgstr "上余白" #: application/views/labels/create.php:52 application/views/labels/edit.php:54 msgid "Top margin of labels" -msgstr "" +msgstr "ラベルの上余白" #: application/views/labels/create.php:55 application/views/labels/edit.php:57 msgid "Margin Left" -msgstr "" +msgstr "左余白" #: application/views/labels/create.php:58 application/views/labels/edit.php:60 msgid "Left margin of labels." -msgstr "" +msgstr "ラベルの左余白。" #: application/views/labels/create.php:63 application/views/labels/edit.php:65 msgid "Labels horizontally" -msgstr "" +msgstr "水平にラベルを付ける" #: application/views/labels/create.php:66 application/views/labels/edit.php:68 msgid "Number of labels horizontally across the page." -msgstr "" +msgstr "ページ全体の水平方向のラベルの数。" #: application/views/labels/create.php:69 application/views/labels/edit.php:71 msgid "Labels vertically" -msgstr "" +msgstr "縦にラベルを付ける" #: application/views/labels/create.php:72 application/views/labels/edit.php:74 msgid "Number of labels vertically across the page." -msgstr "" +msgstr "ページ全体の縦方向のラベルの数。" #: application/views/labels/create.php:77 application/views/labels/edit.php:79 msgid "Horizontal space" -msgstr "" +msgstr "水平方向のスペース" #: application/views/labels/create.php:80 application/views/labels/edit.php:82 msgid "Horizontal space between 2 labels." -msgstr "" +msgstr "2 つのラベル間の水平スペース。" #: application/views/labels/create.php:83 application/views/labels/edit.php:85 msgid "Vertical space" -msgstr "" +msgstr "垂直空間" #: application/views/labels/create.php:86 application/views/labels/edit.php:88 msgid "Vertical space between 2 labels." -msgstr "" +msgstr "2 つのラベル間の垂直スペース。" #: application/views/labels/create.php:91 application/views/labels/edit.php:93 msgid "Width of label" -msgstr "" +msgstr "ラベルの幅" #: application/views/labels/create.php:94 application/views/labels/edit.php:96 msgid "Total width of one label." -msgstr "" +msgstr "1 つのラベルの合計幅。" #: application/views/labels/create.php:97 application/views/labels/edit.php:99 msgid "Height of label" -msgstr "" +msgstr "ラベルの高さ" #: application/views/labels/create.php:100 #: application/views/labels/edit.php:102 msgid "Total height of one label" -msgstr "" +msgstr "1つのラベルの合計高さ" #: application/views/labels/create.php:105 #: application/views/labels/edit.php:107 application/views/labels/index.php:80 msgid "Font Size" -msgstr "" +msgstr "フォントサイズ" #: application/views/labels/create.php:108 #: application/views/labels/edit.php:110 msgid "Font size used on the label don't go too big." msgstr "" +"ラベルに使用するフォント サイズは大きくなりすぎないようにしてください。" #: application/views/labels/create.php:111 #: application/views/labels/edit.php:113 msgid "QSOs on label" -msgstr "" +msgstr "ラベル上のQSO" #: application/views/labels/create.php:117 #: application/views/labels/edit.php:118 msgid "Save Label Type" -msgstr "" +msgstr "ラベルタイプを保存" #: application/views/labels/createpaper.php:36 #: application/views/labels/editpaper.php:36 msgid "Paper Type Name" -msgstr "" +msgstr "用紙タイプ名" #: application/views/labels/createpaper.php:39 #: application/views/labels/editpaper.php:39 msgid "Paper name used for display purposes, so pick something meaningful." -msgstr "" +msgstr "用紙名は表示目的で使用されるため、意味のある名前を選択してください。" #: application/views/labels/createpaper.php:51 #: application/views/labels/editpaper.php:51 msgid "Width of paper" -msgstr "" +msgstr "紙の幅" #: application/views/labels/createpaper.php:54 #: application/views/labels/editpaper.php:54 #: application/views/labels/editpaper.php:60 msgid "Total width of paper." -msgstr "" +msgstr "用紙の合計幅。" #: application/views/labels/createpaper.php:57 #: application/views/labels/editpaper.php:57 msgid "Height of paper" -msgstr "" +msgstr "紙の高さ" #: application/views/labels/createpaper.php:60 msgid "Total height of paper" -msgstr "" +msgstr "紙全体の高さ" #: application/views/labels/createpaper.php:65 #: application/views/labels/createpaper.php:71 #: application/views/labels/editpaper.php:65 #: application/views/labels/editpaper.php:71 msgid "Orientation of paper" -msgstr "" +msgstr "紙の向き" #: application/views/labels/createpaper.php:68 #: application/views/labels/editpaper.php:68 #: application/views/labels/index.php:60 msgctxt "Orientation" msgid "Landscape" -msgstr "" +msgstr "風景" #: application/views/labels/createpaper.php:69 #: application/views/labels/editpaper.php:69 #: application/views/labels/index.php:60 msgctxt "Orientation" msgid "Portrait" -msgstr "" +msgstr "ポートレート" #: application/views/labels/createpaper.php:75 #: application/views/labels/editpaper.php:75 msgid "Save Paper Type" -msgstr "" +msgstr "用紙の種類を保存" #: application/views/labels/edit.php:24 msgid "" "Label name used for display purposes so pick something meaningful perhaps " "the label style." msgstr "" +"ラベル名は表示目的で使用されるため、ラベル スタイルなど意味のあるものを選択し" +"てください。" #: application/views/labels/index.php:2 #: application/views/logbookadvanced/startatform.php:39 msgid "Mark QSL as printed" -msgstr "" +msgstr "QSLを印刷済みとしてマークする" #: application/views/labels/index.php:3 application/views/labels/index.php:128 msgid "Print" -msgstr "" +msgstr "印刷" #: application/views/labels/index.php:33 msgid "Create New Label Type" -msgstr "" +msgstr "新しいラベルタイプを作成" #: application/views/labels/index.php:34 msgid "Create New Paper Type" -msgstr "" +msgstr "新しい用紙タイプを作成する" #: application/views/labels/index.php:37 msgid "Paper types" -msgstr "" +msgstr "紙の種類" #: application/views/labels/index.php:43 application/views/labels/index.php:78 msgid "Width" -msgstr "" +msgstr "幅" #: application/views/labels/index.php:44 application/views/labels/index.php:79 msgid "Height" -msgstr "" +msgstr "高さ" #: application/views/labels/index.php:45 msgid "Used by labels" -msgstr "" +msgstr "ラベルで使用される" #: application/views/labels/index.php:46 msgid "Orientation" -msgstr "" +msgstr "オリエンテーション" #: application/views/labels/index.php:71 msgid "Label types" -msgstr "" +msgstr "ラベルの種類" #: application/views/labels/index.php:81 #: application/views/statistics/index.php:70 #: application/views/statistics/index.php:114 msgid "QSOs" -msgstr "" +msgstr "QSO" #: application/views/labels/index.php:82 msgid "Use For Print" -msgstr "" +msgstr "印刷用" #: application/views/labels/index.php:92 msgid "No paper assigned" -msgstr "" +msgstr "課題が指定されていません" #: application/views/labels/index.php:117 msgid "QSL Card Labels Pending" -msgstr "" +msgstr "QSLカードラベル保留中" #: application/views/labels/index.php:126 msgid "QSOs Waiting" -msgstr "" +msgstr "QSO待機中" #: application/views/labels/index.php:127 msgid "View QSOs" -msgstr "" +msgstr "QSOを表示" #: application/views/labels/startatform.php:4 #: application/views/logbookadvanced/startatform.php:3 msgid "Include Grid?" -msgstr "" +msgstr "グリッドを含めますか?" #: application/views/labels/startatform.php:10 #: application/views/logbookadvanced/startatform.php:9 msgid "" "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" msgstr "" +"参照を含めますか?(SIG、SOTA、POTA、IOTA、WWFF;該当地域で利用可能な場合)" #: application/views/labels/startatform.php:16 msgid "Include Via (if filled)?" -msgstr "" +msgstr "Via を含めますか (入力されている場合)?" #: application/views/labels/startatform.php:22 msgid "Include QSLMSG (if filled)?" -msgstr "" +msgstr "QSLMSG を含めますか (入力した場合)?" #: application/views/labels/startatform.php:28 msgid "Include TNX message?" -msgstr "" +msgstr "お礼 メッセージを含めますか?" #: application/views/labels/startatform.php:34 #: application/views/logbookadvanced/startatform.php:33 msgid "Start printing at?" -msgstr "" +msgstr "印刷開始時刻は?" #: application/views/logbookadvanced/edit.php:1 msgid "Please choose the column to be edited:" -msgstr "" +msgstr "編集する列を選択してください:" #: application/views/logbookadvanced/edit.php:17 #: application/views/logbookadvanced/index.php:519 #: application/views/logbookadvanced/index.php:722 #: application/views/logbookadvanced/useroptions.php:66 msgid "QSL via" -msgstr "" +msgstr "QSL経由" #: application/views/logbookadvanced/edit.php:18 msgid "QSLMSG" -msgstr "" +msgstr "QSLメッセージ" #: application/views/logbookadvanced/edit.php:25 msgid "LoTW Sent" -msgstr "" +msgstr "LoTW送信" #: application/views/logbookadvanced/edit.php:26 msgid "LoTW Received" -msgstr "" +msgstr "LoTWを受信" #: application/views/logbookadvanced/edit.php:28 msgid "QRZ Sent" -msgstr "" +msgstr "QRZ送信" #: application/views/logbookadvanced/edit.php:29 msgid "QRZ Received" -msgstr "" +msgstr "QRZ受信" #: application/views/logbookadvanced/edit.php:30 msgid "eQSL Sent" -msgstr "" +msgstr "eQSLを送信しました" #: application/views/logbookadvanced/edit.php:31 msgid "eQSL Received" -msgstr "" +msgstr "eQSLを受信" #: application/views/logbookadvanced/edit.php:32 #: application/views/logbookadvanced/index.php:812 #: application/views/logbookadvanced/useroptions.php:186 msgid "Station power" -msgstr "" +msgstr "ステーション電力" #: application/views/logbookadvanced/edit.php:33 #: application/views/logbookadvanced/index.php:779 @@ -10119,33 +10186,33 @@ msgstr "" #: application/views/qso/edit_ajax.php:327 application/views/qso/index.php:434 #: application/views/view_log/qso.php:475 msgid "Region" -msgstr "" +msgstr "地域" #: application/views/logbookadvanced/edit.php:34 msgid "Clublog Sent" -msgstr "" +msgstr "Clublog送信" #: application/views/logbookadvanced/edit.php:35 msgid "Clublog Received" -msgstr "" +msgstr "Clublog受信" #: application/views/logbookadvanced/edit.php:38 msgid "Contest Exch (S)" -msgstr "" +msgstr "コンテスト交換(S)" #: application/views/logbookadvanced/edit.php:90 #: application/views/satellite/edit.php:51 #: application/views/satellite/index.php:55 msgid "SAT Mode" -msgstr "" +msgstr "SATモード" #: application/views/logbookadvanced/edit.php:93 msgid "Band TX" -msgstr "" +msgstr "バンドTX" #: application/views/logbookadvanced/edit.php:106 msgid "Band RX" -msgstr "" +msgstr "バンドRX" #: application/views/logbookadvanced/edit.php:154 #: application/views/logbookadvanced/edit.php:161 @@ -10154,7 +10221,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:397 #: application/views/logbookadvanced/index.php:648 msgid "Invalid" -msgstr "" +msgstr "無効" #: application/views/logbookadvanced/edit.php:155 #: application/views/logbookadvanced/edit.php:175 @@ -10163,109 +10230,115 @@ msgstr "" #: application/views/logbookadvanced/index.php:493 #: application/views/logbookadvanced/index.php:515 msgid "Verified" -msgstr "" +msgstr "検証済み" #: application/views/logbookadvanced/edit.php:191 #: application/views/qso/edit_ajax.php:330 application/views/qso/index.php:437 msgid "NONE" -msgstr "" +msgstr "なし" #: application/views/logbookadvanced/edit.php:192 #: application/views/qso/edit_ajax.php:331 application/views/qso/index.php:438 msgid "African Italy" -msgstr "" +msgstr "アフリカのイタリア" #: application/views/logbookadvanced/edit.php:193 #: application/views/qso/edit_ajax.php:332 application/views/qso/index.php:439 msgid "Bear Island" -msgstr "" +msgstr "ベアアイランド" #: application/views/logbookadvanced/edit.php:194 #: application/views/qso/edit_ajax.php:333 application/views/qso/index.php:440 msgid "European Turkey" -msgstr "" +msgstr "ヨーロッパのトルコ" #: application/views/logbookadvanced/edit.php:195 #: application/views/qso/edit_ajax.php:334 application/views/qso/index.php:441 msgid "ITU Vienna" -msgstr "" +msgstr "ウィーン" #: application/views/logbookadvanced/edit.php:196 #: application/views/qso/edit_ajax.php:335 application/views/qso/index.php:442 msgid "Kosovo" -msgstr "" +msgstr "コソボ" #: application/views/logbookadvanced/edit.php:197 #: application/views/qso/edit_ajax.php:336 application/views/qso/index.php:443 msgid "Shetland Islands" -msgstr "" +msgstr "シェトランド諸島" #: application/views/logbookadvanced/edit.php:198 #: application/views/qso/edit_ajax.php:337 application/views/qso/index.php:444 msgid "Sicily" -msgstr "" +msgstr "シチリア島" #: application/views/logbookadvanced/edit.php:201 msgid "" "Distance (in km). Leave blank to recalculate distance. (It will only work if " "a gridsquare is set)." msgstr "" +"距離(km)。空白のままにすると距離が再計算されます。(グリッドスクエアが設定" +"されている場合にのみ機能します)。" #: application/views/logbookadvanced/help.php:1 msgid "In the text input searches, you can search in the following way:" -msgstr "" +msgstr "テキスト入力検索では、次の方法で検索できます。" #: application/views/logbookadvanced/help.php:2 msgid "* - means search for everything." -msgstr "" +msgstr "* - は「すべてを検索する」を意味します。" #: application/views/logbookadvanced/help.php:3 msgid "Remove star and leave blank, means to search where column is empty." -msgstr "" +msgstr "星印を削除し、空白のままにすると、列が空欄の箇所を検索します。" #: application/views/logbookadvanced/help.php:4 msgid "!empty - means to search where column is not empty." -msgstr "" +msgstr "!empty - 列が空でない場所を検索することを意味します。" #: application/views/logbookadvanced/help.php:6 msgid "" "The dupe search checks for duplicate QSOs with the same callsign, mode, " "submode, station callsign, band and satellite within 1500 seconds." msgstr "" +"重複検索では、1500 秒以内に同じコールサイン、モード、サブモード、局のコールサ" +"イン、バンド、衛星を持つ重複 QSO をチェックします。" #: application/views/logbookadvanced/help.php:8 msgid "The invalid search checks for the following conditions:" -msgstr "" +msgstr "無効な検索は、以下の条件をチェックします:" #: application/views/logbookadvanced/help.php:9 msgid "Mode is blank or set to 0." -msgstr "" +msgstr "モードが空白または 0 に設定されています。" #: application/views/logbookadvanced/help.php:10 msgid "Band is blank." -msgstr "" +msgstr "バンドは空白です。" #: application/views/logbookadvanced/help.php:11 msgid "Callsign is blank." -msgstr "" +msgstr "コールサインが空白です。" #: application/views/logbookadvanced/help.php:12 msgid "Time and date is not set." -msgstr "" +msgstr "時刻と日付が設定されていません。" #: application/views/logbookadvanced/help.php:13 msgid "Date is set to 1970-01-01." -msgstr "" +msgstr "日付は 1970-01-01 に設定されています。" #: application/views/logbookadvanced/help.php:14 msgid "Continent different from AF, AN, AS, EU, NA, OC or SA." -msgstr "" +msgstr "AF、AN、AS、EU、NA、OC、またはSA以外の地域。" #: application/views/logbookadvanced/help.php:16 msgid "" "The map uses the same search criteria as the normal search. All QSOs in the " "search result will be mapped, unless you have checked one or more QSOs." msgstr "" +"マップは通常の検索と同じ検索条件を使用します。検索結果にあるすべてのQSOがマッ" +"プされます(ただし、1つ以上のQSOにチェックを入れた場合は除きます)。" #: application/views/logbookadvanced/help.php:18 msgid "" @@ -10273,53 +10346,56 @@ msgid "" "will be exported (all for selected location), unless you have checked one or " "more QSOs." msgstr "" +"ADIFエクスポートでは、通常の検索と同じ検索条件が使用されます。1つ以上のQSOに" +"チェックを入れない限り、すべてのQSO(選択した場所のすべて)がエクスポートされ" +"ます。" #: application/views/logbookadvanced/index.php:16 #: application/views/logbookadvanced/useroptions.php:202 #: application/views/stationsetup/exportmapoptions.php:23 msgctxt "Map Options" msgid "Path lines" -msgstr "" +msgstr "パスライン" #: application/views/logbookadvanced/index.php:17 msgid "Show Callsigns" -msgstr "" +msgstr "コールサインを表示" #: application/views/logbookadvanced/index.php:18 #: application/views/logbookadvanced/useroptions.php:210 msgctxt "Map Options" msgid "CQ Zones" -msgstr "" +msgstr "CQゾーン" #: application/views/logbookadvanced/index.php:19 #: application/views/logbookadvanced/useroptions.php:214 msgctxt "Map Options" msgid "ITU Zones" -msgstr "" +msgstr "ITUゾーン" #: application/views/logbookadvanced/index.php:20 #: application/views/logbookadvanced/useroptions.php:218 msgctxt "Map Options" msgid "Night Shadow" -msgstr "" +msgstr "ナイトシャドウ" #: application/views/logbookadvanced/index.php:23 msgid "Advanced Logbook Help" -msgstr "" +msgstr "高度なログブックヘルプ" #: application/views/logbookadvanced/index.php:212 msgid "From" -msgstr "" +msgstr "から" #: application/views/logbookadvanced/index.php:216 msgid "To" -msgstr "" +msgstr "To" #: application/views/logbookadvanced/index.php:220 #: application/views/logbookadvanced/index.php:695 #: application/views/logbookadvanced/useroptions.php:30 msgid "Dx" -msgstr "" +msgstr "Dx" #: application/views/logbookadvanced/index.php:221 #: application/views/logbookadvanced/index.php:246 @@ -10336,16 +10412,16 @@ msgstr "" #: application/views/logbookadvanced/index.php:403 #: application/views/logbookadvanced/index.php:520 msgid "Empty" -msgstr "" +msgstr "空" #: application/views/logbookadvanced/index.php:296 msgctxt "Propagation Mode" msgid "None/Empty" -msgstr "" +msgstr "なし/空" #: application/views/logbookadvanced/index.php:411 msgid "QSL sent" -msgstr "" +msgstr "QSLを送信しました" #: application/views/logbookadvanced/index.php:417 #: application/views/logbookadvanced/index.php:459 @@ -10365,7 +10441,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:320 #: src/QSLManager/QSO.php:406 src/QSLManager/QSO.php:451 msgid "Queued" -msgstr "" +msgstr "キュー" #: application/views/logbookadvanced/index.php:418 #: application/views/logbookadvanced/index.php:428 @@ -10407,15 +10483,15 @@ msgstr "" #: src/QSLManager/QSO.php:629 src/QSLManager/QSO.php:688 #: src/QSLManager/QSO.php:735 src/QSLManager/QSO.php:760 msgid "Invalid (Ignore)" -msgstr "" +msgstr "無効(無視)" #: application/views/logbookadvanced/index.php:422 msgid "QSL received" -msgstr "" +msgstr "QSLを受信" #: application/views/logbookadvanced/index.php:433 msgid "QSL send. method" -msgstr "" +msgstr "QSL送信方法" #: application/views/logbookadvanced/index.php:436 #: application/views/logbookadvanced/index.php:446 @@ -10435,7 +10511,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:339 #: src/QSLManager/QSO.php:429 src/QSLManager/QSO.php:472 msgid "Bureau" -msgstr "" +msgstr "局" #: application/views/logbookadvanced/index.php:437 #: application/views/logbookadvanced/index.php:447 @@ -10453,7 +10529,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:342 #: src/QSLManager/QSO.php:432 src/QSLManager/QSO.php:475 msgid "Direct" -msgstr "" +msgstr "直接" #: application/views/logbookadvanced/index.php:438 #: application/views/logbookadvanced/index.php:448 @@ -10471,7 +10547,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:348 #: src/QSLManager/QSO.php:438 src/QSLManager/QSO.php:481 msgid "Electronic" -msgstr "" +msgstr "電子" #: application/views/logbookadvanced/index.php:439 #: application/views/logbookadvanced/index.php:449 @@ -10482,346 +10558,347 @@ msgstr "" #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:345 msgid "Manager" -msgstr "" +msgstr "マネージャー" #: application/views/logbookadvanced/index.php:443 msgid "QSL recv. method" -msgstr "" +msgstr "QSL受信方法" #: application/views/logbookadvanced/index.php:453 msgid "LoTW sent" -msgstr "" +msgstr "LoTWが送信されました" #: application/views/logbookadvanced/index.php:464 msgid "LoTW received" -msgstr "" +msgstr "LoTWを受信" #: application/views/logbookadvanced/index.php:475 msgid "Clublog sent" -msgstr "" +msgstr "Clublogを送信しました" #: application/views/logbookadvanced/index.php:486 msgid "Clublog received" -msgstr "" +msgstr "Clublog 受信" #: application/views/logbookadvanced/index.php:497 msgid "eQSL sent" -msgstr "" +msgstr "eQSLを送信しました" #: application/views/logbookadvanced/index.php:508 msgid "eQSL received" -msgstr "" +msgstr "eQSLを受信" #: application/views/logbookadvanced/index.php:523 msgid "QSL Images" -msgstr "" +msgstr "QSL画像" #: application/views/logbookadvanced/index.php:535 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" -msgstr "" +msgstr "警告! マークされたQSOを削除してもよろしいですか?" #: application/views/logbookadvanced/index.php:536 msgid " QSO(s) will be deleted" -msgstr "" +msgstr " QSOは削除されます" #: application/views/logbookadvanced/index.php:539 msgid "With selected: " -msgstr "" +msgstr "選択した場合: " #: application/views/logbookadvanced/index.php:540 #: application/views/qso/edit_ajax.php:697 msgid "Update from Callbook" -msgstr "" +msgstr "コールブックからの更新" #: application/views/logbookadvanced/index.php:541 msgid "Queue Bureau" -msgstr "" +msgstr "Queue Bureau" #: application/views/logbookadvanced/index.php:542 msgid "Queue Direct" -msgstr "" +msgstr "Queue Direct" #: application/views/logbookadvanced/index.php:543 msgid "Queue Electronic" -msgstr "" +msgstr "Queue Electronic" #: application/views/logbookadvanced/index.php:544 msgid "Sent (Bureau)" -msgstr "" +msgstr "送信(局)" #: application/views/logbookadvanced/index.php:545 msgid "Sent (Direct)" -msgstr "" +msgstr "送信(直接)" #: application/views/logbookadvanced/index.php:546 msgid "Sent (Electronic)" -msgstr "" +msgstr "送信済み(電子)" #: application/views/logbookadvanced/index.php:547 msgid "Not Sent" -msgstr "" +msgstr "送信されませんでした" #: application/views/logbookadvanced/index.php:548 msgid "QSL Not Required" -msgstr "" +msgstr "QSLは不要" #: application/views/logbookadvanced/index.php:549 msgid "Not Received" -msgstr "" +msgstr "受信されませんでした" #: application/views/logbookadvanced/index.php:550 msgid "Received (Bureau)" -msgstr "" +msgstr "受領(局)" #: application/views/logbookadvanced/index.php:551 msgid "Received (Direct)" -msgstr "" +msgstr "受信(直接)" #: application/views/logbookadvanced/index.php:552 msgid "Received (Electronic)" -msgstr "" +msgstr "受信済み(電子)" #: application/views/logbookadvanced/index.php:553 msgid "Create ADIF" -msgstr "" +msgstr "ADIFを作成する" #: application/views/logbookadvanced/index.php:554 msgid "Print Label" -msgstr "" +msgstr "ラベルを印刷" #: application/views/logbookadvanced/index.php:555 msgid "QSL Slideshow" -msgstr "" +msgstr "QSLスライドショー" #: application/views/logbookadvanced/index.php:556 msgid "Fix CQ Zones" -msgstr "" +msgstr "CQゾーンを修正" #: application/views/logbookadvanced/index.php:557 msgid "Fix ITU Zones" -msgstr "" +msgstr "ITUゾーンを修正" #: application/views/logbookadvanced/index.php:563 msgid "Quicksearch with selected: " -msgstr "" +msgstr "選択したクイック検索: " #: application/views/logbookadvanced/index.php:565 msgid "Search Date" -msgstr "" +msgstr "検索日" #: application/views/logbookadvanced/index.php:571 msgid "Search DXCC" -msgstr "" +msgstr "DXCCを検索" #: application/views/logbookadvanced/index.php:574 msgid "Search State" -msgstr "" +msgstr "検索状態" #: application/views/logbookadvanced/index.php:577 msgid "Search Gridsquare" -msgstr "" +msgstr "Gridsquareを検索" #: application/views/logbookadvanced/index.php:580 msgid "Search CQ Zone" -msgstr "" +msgstr "CQゾーンを検索" #: application/views/logbookadvanced/index.php:583 msgid "Search ITU Zone" -msgstr "" +msgstr "ITUゾーンを検索" #: application/views/logbookadvanced/index.php:586 msgid "Search Mode" -msgstr "" +msgstr "検索モード" #: application/views/logbookadvanced/index.php:589 msgid "Search Band" -msgstr "" +msgstr "検索バンド" #: application/views/logbookadvanced/index.php:592 msgid "Search IOTA" -msgstr "" +msgstr "IOTAを検索" #: application/views/logbookadvanced/index.php:595 msgid "Search SOTA" -msgstr "" +msgstr "SOTAを検索" #: application/views/logbookadvanced/index.php:598 msgid "Search POTA" -msgstr "" +msgstr "POTAを検索" #: application/views/logbookadvanced/index.php:601 msgid "Search WWFF" -msgstr "" +msgstr "WWFFを検索" #: application/views/logbookadvanced/index.php:604 msgid "Search Operator" -msgstr "" +msgstr "検索演算子" #: application/views/logbookadvanced/index.php:611 msgid "Quickfilters" -msgstr "" +msgstr "クイックフィルター" #: application/views/logbookadvanced/index.php:614 msgid "QSL Filters" -msgstr "" +msgstr "QSLフィルター" #: application/views/logbookadvanced/index.php:617 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" -msgstr "" +msgstr "フィルター" #: application/views/logbookadvanced/index.php:624 #: application/views/oqrs/showrequests.php:58 msgid "# Results" -msgstr "" +msgstr "# 結果" #: application/views/logbookadvanced/index.php:645 msgid "Dupes" -msgstr "" +msgstr "代替品" #: application/views/logbookadvanced/index.php:661 msgid "Globe map" -msgstr "" +msgstr "地球地図" #: application/views/logbookadvanced/index.php:692 #: application/views/logbookadvanced/useroptions.php:26 msgid "De" -msgstr "" +msgstr "の" #: application/views/logbookadvanced/index.php:737 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qso/edit_ajax.php:428 #: application/views/timeline/index.php:72 application/views/user/edit.php:594 msgid "QRZ" -msgstr "" +msgstr "QRZ" #: application/views/logbookadvanced/index.php:740 #: application/views/logbookadvanced/useroptions.php:90 #: application/views/qso/edit_ajax.php:524 msgid "QSL Msg (S)" -msgstr "" +msgstr "QSLメッセージ(S)" #: application/views/logbookadvanced/index.php:743 #: application/views/logbookadvanced/useroptions.php:94 #: application/views/qso/edit_ajax.php:533 msgid "QSL Msg (R)" -msgstr "" +msgstr "QSLメッセージ(R)" #: application/views/logbookadvanced/index.php:794 #: application/views/logbookadvanced/useroptions.php:162 msgid "My Refs" -msgstr "" +msgstr "私の参照先" #: application/views/logbookadvanced/index.php:803 msgid "Ant az" -msgstr "" +msgstr "Ant az" #: application/views/logbookadvanced/index.php:803 #: application/views/logbookadvanced/useroptions.php:174 msgid "Antenna azimuth" -msgstr "" +msgstr "アンテナ方位角" #: application/views/logbookadvanced/index.php:806 msgid "Ant el" -msgstr "" +msgstr "Ant el" #: application/views/logbookadvanced/index.php:806 #: application/views/logbookadvanced/useroptions.php:178 msgid "Antenna elevation" -msgstr "" +msgstr "アンテナの仰角" #: application/views/logbookadvanced/qslcarousel.php:59 #: application/views/qslcard/qslcarousel.php:25 msgid "QSL picture #" -msgstr "" +msgstr "QSL画像 #" #: application/views/logbookadvanced/qslcarousel.php:67 #: application/views/qslcard/qslcarousel.php:32 msgid "Previous" -msgstr "" +msgstr "以前" #: application/views/logbookadvanced/qslcarousel.php:71 #: application/views/qslcard/qslcarousel.php:36 msgid "Next" -msgstr "" +msgstr "次" #: application/views/logbookadvanced/startatform.php:15 msgid "Include Via" -msgstr "" +msgstr "経由を含める" #: application/views/logbookadvanced/startatform.php:21 msgid "Include QSLMSG" -msgstr "" +msgstr "QSLMSGを含める" #: application/views/logbookadvanced/startatform.php:27 msgid "Include TNX message" -msgstr "" +msgstr "TNXメッセージを含める" #: application/views/logbookadvanced/useroptions.php:16 msgid "Column" -msgstr "" +msgstr "カラム" #: application/views/logbookadvanced/useroptions.php:196 msgctxt "Map Options" msgid "Layer" -msgstr "" +msgstr "層" #: application/views/logbookadvanced/useroptions.php:197 msgid "Default on" -msgstr "" +msgstr "デフォルトオン" #: application/views/lookup/index.php:11 #: application/views/qso/award_tabs.php:53 msgid "US State" -msgstr "" +msgstr "米国の州" #: application/views/lookup/index.php:13 msgid "LoTW user" -msgstr "" +msgstr "LoTWユーザー" #: application/views/lookup/index.php:77 msgid "Choose a State" -msgstr "" +msgstr "州を選択" #: application/views/lookup/lotwuser.php:2 #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:62 #: application/views/search/result.php:74 msgid "LoTW User" -msgstr "" +msgstr "LoTWユーザー" #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:74 #, php-format msgid "%d day ago" msgid_plural "%d days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d 日前" #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:74 msgid "last upload" -msgstr "" +msgstr "最終アップロード" #: application/views/lookup/lotwuser.php:14 msgid "No LoTW User" -msgstr "" +msgstr "LoTWユーザーなし" #: application/views/lotw/analysis.php:8 application/views/qrz/analysis.php:8 msgid "No data imported. please check selected date. Must be in the past!" msgstr "" +"データがインポートされていません。選択した日付を確認してください。過去の日付" +"である必要があります!" #: application/views/lotw/import.php:12 msgid "Import Options" -msgstr "" +msgstr "インポートオプション" #: application/views/lotw/import.php:22 msgid "Upload a File" -msgstr "" +msgstr "ファイルをアップロードする" #: application/views/lotw/import.php:24 msgid "Download Report" -msgstr "" +msgstr "レポートをダウンロード" #: application/views/lotw/import.php:24 #, php-format @@ -10829,18 +10906,20 @@ msgid "" "Upload the Exported ADIF file from LoTW from the %s Area, to mark QSOs as " "confirmed on LoTW." msgstr "" +"LoTWからエクスポートしたADIFファイルをアップロードします。 %s エリア、LoTW " +"で QSO を確認済みとしてマークします。" #: application/views/lotw/import.php:27 msgid "Choose file" -msgstr "" +msgstr "ファイルを選択" #: application/views/lotw/import.php:37 msgid "Pull LoTW data for me" -msgstr "" +msgstr "LoTWデータを取得してください" #: application/views/lotw/import.php:48 msgid "Select callsign to pull LoTW confirmations for." -msgstr "" +msgstr "LoTW 確認を取得するコールサインを選択します。" #: application/views/lotw/import.php:62 msgid "" @@ -10849,240 +10928,250 @@ msgid "" "have all confirmations since chosen date, or since your last LoTW " "confirmation (fetched from your log), up until now." msgstr "" +"Wavelogは、ユーザープロファイルに保存されているLoTWのユーザー名とパスワードを" +"使用して、LoTWからレポートをダウンロードします。Wavelogがダウンロードするレ" +"ポートには、選択した日付以降、またはログから取得した前回のLoTW確認以降、現在" +"までの全ての確認が含まれます。" #: application/views/lotw/import.php:66 msgid "Import LoTW Matches" -msgstr "" +msgstr "LoTWマッチをインポート" #: application/views/lotw/satupdate.php:7 #: application/views/satellite/index.php:53 msgid "Display Name" -msgstr "" +msgstr "表示名" #: application/views/lotw_views/index.php:4 msgid "Upload folder is not writable. Please contact your admin." -msgstr "" +msgstr "アップロードフォルダは書き込み不可です。管理者にお問い合わせください。" #: application/views/lotw_views/index.php:8 msgid "LoTW Import" -msgstr "" +msgstr "LoTWインポート" #: application/views/lotw_views/index.php:14 msgid "Available Certificates" -msgstr "" +msgstr "利用可能な証明書" #: application/views/lotw_views/index.php:14 msgid "Upload Certificate" -msgstr "" +msgstr "証明書をアップロード" #: application/views/lotw_views/index.php:34 msgid "QSO Start Date" -msgstr "" +msgstr "QSO開始日" #: application/views/lotw_views/index.php:35 msgid "QSO End Date" -msgstr "" +msgstr "QSO終了日" #: application/views/lotw_views/index.php:36 msgid "Date Created" -msgstr "" +msgstr "作成日" #: application/views/lotw_views/index.php:37 msgid "Date Expires" -msgstr "" +msgstr "有効期限" #: application/views/lotw_views/index.php:39 #: application/views/view_log/qso.php:527 msgid "Last Upload" -msgstr "" +msgstr "最終アップロード" #: application/views/lotw_views/index.php:84 msgid "Expired" -msgstr "" +msgstr "期限切れ" #: application/views/lotw_views/index.php:86 msgid "Expiring" -msgstr "" +msgstr "期限切れ" #: application/views/lotw_views/index.php:88 msgid "Valid" -msgstr "" +msgstr "有効" #: application/views/lotw_views/index.php:98 #, php-format msgid "Last success: %s" -msgstr "" +msgstr "最後の成功: %s" #: application/views/lotw_views/index.php:101 #, php-format msgid "Last fail: %s" -msgstr "" +msgstr "最後の失敗: %s" #: application/views/lotw_views/index.php:107 msgid "Not Synced" -msgstr "" +msgstr "同期されていません" #: application/views/lotw_views/index.php:122 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" +"このエリアを使用するには、LoTW p12 証明書をいくつかアップロードする必要があり" +"ます。" #: application/views/lotw_views/index.php:141 msgid "The next automatic sync with LoTW will happen at: " -msgstr "" +msgstr "LoTW との次の自動同期は次の時間に行われます: " #: application/views/lotw_views/index.php:143 msgid "Manual Sync" -msgstr "" +msgstr "手動同期" #: application/views/lotw_views/index.php:145 msgid "running..." -msgstr "" +msgstr "実行中..." #: application/views/lotw_views/upload_cert.php:8 #: application/views/lotw_views/upload_cert.php:33 msgid "Upload Logbook of the World .p12 Certificate" -msgstr "" +msgstr "Logbook of the World .p1証明書をアップロードしてください" #: application/views/lotw_views/upload_cert.php:19 msgid "Export .p12 File Instructions" -msgstr "" +msgstr ".p12ファイルのエクスポート手順" #: application/views/lotw_views/upload_cert.php:22 msgid "Use at least version 2.7 of TQSL" -msgstr "" +msgstr "TQSLのバージョン2.7以上を使用してください" #: application/views/lotw_views/upload_cert.php:23 msgid "Open TQSL and go to the Callsign Certificates Tab" -msgstr "" +msgstr "TQSLを開き、コールサイン証明書タブに移動します" #: application/views/lotw_views/upload_cert.php:24 msgid "Right click on desired Callsign" -msgstr "" +msgstr "希望のコールサインを右クリック" #: application/views/lotw_views/upload_cert.php:25 msgid "Click 'Save Callsign Certificate File'" -msgstr "" +msgstr "「コールサイン証明書ファイルを保存」をクリックします" #: application/views/lotw_views/upload_cert.php:26 msgid "Do not add a password" -msgstr "" +msgstr "パスワードを追加しないでください" #: application/views/lotw_views/upload_cert.php:27 msgid "Upload File below" -msgstr "" +msgstr "以下のファイルをアップロードしてください" #: application/views/lotw_views/upload_cert.php:37 msgid "Upload File" -msgstr "" +msgstr "ファイルをアップロード" #: application/views/mode/create.php:24 application/views/mode/edit.php:33 msgctxt "Name of mode in ADIF-specification" msgid "ADIF Mode" -msgstr "" +msgstr "ADIFモード" #: application/views/mode/create.php:26 application/views/mode/edit.php:35 msgid "Name of mode in ADIF-specification" -msgstr "" +msgstr "ADIF仕様におけるモード名" #: application/views/mode/create.php:30 application/views/mode/edit.php:39 msgctxt "Name of sub-mode in ADIF-specification" msgid "ADIF Sub-Mode" -msgstr "" +msgstr "ADIFサブモード" #: application/views/mode/create.php:32 application/views/mode/edit.php:41 msgid "Name of sub-mode in ADIF-specification" -msgstr "" +msgstr "ADIF仕様におけるサブモード名" #: application/views/mode/create.php:42 application/views/mode/edit.php:53 msgid "Defines the QRG-segment in bandplan." -msgstr "" +msgstr "バンドプラン内の QRG セグメントを定義します。" #: application/views/mode/create.php:49 application/views/mode/edit.php:61 #: application/views/mode/index.php:9 application/views/mode/index.php:55 #: application/views/usermode/index.php:7 #: application/views/usermode/index.php:51 msgid "Not active" -msgstr "" +msgstr "非アクティブ" #: application/views/mode/create.php:51 application/views/mode/edit.php:64 msgid "Set to active if to be listed in Modes-list" -msgstr "" +msgstr "モードリストにリストする場合はアクティブに設定" #: application/views/mode/create.php:54 application/views/mode/index.php:2 msgid "Create mode" -msgstr "" +msgstr "作成モード" #: application/views/mode/edit.php:67 msgid "Update mode" -msgstr "" +msgstr "更新モード" #: application/views/mode/index.php:3 msgid "Warning! Are you sure you want to delete the following mode?:" -msgstr "" +msgstr "警告! 次のモードを削除してもよろしいですか?:" #: application/views/mode/index.php:4 application/views/usermode/index.php:2 msgid "Warning! Are you sure you want to activate all modes?" -msgstr "" +msgstr "警告! すべてのモードを有効にしてもよろしいですか?" #: application/views/mode/index.php:5 application/views/usermode/index.php:3 msgid "Warning! Are you sure you want to deactivate all modes?" -msgstr "" +msgstr "警告! すべてのモードを無効にしてもよろしいですか?" #: application/views/mode/index.php:31 application/views/usermode/index.php:29 msgid "" "Using the modes list you can control which modes are shown when creating a " "new QSO." msgstr "" +"モード リストを使用すると、新しい QSO を作成するときに表示されるモードを制御" +"できます。" #: application/views/mode/index.php:34 application/views/usermode/index.php:32 msgid "" "Active modes will be shown in the QSO 'Mode' drop-down, while inactive modes " "will be hidden and cannot be selected." msgstr "" +"アクティブなモードは QSO の「モード」ドロップダウンに表示されますが、非アク" +"ティブなモードは非表示になり、選択できません。" #: application/views/mode/index.php:41 application/views/usermode/index.php:39 msgid "Sub-Mode" -msgstr "" +msgstr "サブモード" #: application/views/mode/index.php:88 msgid "Create a Mode" -msgstr "" +msgstr "モードを作成する" #: application/views/notes/add.php:6 application/views/notes/add.php:12 #: application/views/notes/edit.php:13 application/views/notes/main.php:11 #: application/views/notes/view.php:12 msgid "Create Note" -msgstr "" +msgstr "メモを作成" #: application/views/notes/add.php:29 application/views/notes/edit.php:30 msgid "Title" -msgstr "" +msgstr "タイトル" #: application/views/notes/add.php:34 application/views/notes/edit.php:35 msgid "Category" -msgstr "" +msgstr "カテゴリ" #: application/views/notes/add.php:36 application/views/notes/edit.php:37 #: application/views/qso/index.php:61 application/views/statistics/index.php:46 #: application/views/user/edit.php:168 msgid "General" -msgstr "" +msgstr "一般的な" #: application/views/notes/add.php:37 application/views/notes/edit.php:38 msgid "Antennas" -msgstr "" +msgstr "アンテナ" #: application/views/notes/add.php:43 application/views/notes/edit.php:44 msgid "Note Contents" -msgstr "" +msgstr "ノートの内容" #: application/views/notes/add.php:47 application/views/notes/edit.php:49 msgid "Save Note" -msgstr "" +msgstr "メモを保存" #: application/views/notes/main.php:22 msgid "Your Notes" -msgstr "" +msgstr "あなたのメモ" #: application/views/notes/main.php:32 msgid "" @@ -11090,75 +11179,87 @@ msgid "" "data like ATU settings, beacons and general station notes and its better " "than paper as you can't lose them!" msgstr "" +"現在、メモはありません。これらは、ATU 設定、ビーコン、ステーションの一般的な" +"メモなどのデータを保存する素晴らしい方法であり、紛失する心配がないので紙より" +"も優れています!" #: application/views/notes/view.php:21 msgid "Delete Note" -msgstr "" +msgstr "メモを削除" #: application/views/operator/index.php:9 msgid "" "Please provide your personal call sign. This makes sure that QSOs are logged " "and exported with correct operator information." msgstr "" +"個人のコールサインを入力してください。これにより、QSOが正しいオペレータ情報と" +"ともに記録・エクスポートされます。" #: application/views/operator/index.php:13 msgid "Your personal Callsign:" -msgstr "" +msgstr "あなたの個人コールサイン:" #: application/views/operator/index.php:16 msgid "You have to provide your personal callsign." -msgstr "" +msgstr "個人のコールサインを入力する必要があります。" #: application/views/options/appearance.php:39 #: application/views/user/edit.php:171 msgid "Theme" -msgstr "" +msgstr "テーマ" #: application/views/options/appearance.php:51 msgid "Global Theme Choice, this is used when users arent logged in." msgstr "" +"グローバル テーマの選択。これはユーザーがログインしていないときに使用されま" +"す。" #: application/views/options/appearance.php:61 msgid "Logbook Map" -msgstr "" +msgstr "ログブックマップ" #: application/views/options/appearance.php:66 msgid "This allows to disable the map in the logbook." -msgstr "" +msgstr "これにより、ログブック内のマップを無効にすることができます。" #: application/views/options/appearance.php:70 msgid "Public Maps" -msgstr "" +msgstr "公共地図" #: application/views/options/appearance.php:75 msgid "" "This allows to disable all maps in the public view. This affects the main " "map and the gridsquares map." msgstr "" +"これにより、パブリックビュー内のすべてのマップを無効にできます。これはメイン" +"マップとグリッドスクエアマップに影響します。" #: application/views/options/appearance.php:79 msgid "Public Github Button" -msgstr "" +msgstr "公開 Github ボタン" #: application/views/options/appearance.php:84 msgid "This enables the button to Wavelog's Github page in the public view" msgstr "" +"これにより、WavelogのGithubページへのボタンがパブリックビューで有効になります" #: application/views/options/appearance.php:88 msgid "Public Login Button" -msgstr "" +msgstr "パブリックログインボタン" #: application/views/options/appearance.php:93 msgid "This enables the button to login to Wavelog in the public view" msgstr "" +"これにより、パブリックビューでWavelogにログインするためのボタンが有効になりま" +"す" #: application/views/options/dxcluster.php:38 msgid "Provider of DXClusterCache" -msgstr "" +msgstr "DXClusterCache のプロバイダー" #: application/views/options/dxcluster.php:39 msgid "DXClusterAPI" -msgstr "" +msgstr "DXクラスタAPI" #: application/views/options/dxcluster.php:39 #, php-format @@ -11166,127 +11267,135 @@ msgid "" "The Provider of the DXCluster-Cache. You can set up your own Cache with %s " "or use a public one" msgstr "" +"DXCluster-Cacheの提供元。%sを使用して独自のキャッシュを設定するか、公開されて" +"いるものを利用できます" #: application/views/options/dxcluster.php:41 #, php-format msgid "URL of the DXCluster-Cache. e.g. %s" -msgstr "" +msgstr "DXCluster-CacheのURL。例: %s" #: application/views/options/dxcluster.php:44 msgid "Maximum Age of spots taken care of" -msgstr "" +msgstr "処理されるスポットの最大年齢" #: application/views/options/dxcluster.php:46 msgid "2 Hours" -msgstr "" +msgstr "2時間" #: application/views/options/dxcluster.php:47 msgid "60 Minutes" -msgstr "" +msgstr "60分" #: application/views/options/dxcluster.php:48 msgid "30 Minutes" -msgstr "" +msgstr "30分" #: application/views/options/dxcluster.php:50 msgid "The Age in Minutes of spots, that will be taken care at bandplan/lookup" -msgstr "" +msgstr "スポットの経過時間(分)は、bandplan/lookupで確認できます" #: application/views/options/dxcluster.php:53 msgid "Show spots which are spotted from following continent" -msgstr "" +msgstr "次の大陸から発見されたスポットを表示します" #: application/views/options/dxcluster.php:63 msgid "Only spots by spotters from this continent are shown" -msgstr "" +msgstr "この大陸のスポッターによるスポットのみが表示されます" #: application/views/options/email.php:45 msgid "Outgoing Protocol" -msgstr "" +msgstr "送信プロトコル" #: application/views/options/email.php:50 msgid "The protocol that will be used to send out emails." -msgstr "" +msgstr "電子メールの送信に使用されるプロトコル。" #: application/views/options/email.php:54 msgid "SMTP Encryption" -msgstr "" +msgstr "SMTP暗号化" #: application/views/options/email.php:56 msgid "No Encryption" -msgstr "" +msgstr "暗号化なし" #: application/views/options/email.php:60 msgid "Choose whether emails should be sent with TLS or SSL." -msgstr "" +msgstr "メールを TLS で送信するか SSL で送信するかを選択します。" #: application/views/options/email.php:64 msgid "Email Sender Name" -msgstr "" +msgstr "メール送信者名" #: application/views/options/email.php:67 msgid "The email sender name, e.g. 'Wavelog'" -msgstr "" +msgstr "メールの送信者名(例:「Wavelog」)" #: application/views/options/email.php:72 application/views/user/edit.php:62 #: application/views/user/forgot_password.php:47 msgid "Email Address" -msgstr "" +msgstr "電子メールアドレス" #: application/views/options/email.php:75 msgid "" "The email address from which the emails are sent, e.g. 'wavelog@example.com'" -msgstr "" +msgstr "メールの送信元のメールアドレス(例:wavelog@example.com)" #: application/views/options/email.php:80 msgid "SMTP Host" -msgstr "" +msgstr "SMTPホスト" #: application/views/options/email.php:83 msgid "" "The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' " "or 'tls://')" msgstr "" +"メールサーバーのホスト名、例: 'mail.example.com' ('ssl://' または 'tls://' な" +"し)" #: application/views/options/email.php:88 msgid "SMTP Port" -msgstr "" +msgstr "SMTPポート" #: application/views/options/email.php:91 msgid "" "The SMTP port of the mail server, e.g. if TLS is used -> '587', if SSL is " "used -> '465'" msgstr "" +"メールサーバーの SMTP ポート。例: TLS が使用されている場合 -> '587'、SSL が使" +"用されている場合 -> '465'" #: application/views/options/email.php:96 msgid "SMTP Username" -msgstr "" +msgstr "SMTPユーザー名" #: application/views/options/email.php:99 msgid "" "The username to log in to the mail server, usually this is the email address " "that is used." msgstr "" +"メール サーバーにログインするためのユーザー名。通常は、これが使用される電子" +"メール アドレスです。" #: application/views/options/email.php:104 msgid "SMTP Password" -msgstr "" +msgstr "SMTPパスワード" #: application/views/options/email.php:107 msgid "The password to log in to the mail server." -msgstr "" +msgstr "メールサーバーにログインするためのパスワード。" #: application/views/options/email.php:116 msgid "Send Test-Mail" -msgstr "" +msgstr "テストメールを送信" #: application/views/options/email.php:117 msgid "The email will be sent to the address defined in your account settings." -msgstr "" +msgstr "メールはアカウント設定で定義されたアドレスに送信されます。" #: application/views/options/hon.php:38 msgid "Provider for Hams Of Note" -msgstr "" +msgstr "注目のハムプロバイダー" #: application/views/options/hon.php:39 #, php-format @@ -11294,6 +11403,8 @@ msgid "" "The URL which provides the Hams Of Note List. See example and how it works " "here %s" msgstr "" +"「注目すべきハムのリスト」を提供するURLです。例と動作方法はこちらをご覧くださ" +"い %s" #: application/views/options/hon.php:39 msgid "Wiki" @@ -11302,13 +11413,15 @@ msgstr "週" #: application/views/options/hon.php:41 #, php-format msgid "URL of the Hams Of Note List. e.g. %s" -msgstr "" +msgstr "注目のハムリストのURL。例: %s" #: application/views/options/index.php:13 msgid "" "Wavelog Options are global settings used for all users of the installation, " "which are overridden if there's a setting on a user level." msgstr "" +"Wavelog オプションは、インストールのすべてのユーザーに使用されるグローバル設" +"定であり、ユーザー レベルで設定がある場合は上書きされます。" #: application/views/options/maptiles.php:49 #, php-format @@ -11317,6 +11430,9 @@ msgid "" "change any values here unless you are confident in what you are doing. Test " "each change on your %sDashboard%s!" msgstr "" +"この設定は、Wavelog内の複数の場所でマップのソースを修正します。自信を持って操" +"作できる場合を除き、ここでの値を変更しないでください。各変更は、%sDashboard%s" +"でテストしてください!" #: application/views/options/maptiles.php:50 #, php-format @@ -11324,96 +11440,104 @@ msgid "" "You can find a list of tested settings and all default values in the " "%sWavelog Wiki%s." msgstr "" +"テスト済みの設定一覧とすべてのデフォルト値は、%sWavelog Wiki%s に記載されてい" +"ます。" #: application/views/options/maptiles.php:54 msgid "Maptiles Server URL" -msgstr "" +msgstr "Maptiles サーバー URL" #: application/views/options/maptiles.php:56 msgid "URL of the map server which serves the maptiles." -msgstr "" +msgstr "マップタイルを提供するマップ サーバーの URL。" #: application/views/options/maptiles.php:59 msgid "Maptiles Server URL for Dark Tiles - ONLY Static Map API" -msgstr "" +msgstr "ダークタイルの Maptiles サーバー URL - 静的マップ API のみ" #: application/views/options/maptiles.php:61 msgid "" "URL of the map server which serves the dark maptiles. Only used for Static " "Map." msgstr "" +"ダークマップタイルを提供するマップサーバーのURL。静的マップでのみ使用されま" +"す。" #: application/views/options/maptiles.php:64 msgid "Subdomain System of Maptile Server" -msgstr "" +msgstr "Maptileサーバーのサブドメインシステム" #: application/views/options/maptiles.php:66 msgid "" "System of the subdomains at this server ({s} in the URL). They are used for " "loadbalancing." msgstr "" +"このサーバーのサブドメインのシステム(URL内の{s})。これらは負荷分散に使用さ" +"れます。" #: application/views/options/maptiles.php:69 msgid "URL of the Copyright Source" -msgstr "" +msgstr "著作権元のURL" #: application/views/options/maptiles.php:71 msgid "Source URL for the copyright tag." -msgstr "" +msgstr "著作権タグのソース URL。" #: application/views/options/maptiles.php:74 msgid "Name of the Copyright Source" -msgstr "" +msgstr "著作権元の名前" #: application/views/options/maptiles.php:76 msgid "Text for the copyright tag." -msgstr "" +msgstr "著作権タグのテキスト。" #: application/views/options/maptiles.php:81 msgid "Reset to Defaults" -msgstr "" +msgstr "デフォルトにリセット" #: application/views/options/radios.php:38 msgid "Radio Timeout Warning" -msgstr "" +msgstr "無線タイムアウト警告" #: application/views/options/radios.php:39 msgid "" "The Radio Timeout Warning is used on the QSO entry panel to alert you to " "radio interface disconnects." msgstr "" +"無線タイムアウト警告は、QSO 入力パネルで無線インターフェイスの切断を警告する" +"ために使用されます。" #: application/views/options/radios.php:41 msgid "This number is in seconds." -msgstr "" +msgstr "この数値は秒単位です。" #: application/views/options/sidebar.php:5 msgid "Radios" -msgstr "" +msgstr "ラジオ" #: application/views/options/version_dialog.php:47 msgid "Version Info Header" -msgstr "" +msgstr "バージョン情報ヘッダー" #: application/views/options/version_dialog.php:49 msgid "You can change the header of the version info dialog." -msgstr "" +msgstr "バージョン情報ダイアログのヘッダーを変更できます。" #: application/views/options/version_dialog.php:53 msgid "Version Info Mode" -msgstr "" +msgstr "バージョン情報モード" #: application/views/options/version_dialog.php:57 msgid "Only Release Notes" -msgstr "" +msgstr "リリースノートのみ" #: application/views/options/version_dialog.php:60 msgid "Only Custom Text" -msgstr "" +msgstr "カスタムテキストのみ" #: application/views/options/version_dialog.php:63 msgid "Release Notes and Custom Text" -msgstr "" +msgstr "リリースノートとカスタムテキスト" #: application/views/options/version_dialog.php:68 msgid "" @@ -11421,75 +11545,86 @@ msgid "" "the dialog after he read it. Select if you want to show only release notes " "(fetched from github), only custom text or both." msgstr "" +"バージョン情報はすべてのユーザーに表示されます。ユーザーは読んだ後、ダイアロ" +"グを閉じることができます。リリースノート(GitHubから取得)のみを表示するか、" +"カスタムテキストのみを表示するか、またはその両方を表示するかを選択してくださ" +"い。" #: application/views/options/version_dialog.php:72 msgid "Version Info Custom Text" -msgstr "" +msgstr "バージョン情報のカスタムテキスト" #: application/views/options/version_dialog.php:74 msgid "This is the custom text which is shown in the dialog." -msgstr "" +msgstr "これはダイアログに表示されるカスタム テキストです。" #: application/views/options/version_dialog.php:84 msgid "Show/Hide Version Info Dialog for all Users" -msgstr "" +msgstr "すべてのユーザーに対してバージョン情報ダイアログを表示/非表示にする" #: application/views/options/version_dialog.php:97 msgid "Show for all Users" -msgstr "" +msgstr "すべてのユーザーに表示" #: application/views/options/version_dialog.php:99 msgid "" "This will show the version dialog automatically to all users on their next " "page reload." msgstr "" +"これにより、次回ページを再読み込みしたときにすべてのユーザーにバージョン ダイ" +"アログが自動的に表示されます。" #: application/views/options/version_dialog.php:104 msgid "Hide for all Users" -msgstr "" +msgstr "すべてのユーザーに対して非表示" #: application/views/options/version_dialog.php:106 msgid "" "This will deactivate the automatic popup of the version dialog for all users." msgstr "" +"これにより、すべてのユーザーに対してバージョン ダイアログの自動ポップアップが" +"無効になります。" #: application/views/oqrs/index.php:9 msgid "Request a QSL card" -msgstr "" +msgstr "QSLカードをリクエストする" #: application/views/oqrs/index.php:27 msgid "Enter your callsign" -msgstr "" +msgstr "コールサインを入力してください" #: application/views/oqrs/index.php:27 msgid "This search will search in all station locations where OQRS is active." msgstr "" +"この検索では、OQRS がアクティブなすべてのステーションの場所を検索します。" #: application/views/oqrs/index.php:54 msgid "Select station" -msgstr "" +msgstr "ステーションを選択" #: application/views/oqrs/notinlogform.php:2 msgid "" "If you can't find your QSO in the log, please fill out the form below. You " "will be contacted after the log has been checked." msgstr "" +"ログにQSOが見つからない場合は、以下のフォームにご記入ください。ログを確認後、" +"ご連絡いたします。" #: application/views/oqrs/notinlogform.php:9 #: application/views/oqrs/request.php:16 #: application/views/oqrs/request_grouped.php:9 msgid "Time (UTC)" -msgstr "" +msgstr "時間(UTC)" #: application/views/oqrs/notinlogform.php:24 msgid "Add line" -msgstr "" +msgstr "行を追加" #: application/views/oqrs/notinlogform.php:30 #: application/views/oqrs/request.php:56 #: application/views/oqrs/request_grouped.php:59 msgid "Any extra information we need to know about?" -msgstr "" +msgstr "追加で知っておくべき情報はありますか?" #: application/views/oqrs/notinlogform.php:34 #: application/views/oqrs/request.php:60 @@ -11499,17 +11634,17 @@ msgstr "" #: application/views/user/index.php:29 application/views/user/index.php:154 #: application/views/user/profile.php:24 application/views/view_log/qso.php:482 msgid "E-mail" -msgstr "" +msgstr "Eメール" #: application/views/oqrs/notinlogform.php:36 #: application/views/oqrs/request.php:62 #: application/views/oqrs/request_grouped.php:65 msgid "Your e-mail address where we can contact you" -msgstr "" +msgstr "ご連絡可能なメールアドレス" #: application/views/oqrs/notinlogform.php:40 msgid "Send not in log request" -msgstr "" +msgstr "ログにないリクエストを送信する" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:29 @@ -11537,7 +11672,7 @@ msgstr "" #: application/views/view_log/qso.php:726 #: application/views/view_log/qso.php:731 msgid "Station" -msgstr "" +msgstr "ステーション" #: application/views/oqrs/qsolist.php:76 #: application/views/qslprint/qslprint.php:28 @@ -11548,21 +11683,22 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:307 #: src/QSLManager/QSO.php:435 msgid "Via" -msgstr "" +msgstr "経由" #: application/views/oqrs/qsolist.php:199 msgid "No QSOs were found. It seems you were not active at this time." msgstr "" +"QSOは見つかりませんでした。この時点ではアクティブではなかったようです。" #: application/views/oqrs/qsolist.php:203 #: application/views/oqrs/showrequests.php:72 #: application/views/qslprint/qsolist.php:198 msgid "Add to print queue" -msgstr "" +msgstr "印刷キューに追加" #: application/views/oqrs/qsolist.php:209 msgid "Match QSO" -msgstr "" +msgstr "マッチQSO" #: application/views/oqrs/request.php:9 #: application/views/oqrs/request_grouped.php:3 @@ -11570,325 +11706,335 @@ msgid "" "The following QSO(s) were found. Please fill out the date and time and " "submit your request." msgstr "" +"以下のQSOが見つかりました。日時を入力してリクエストを送信してください。" #: application/views/oqrs/request.php:40 #: application/views/oqrs/request_grouped.php:43 msgid "QSL Route" -msgstr "" +msgstr "QSLルート" #: application/views/oqrs/request.php:50 #: application/views/oqrs/request_grouped.php:53 msgid "Direct (write address in message below)" -msgstr "" +msgstr "直接(以下のメッセージに住所を記入してください)" #: application/views/oqrs/request.php:66 #: application/views/oqrs/request_grouped.php:69 msgid "Submit request" -msgstr "" +msgstr "リクエストを送信" #: application/views/oqrs/request_grouped.php:72 #: application/views/oqrs/result.php:40 msgid "No QSOs found in the log." -msgstr "" +msgstr "ログにQSOが見つかりません。" #: application/views/oqrs/result.php:5 #, php-format msgid "Log search result for %s" -msgstr "" +msgstr "%s のログ検索結果" #: application/views/oqrs/result.php:30 #, php-format msgid "has %d band slot" msgid_plural "has %d band slots" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "バンドスロットが %d 個あります" #: application/views/oqrs/result.php:33 #, php-format msgid "and has %d QSO in the log" msgid_plural "and has %d QSOs in the log" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "そしてログに%d件のQSOがあります" #: application/views/oqrs/result.php:37 msgid "Request QSL" -msgstr "" +msgstr "QSLをリクエストする" #: application/views/oqrs/result.php:44 msgid "Not in log?" -msgstr "" +msgstr "ログにありませんか?" #: application/views/oqrs/showrequests.php:2 #: application/views/oqrs/showrequests.php:50 #: application/views/oqrs/status_info.php:10 msgid "Open request" -msgstr "" +msgstr "オープンリクエスト" #: application/views/oqrs/showrequests.php:3 #: application/views/oqrs/showrequests.php:51 #: application/views/oqrs/status_info.php:14 msgid "Not in log request" -msgstr "" +msgstr "ログリクエストに含まれていません" #: application/views/oqrs/showrequests.php:4 msgid "Request done" -msgstr "" +msgstr "リクエスト完了" #: application/views/oqrs/showrequests.php:5 msgid "Pending request" -msgstr "" +msgstr "保留中のリクエスト" #: application/views/oqrs/showrequests.php:6 msgid "Request rejected" -msgstr "" +msgstr "リクエストは拒否されました" #: application/views/oqrs/showrequests.php:10 msgid "An error ocurred while making the request" -msgstr "" +msgstr "リクエスト中にエラーが発生しました" #: application/views/oqrs/showrequests.php:11 msgid "Warning! Are you sure you want to delete the marked OQRS request(s)?" -msgstr "" +msgstr "警告! マークされた OQRS リクエストを削除してもよろしいですか?" #: application/views/oqrs/showrequests.php:12 msgid "Warning! Are you sure you want to reject the marked OQRS request(s)?" -msgstr "" +msgstr "警告! マークされた OQRS 要求を拒否してもよろしいですか?" #: application/views/oqrs/showrequests.php:13 msgid "Warning! Are you sure you want to mark the marked OQRS request(s)?" -msgstr "" +msgstr "警告! マークされた OQRS リクエストをマークしてもよろしいですか?" #: application/views/oqrs/showrequests.php:14 msgid "" "Warning! Are you sure you want to add the marked OQRS request(s) to the " "queue?" -msgstr "" +msgstr "警告! マークされた OQRS リクエストをキューに追加してもよろしいですか?" #: application/views/oqrs/showrequests.php:15 msgid "OQRS Status Information" -msgstr "" +msgstr "OQRSステータス情報" #: application/views/oqrs/showrequests.php:16 msgid "Warning! Are you sure you want to delete the QSO match?" -msgstr "" +msgstr "警告! QSO マッチを削除してもよろしいですか?" #: application/views/oqrs/showrequests.php:42 #: application/views/oqrs/showrequests.php:90 msgid "Request callsign" -msgstr "" +msgstr "コールサインをリクエスト" #: application/views/oqrs/showrequests.php:47 msgid "OQRS Status" -msgstr "" +msgstr "OQRSステータス" #: application/views/oqrs/showrequests.php:52 #: application/views/oqrs/status_info.php:18 msgid "Done / sent" -msgstr "" +msgstr "完了/送信済み" #: application/views/oqrs/showrequests.php:53 #: application/views/oqrs/status_info.php:22 msgid "Pending" -msgstr "" +msgstr "保留中" #: application/views/oqrs/showrequests.php:54 #: application/views/oqrs/status_info.php:26 msgid "Rejected" -msgstr "" +msgstr "拒否" #: application/views/oqrs/showrequests.php:71 msgid "With selected" -msgstr "" +msgstr "選択した" #: application/views/oqrs/showrequests.php:73 msgid "Mark as done" -msgstr "" +msgstr "完了としてマーク" #: application/views/oqrs/showrequests.php:74 msgid "Reject" -msgstr "" +msgstr "拒否する" #: application/views/oqrs/showrequests.php:85 msgid "Time of request" -msgstr "" +msgstr "リクエスト時間" #: application/views/oqrs/showrequests.php:86 #: application/views/simplefle/index.php:78 msgid "QSO Date" -msgstr "" +msgstr "QSO日付" #: application/views/oqrs/showrequests.php:87 msgid "QSO Time" -msgstr "" +msgstr "QSO時間" #: application/views/oqrs/showrequests.php:94 msgid "QSL route" -msgstr "" +msgstr "QSLルート" #: application/views/oqrs/showrequests.php:95 msgid "Check log" -msgstr "" +msgstr "ログを確認する" #: application/views/oqrs/showrequests.php:96 msgid "QSO Match" -msgstr "" +msgstr "QSOマッチ" #: application/views/oqrs/status_info.php:11 msgid "The request is currently open, and needs to be reviewed by you." -msgstr "" +msgstr "リクエストは現在オープン状態であり、お客様による確認が必要です。" #: application/views/oqrs/status_info.php:15 msgid "" "The request is not in the log, so you need to check your log and process the " "request." msgstr "" +"リクエストはログに記録されていないため、ログを確認してリクエストを処理する必" +"要があります。" #: application/views/oqrs/status_info.php:19 msgid "The request has been processed and the QSL has been sent." -msgstr "" +msgstr "リクエストが処理され、QSL が送信されました。" #: application/views/oqrs/status_info.php:23 msgid "The request is still being processed." -msgstr "" +msgstr "リクエストはまだ処理中です。" #: application/views/oqrs/status_info.php:27 msgid "The request has been rejected and will not be processed." -msgstr "" +msgstr "リクエストは拒否され、処理されません。" #: application/views/public_search/empty.php:2 #: application/views/public_search/result.php:2 msgid "Searching for" -msgstr "" +msgstr "検索中" #: application/views/qrbcalc/index.php:3 msgid "Locator 1" -msgstr "" +msgstr "ロケーター1" #: application/views/qrbcalc/index.php:10 msgid "Locator 2" -msgstr "" +msgstr "ロケーター2" #: application/views/qrbcalc/index.php:20 msgid "Calculate" -msgstr "" +msgstr "計算する" #: application/views/qrz/export.php:27 msgid "The next automatic Upload to QRZ will happen at: " -msgstr "" +msgstr "QRZ への次回の自動アップロードは次の時間に行われます: " #: application/views/qrz/export.php:28 msgid "" "Here you can see all QSOs which have not been previously uploaded to a QRZ " "logbook." msgstr "" +"ここでは、これまで QRZ ログブックにアップロードされていないすべての QSO を確" +"認できます。" #: application/views/qrz/export.php:29 msgid "" "You need to set a QRZ Logbook API key in your station profile. Only station " "profiles with an API Key set are displayed." msgstr "" +"ステーションプロフィールにQRZログブックAPIキーを設定する必要があります。API" +"キーが設定されているステーションプロフィールのみが表示されます。" #: application/views/qrz/export.php:74 msgid "The next automatic Download from QRZ-QSLs will happen at: " -msgstr "" +msgstr "QRZ-QSL からの次回の自動ダウンロードは次の時刻に行われます: " #: application/views/qrz/export.php:83 msgid "Download from QRZ Logbook" -msgstr "" +msgstr "QRZログブックからダウンロード" #: application/views/qrz/export.php:109 msgid "Mark QSOs as exported to QRZ Logbook" -msgstr "" +msgstr "QSOをQRZログブックにエクスポートしてマークする" #: application/views/qrz/mark_qrz.php:16 msgid "The QSOs are marked as exported to QRZ Logbook." -msgstr "" +msgstr "QSO は QRZ ログブックにエクスポートされたものとしてマークされます。" #: application/views/qslcard/confirmationresult.php:16 msgid "QSO date" -msgstr "" +msgstr "QSO 日付" #: application/views/qslcard/confirmationresult.php:20 msgid "Confirmation date" -msgstr "" +msgstr "確認日" #: application/views/qslcard/confirmationresult.php:21 #: application/views/user/index.php:30 msgid "Type" -msgstr "" +msgstr "タイプ" #: application/views/qslcard/confirmationresult.php:54 msgid "No confirmations found." -msgstr "" +msgstr "確認が見つかりません。" #: application/views/qslcard/confirmations.php:6 msgid "" "A maximum of 1000 rows are shown in the table. This is for performance " "reasons." msgstr "" +"表には最大1000行が表示されます。これはパフォーマンス上の理由によるものです。" #: application/views/qslcard/confirmations.php:11 msgid "Confirmation type" -msgstr "" +msgstr "確認タイプ" #: application/views/qslcard/index.php:10 #, php-format msgid "You are using %s of disk space to store QSL Card assets" -msgstr "" +msgstr "あなたはディスク容量の%sをQSLカード資産の保存に使用しています" #: application/views/qslcard/index.php:17 msgid "List View" -msgstr "" +msgstr "リストビュー" #: application/views/qslcard/index.php:18 msgid "Gallery View" -msgstr "" +msgstr "ギャラリービュー" #: application/views/qslcard/index.php:78 #: application/views/qslcard/index.php:126 msgid "Add Qsos" -msgstr "" +msgstr "QSOSを追加" #: application/views/qslcard/searchresult.php:193 msgid "Add to QSL" -msgstr "" +msgstr "QSLに追加" #: application/views/qslmanagement/index.php:13 msgid "Incoming QSL Cards" -msgstr "" +msgstr "受信QSLカード" #: application/views/qslmanagement/index.php:25 msgid "Report" -msgstr "" +msgstr "報告" #: application/views/qslmanagement/index.php:26 msgid "Option" -msgstr "" +msgstr "オプション" #: application/views/qslmanagement/index.php:46 msgid "Outgoing QSL Cards" -msgstr "" +msgstr "送信QSLカード" #: application/views/qslprint/index.php:16 msgid "Export Requested QSLs for Printing" -msgstr "" +msgstr "印刷用にリクエストされたQSLをエクスポートする" #: application/views/qslprint/index.php:29 msgid "" "Here you can export requested QSLs as CSV or ADIF files for printing and, " "optionally, mark them as sent." msgstr "" +"ここでは、要求された QSL を印刷用に CSV または ADIF ファイルとしてエクスポー" +"トし、必要に応じて送信済みとしてマークすることができます。" #: application/views/qslprint/index.php:31 msgid "" "Requested QSLs are any QSOs with a value of 'Requested' or 'Queued' in their " "'QSL Sent' field." msgstr "" +"リクエストされた QSL とは、「QSL 送信」フィールドに「リクエスト済み」または" +"「キューに登録済み」の値を持つ QSO のことです。" #: application/views/qslprint/index.php:32 #: application/views/qslprint/qslprint.php:32 msgid "Previous QSL" -msgstr "" +msgstr "以前のQSL" #: application/views/qslprint/index.php:32 #, php-format @@ -11896,170 +12042,172 @@ msgid "" "The column %s shows how many QSLs have been sent to the same station before " "on the same band and mode." msgstr "" +"列%sは、同じバンドとモードで同じ局に過去に送信されたQSLの数を示しています。" #: application/views/qslprint/qslprint.php:31 #: application/views/qslprint/qsolist.php:16 msgid "Send Method" -msgstr "" +msgstr "送信方法" #: application/views/qslprint/qslprint.php:33 msgid "Mark as sent" -msgstr "" +msgstr "送信済みとしてマーク" #: application/views/qslprint/qslprint.php:34 msgid "Remove" -msgstr "" +msgstr "取り除く" #: application/views/qslprint/qslprint.php:35 #: application/views/simplefle/index.php:147 msgid "QSO List" -msgstr "" +msgstr "QSOリスト" #: application/views/qslprint/qslprint.php:71 msgid "Mark selected QSOs as sent" -msgstr "" +msgstr "選択したQSOを送信済みとしてマークする" #: application/views/qslprint/qslprint.php:72 msgid "Remove selected QSOs from the queue" -msgstr "" +msgstr "選択したQSOをキューから削除する" #: application/views/qslprint/qslprint.php:73 msgid "Export selected QSOs to ADIF-file" -msgstr "" +msgstr "選択したQSOをADIFファイルにエクスポートする" #: application/views/qslprint/qslprint.php:75 msgid "Export CSV-file" -msgstr "" +msgstr "CSVファイルのエクスポート" #: application/views/qslprint/qslprint.php:75 msgid "Export requested QSLs to CSV-file" -msgstr "" +msgstr "リクエストされたQSLをCSVファイルにエクスポートする" #: application/views/qslprint/qslprint.php:77 msgid "Export ADIF" -msgstr "" +msgstr "ADIFをエクスポート" #: application/views/qslprint/qslprint.php:77 msgid "Export requested QSLs to ADIF-file" -msgstr "" +msgstr "リクエストされたQSLをADIFファイルにエクスポートする" #: application/views/qslprint/qslprint.php:79 msgid "Mark QSLs as printed" -msgstr "" +msgstr "QSLを印刷どおりにマークする" #: application/views/qslprint/qslprint.php:79 msgid "Mark requested QSLs as sent" -msgstr "" +msgstr "リクエストされたQSLを送信済みとしてマークする" #: application/views/qslprint/qslprint.php:83 msgid "No QSLs to print were found!" -msgstr "" +msgstr "印刷する QSL が見つかりません!" #: application/views/qslprint/qsolist.php:207 msgid "" "No additional QSOs were found. That means they are probably already in the " "queue." msgstr "" +"追加のQSOは見つかりませんでした。おそらく既にキューに入っていると思われます。" #: application/views/qso/award_tabs.php:2 msgid "Showing summary for DXCC" -msgstr "" +msgstr "DXCCの概要を表示しています" #: application/views/qso/award_tabs.php:3 msgid "Showing summary for US State" -msgstr "" +msgstr "米国の州の概要を表示しています" #: application/views/qso/award_tabs.php:4 msgid "Showing summary for CQ zone" -msgstr "" +msgstr "CQゾーンの概要を表示しています" #: application/views/qso/award_tabs.php:5 msgid "Showing summary for WWFF" -msgstr "" +msgstr "WWFFの概要を表示しています" #: application/views/qso/award_tabs.php:6 msgid "Showing summary for POTA" -msgstr "" +msgstr "POTAの概要を表示しています" #: application/views/qso/award_tabs.php:7 msgid "Showing summary for SOTA" -msgstr "" +msgstr "SOTAの概要を表示しています" #: application/views/qso/award_tabs.php:8 msgid "Showing summary for IOTA" -msgstr "" +msgstr "IOTAの概要を表示しています" #: application/views/qso/award_tabs.php:9 msgid "Showing summary for DOK" -msgstr "" +msgstr "DOKの概要を表示しています" #: application/views/qso/award_tabs.php:10 msgid "Showing summary for satellite QSOs with" -msgstr "" +msgstr "衛星QSOの概要を表示しています" #: application/views/qso/award_tabs.php:11 msgid "Showing summary for continent" -msgstr "" +msgstr "大陸の概要を表示しています" #: application/views/qso/award_tabs.php:12 msgid "Showing summary for gridsquare" -msgstr "" +msgstr "gridsquareの概要を表示しています" #: application/views/qso/award_tabs.php:13 msgid "State input needs to be filled to show a summary!" -msgstr "" +msgstr "概要を表示するには、状態入力を入力する必要があります!" #: application/views/qso/award_tabs.php:14 msgid "SOTA input needs to be filled to show a summary!" -msgstr "" +msgstr "概要を表示するには、SOTA 入力を入力する必要があります!" #: application/views/qso/award_tabs.php:15 msgid "POTA input needs to be filled to show a summary!" -msgstr "" +msgstr "概要を表示するには、POTA 入力を入力する必要があります。!" #: application/views/qso/award_tabs.php:16 msgid "IOTA input needs to be filled to show a summary!" -msgstr "" +msgstr "概要を表示するには、IOTA 入力を入力する必要があります。!" #: application/views/qso/award_tabs.php:17 msgid "DOK input needs to be filled to show a summary!" -msgstr "" +msgstr "概要を表示するには、DOK 入力を入力する必要があります!" #: application/views/qso/award_tabs.php:18 msgid "WWFF input needs to be filled to show a summary!" -msgstr "" +msgstr "概要を表示するには、WWFF 入力を入力する必要があります!" #: application/views/qso/award_tabs.php:19 msgid "Propagation mode needs to be 'SAT' to show a summary!" -msgstr "" +msgstr "概要を表示するには、伝播モードを「SAT」にする必要があります!" #: application/views/qso/award_tabs.php:20 msgid "Gridsquare input needs to be filled to show a summary!" -msgstr "" +msgstr "概要を表示するには、Gridsquare 入力を入力する必要があります!" #: application/views/qso/award_tabs.php:21 msgid "Summary only shows for the first POTA entered." -msgstr "" +msgstr "概要は、最初に入力された POTA についてのみ表示されます。" #: application/views/qso/award_tabs.php:22 msgid "Summary only shows for the first gridsquare entered." -msgstr "" +msgstr "概要は、最初に入力したグリッドスクエアに対してのみ表示されます。" #: application/views/qso/award_tabs.php:23 msgid "Summary only shows for US states." -msgstr "" +msgstr "概要は米国の州についてのみ表示されます。" #: application/views/qso/components/share_modal.php:3 msgid "Post on X" -msgstr "" +msgstr "Xに投稿" #: application/views/qso/components/share_modal.php:6 msgid "Post on Bluesky" -msgstr "" +msgstr "Blueskyに投稿する" #: application/views/qso/components/share_modal.php:10 msgid "Toot on Mastodon" -msgstr "" +msgstr "マストドンで投稿する" #: application/views/qso/components/winkeysettings.php:3 #: application/views/qso/components/winkeysettings.php:19 @@ -12068,7 +12216,7 @@ msgstr "" #: application/views/qso/components/winkeysettings.php:67 #, php-format msgid "Function %d - Name" -msgstr "" +msgstr "関数 %d - 名前" #: application/views/qso/components/winkeysettings.php:10 #: application/views/qso/components/winkeysettings.php:26 @@ -12077,121 +12225,122 @@ msgstr "" #: application/views/qso/components/winkeysettings.php:74 #, php-format msgid "Function %d - Macro" -msgstr "" +msgstr "関数 %d - マクロ" #: application/views/qso/edit_ajax.php:35 msgid "Sats" -msgstr "" +msgstr "衛星" #: application/views/qso/edit_ajax.php:53 msgid "Start Date/Time" -msgstr "" +msgstr "開始日時" #: application/views/qso/edit_ajax.php:58 msgid "End Date/Time" -msgstr "" +msgstr "終了日時" #: application/views/qso/edit_ajax.php:78 msgid "RX Frequency" -msgstr "" +msgstr "受信周波数" #: application/views/qso/edit_ajax.php:101 msgid "RX Band" -msgstr "" +msgstr "RXバンド" #: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:386 msgid "Give power value in Watts. Include only numbers in the input." msgstr "" +"電力値はワット単位で入力してください。入力には数字のみを入力してください。" #: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:384 #: application/views/reg1test/index.php:114 #: application/views/view_log/qso.php:691 msgid "Transmit Power (W)" -msgstr "" +msgstr "送信電力(W)" #: application/views/qso/edit_ajax.php:165 msgid "Used for VUCC MultiGrids" -msgstr "" +msgstr "VUCCマルチグリッドに使用" #: application/views/qso/edit_ajax.php:221 application/views/qso/index.php:498 msgid "Antenna Path" -msgstr "" +msgstr "アンテナパス" #: application/views/qso/edit_ajax.php:224 application/views/qso/index.php:501 #: application/views/view_log/qso.php:162 msgid "Greyline" -msgstr "" +msgstr "グレーライン" #: application/views/qso/edit_ajax.php:225 application/views/qso/index.php:502 msgid "Other" -msgstr "" +msgstr "他の" #: application/views/qso/edit_ajax.php:226 application/views/qso/index.php:503 #: application/views/view_log/qso.php:153 msgid "Short Path" -msgstr "" +msgstr "ショートパス" #: application/views/qso/edit_ajax.php:227 application/views/qso/index.php:504 #: application/views/view_log/qso.php:156 msgid "Long Path" -msgstr "" +msgstr "ロングパス" #: application/views/qso/edit_ajax.php:284 msgid "Sat Name" -msgstr "" +msgstr "衛星の名前" #: application/views/qso/edit_ajax.php:289 msgid "Sat Mode" -msgstr "" +msgstr "衛星モード" #: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:627 msgid "Antenna Azimuth (°)" -msgstr "" +msgstr "アンテナ方位角(°)" #: application/views/qso/edit_ajax.php:294 application/views/qso/index.php:629 msgid "Antenna azimuth in decimal degrees." -msgstr "" +msgstr "アンテナの方位角(十進度)。" #: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:633 msgid "Antenna Elevation (°)" -msgstr "" +msgstr "アンテナ仰角(°)" #: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:635 msgid "Antenna elevation in decimal degrees." -msgstr "" +msgstr "アンテナの仰角(十進度)。" #: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:518 #: application/views/station_profile/create.php:103 #: application/views/station_profile/edit.php:141 msgid "Station County" -msgstr "" +msgstr "ステーション郡" #: application/views/qso/edit_ajax.php:396 application/views/qso/index.php:293 #: application/views/qso/index.php:585 application/views/user/edit.php:667 #: application/views/view_log/qso.php:441 #: application/views/view_log/qso.php:731 msgid "SIG Info" -msgstr "" +msgstr "SIG情報" #: application/views/qso/edit_ajax.php:411 #: application/views/qso/edit_ajax.php:527 application/views/qso/index.php:644 #: application/views/qso/index.php:688 msgid "Note: Gets exported to third-party services." -msgstr "" +msgstr "注: サードパーティのサービスにエクスポートされます。" #: application/views/qso/edit_ajax.php:450 msgid "Sent Method" -msgstr "" +msgstr "送信方法" #: application/views/qso/edit_ajax.php:453 #: application/views/qso/edit_ajax.php:486 application/views/qso/index.php:665 #: application/views/qso/index.php:668 msgid "Method" -msgstr "" +msgstr "方法" #: application/views/qso/edit_ajax.php:463 msgid "Sent Via" -msgstr "" +msgstr "送信方法" #: application/views/qso/edit_ajax.php:477 #: application/views/qso/edit_ajax.php:518 @@ -12199,19 +12348,19 @@ msgstr "" #: application/views/qso/edit_ajax.php:593 #: application/views/qso/edit_ajax.php:620 msgid "Verified (Match)" -msgstr "" +msgstr "検証済み(一致)" #: application/views/qso/edit_ajax.php:483 msgid "Received Method" -msgstr "" +msgstr "受信方法" #: application/views/qso/edit_ajax.php:524 application/views/qso/index.php:685 msgid "Get the default message for eQSL, for this station." -msgstr "" +msgstr "この局の eQSL のデフォルト メッセージを取得します。" #: application/views/qso/edit_ajax.php:536 msgid "Note: Not editable. Only displayed here." -msgstr "" +msgstr "注: 編集できません。ここにのみ表示されます。" #: application/views/qso/edit_ajax.php:580 #: application/views/view_log/partial/log_ajax.php:426 @@ -12219,101 +12368,101 @@ msgstr "" #: src/QSLManager/QSO.php:563 src/QSLManager/QSO.php:618 #: src/QSLManager/QSO.php:677 msgid "Modified" -msgstr "" +msgstr "修正済み" #: application/views/qso/edit_ajax.php:639 msgid "Change Station Profile" -msgstr "" +msgstr "ステーションプロファイルの変更" #: application/views/qso/edit_ajax.php:679 msgid "Exchange (R)" -msgstr "" +msgstr "交換(R)" #: application/views/qso/edit_ajax.php:684 msgid "Exchange (S)" -msgstr "" +msgstr "交換(S)" #: application/views/qso/edit_ajax.php:696 #: application/views/search/search_result_ajax.php:449 #: application/views/view_log/partial/log.php:159 #: application/views/view_log/partial/log_ajax.php:520 msgid "Delete QSO" -msgstr "" +msgstr "QSOを削除" #: application/views/qso/edit_ajax.php:699 msgid "Save changes" -msgstr "" +msgstr "変更を保存" #: application/views/qso/index.php:29 msgid "TimeOff is less than TimeOn" -msgstr "" +msgstr "TimeOff が TimeOn より短い" #: application/views/qso/index.php:30 application/views/qso/index.php:796 msgid "Previous Contacts" -msgstr "" +msgstr "以前の連絡先" #: application/views/qso/index.php:31 msgid "times worked before" -msgstr "" +msgstr "以前に働いた回数" #: application/views/qso/index.php:32 msgid "Not worked before" -msgstr "" +msgstr "以前は機能していなかった" #: application/views/qso/index.php:33 msgid "more" -msgstr "" +msgstr "もっと" #: application/views/qso/index.php:34 msgid "less" -msgstr "" +msgstr "少ない" #: application/views/qso/index.php:35 msgid "DXCC Summary for " -msgstr "" +msgstr "DXCC概要 " #: application/views/qso/index.php:36 msgid "LoTW User. Last upload was 1 day ago." -msgstr "" +msgstr "LoTW ユーザー。最終アップロードは 1 日前です。" #: application/views/qso/index.php:37 #, php-format msgid "LoTW User. Last upload was %x days ago." -msgstr "" +msgstr "LoTWユーザー。最終アップロードは %x 日前。" #: application/views/qso/index.php:38 msgid "Invalid value for antenna elevation:" -msgstr "" +msgstr "アンテナの仰角の値が無効です:" #: application/views/qso/index.php:53 msgid "LIVE" -msgstr "" +msgstr "ライブ" #: application/views/qso/index.php:53 msgid "POST" -msgstr "" +msgstr "投稿" #: application/views/qso/index.php:66 #: application/views/statistics/antennaanalytics.php:45 #: application/views/statistics/antennaanalytics.php:85 msgid "Sat" -msgstr "" +msgstr "衛星" #: application/views/qso/index.php:81 msgid "Add Band/Mode to Favs" -msgstr "" +msgstr "バンド/モードをお気に入りに追加" #: application/views/qso/index.php:102 msgid "Time on" -msgstr "" +msgstr "時間" #: application/views/qso/index.php:114 msgid "Time off" -msgstr "" +msgstr "休暇" #: application/views/qso/index.php:157 msgid "Search DXCluster for latest Spot" -msgstr "" +msgstr "DXClusterで最新のスポットを検索" #: application/views/qso/index.php:234 application/views/qso/index.php:524 #: application/views/station_profile/create.php:153 @@ -12321,7 +12470,7 @@ msgstr "" #: application/views/user/edit.php:651 application/views/view_log/qso.php:382 #: application/views/view_log/qso.php:698 msgid "IOTA Reference" -msgstr "" +msgstr "IOTAリファレンス" #: application/views/qso/index.php:250 application/views/qso/index.php:541 #: application/views/station_profile/create.php:171 @@ -12329,107 +12478,107 @@ msgstr "" #: application/views/user/edit.php:655 application/views/view_log/qso.php:389 #: application/views/view_log/qso.php:705 msgid "SOTA Reference" -msgstr "" +msgstr "SOTA リファレンス" #: application/views/qso/index.php:360 application/views/view_log/qso.php:101 msgid "Frequency (RX)" -msgstr "" +msgstr "周波数(RX)" #: application/views/qso/index.php:365 msgid "Band (RX)" -msgstr "" +msgstr "バンド(RX)" #: application/views/qso/index.php:543 msgid "For example: GM/NS-001." -msgstr "" +msgstr "例:GM/NS-001。" #: application/views/qso/index.php:556 msgid "For example: DLFF-0069." -msgstr "" +msgstr "例: DLFF-0069。" #: application/views/qso/index.php:569 msgid "For example: PA-0150. Multiple values allowed." -msgstr "" +msgstr "例: PA-0150。複数の値を指定できます。" #: application/views/qso/index.php:581 msgid "For example: GMA" -msgstr "" +msgstr "例: GMA" #: application/views/qso/index.php:587 msgid "For example: DA/NW-357" -msgstr "" +msgstr "例: DA/NW-357" #: application/views/qso/index.php:595 msgid "For example: Q03" -msgstr "" +msgstr "例: Q03" #: application/views/qso/index.php:602 msgid "E-mail address of QSO-partner" -msgstr "" +msgstr "QSO相手のメールアドレス" #: application/views/qso/index.php:611 application/views/view_log/qso.php:296 msgid "Satellite Name" -msgstr "" +msgstr "衛星名" #: application/views/qso/index.php:619 application/views/view_log/qso.php:310 msgid "Satellite Mode" -msgstr "" +msgstr "衛星モード" #: application/views/qso/index.php:685 msgid "QSL MSG" -msgstr "" +msgstr "QSLメッセージ" #: application/views/qso/index.php:704 msgid "Reset to Default" -msgstr "" +msgstr "デフォルトにリセット" #: application/views/qso/index.php:745 msgid "Winkey" -msgstr "" +msgstr "Winkey" #: application/views/qso/index.php:747 msgid "Connect" -msgstr "" +msgstr "接続する" #: application/views/qso/index.php:756 msgid "Stop" -msgstr "" +msgstr "停止" #: application/views/qso/index.php:757 msgid "Tune" -msgstr "" +msgstr "チューニング" #: application/views/qso/index.php:758 msgid "Stop Tune" -msgstr "" +msgstr "チューニングを停止" #: application/views/qso/index.php:764 msgid "CW Speed" -msgstr "" +msgstr "CW速度" #: application/views/qso/index.php:769 msgid "Send" -msgstr "" +msgstr "送信" #: application/views/qso/index.php:779 msgid "Suggestions" -msgstr "" +msgstr "提案" #: application/views/qso/index.php:786 msgid "Profile Picture" -msgstr "" +msgstr "プロフィール写真" #: application/views/qso/log_qso.php:9 msgid "Redirecting to QSO logging page..." -msgstr "" +msgstr "QSO ログページにリダイレクトしています..." #: application/views/qso/log_qso.php:75 msgid "The data was redirected. You can close this window." -msgstr "" +msgstr "データはリダイレクトされました。このウィンドウを閉じてください。" #: application/views/radio/edit.php:18 msgid "CAT URL" -msgstr "" +msgstr "CAT URL" #: application/views/radio/edit.php:20 #, php-format @@ -12437,29 +12586,33 @@ msgid "" "Called URL when a spot at DXCluster is clicked. Notice: The trailing slash " "(/) and QRG is added automatically. Default is %s" msgstr "" +"DXClusterのスポットをクリックした際に呼び出されるURL。注意:末尾のスラッシュ" +"(/)とQRGは自動的に追加されます。デフォルトは%sです" #: application/views/radio/index.php:20 msgid "Active Radios" -msgstr "" +msgstr "アクティブラジオ" #: application/views/radio/index.php:23 msgid "Below is a list of active radios that are connected to Wavelog." -msgstr "" +msgstr "以下は、Wavelog に接続されているアクティブな無線機のリストです。" #: application/views/radio/index.php:24 msgid "" "If you haven't connected any radios yet, see the API page to generate API " "keys." msgstr "" +"まだ無線を接続していない場合は、API ページを参照して API キーを生成してくださ" +"い。" #: application/views/radio/index.php:26 application/views/search/filter.php:72 #, php-format msgid "You can find out how to use the %s in the wiki." -msgstr "" +msgstr "%s の使用方法については、ウィキでご確認いただけます。" #: application/views/radio/index.php:26 msgid "radio functions" -msgstr "" +msgstr "ラジオ機能" #: application/views/radio/index.php:31 msgid "Please wait..." @@ -12467,21 +12620,23 @@ msgstr "お待ちください..." #: application/views/reg1test/index.php:6 msgid "Select Band" -msgstr "" +msgstr "バンドを選択" #: application/views/reg1test/index.php:8 msgid "" "Bands below 50Mhz are not valid for the EDI REG1TEST format and will produce " "invalid files." msgstr "" +"50Mhz 未満の帯域は EDI REG1TEST 形式では無効であり、無効なファイルが生成され" +"ます。" #: application/views/reg1test/index.php:18 msgid "Export a contest to a REG1TEST EDI log" -msgstr "" +msgstr "コンテスト内容をREG1TEST EDIログにエクスポートする" #: application/views/reg1test/index.php:48 msgid "Sent Exchange" -msgstr "" +msgstr "送信済み交換" #: application/views/reg1test/index.php:50 msgid "" @@ -12489,127 +12644,135 @@ msgid "" "information, e.g. Province, DOK, County, State, Power, Name. Max. length: 6 " "characters." msgstr "" +"コンテスト中に送信された交換情報です。州、DOK、郡、州、電力、名前など、あらゆ" +"るタイプの情報を指定できます。最大文字数:6文字。" #: application/views/reg1test/index.php:55 msgid "" "Describes the callsign of the radio club where operator(s) are member. E.g. " "can be used if points are accumulated to the club." msgstr "" +"オペレータが所属する無線クラブのコールサインを記述します。例:クラブにポイン" +"トが貯まっている場合に使用できます。" #: application/views/reg1test/index.php:66 msgid "Callsign of responsible operator" -msgstr "" +msgstr "担当オペレーターのコールサイン" #: application/views/reg1test/index.php:72 msgid "" "List of all operators. Seperated with a semicolon ';'. The responsible " "operator is not needed here." msgstr "" +"すべての演算子のリスト。セミコロン「;」で区切られます。ここでは担当演算子は必" +"要ありません。" #: application/views/reg1test/index.php:75 msgid "Contest Address 1" -msgstr "" +msgstr "コンテストアドレス1" #: application/views/reg1test/index.php:77 msgid "Address of the QTH used during the contest." -msgstr "" +msgstr "コンテスト中に使用された QTH のアドレス。" #: application/views/reg1test/index.php:80 msgid "Contest Address 2" -msgstr "" +msgstr "コンテスト演説2" #: application/views/reg1test/index.php:84 msgid "Operator Address 1" -msgstr "" +msgstr "オペレータアドレス1" #: application/views/reg1test/index.php:86 msgid "Address of the responsible operator." -msgstr "" +msgstr "担当オペレータの住所。" #: application/views/reg1test/index.php:89 msgid "Operator Address 2" -msgstr "" +msgstr "オペレータアドレス2" #: application/views/reg1test/index.php:93 msgid "Operator Address Postalcode" -msgstr "" +msgstr "オペレーター住所郵便番号" #: application/views/reg1test/index.php:97 msgid "Operator Address City" -msgstr "" +msgstr "オペレーター住所市" #: application/views/reg1test/index.php:101 msgid "Operator Address Country" -msgstr "" +msgstr "オペレーター住所国" #: application/views/reg1test/index.php:105 msgid "Operator Phone Number" -msgstr "" +msgstr "オペレーターの電話番号" #: application/views/reg1test/index.php:109 msgid "Transmit Equipment Description" -msgstr "" +msgstr "送信機器の説明" #: application/views/reg1test/index.php:111 msgid "Short description of the used equipment." -msgstr "" +msgstr "使用された機器の簡単な説明。" #: application/views/reg1test/index.php:116 msgid "TX Power during the contest in Watt." -msgstr "" +msgstr "コンテスト中のTX出力(ワット単位)。" #: application/views/reg1test/index.php:119 msgid "Receive Equipment Description" -msgstr "" +msgstr "受信機器の説明" #: application/views/reg1test/index.php:121 msgid "If you used another gear for RX, then describe it here." -msgstr "" +msgstr "RX に別のギアを使用した場合は、ここで説明してください。" #: application/views/reg1test/index.php:124 msgid "Antenna Description" -msgstr "" +msgstr "アンテナの説明" #: application/views/reg1test/index.php:126 msgid "What kind of antenna was used." -msgstr "" +msgstr "どのようなアンテナが使用されたか。" #: application/views/reg1test/index.php:129 msgid "Antenna Height Above Ground (m)" -msgstr "" +msgstr "地上からのアンテナ高(m)" #: application/views/reg1test/index.php:131 msgid "Height of the antenna above the ground." -msgstr "" +msgstr "地上からのアンテナの高さ。" #: application/views/reg1test/index.php:134 msgid "Band multiplicator" -msgstr "" +msgstr "バンドマルチプライヤー" #: application/views/reg1test/index.php:136 msgid "" "Band multiplicator. This is usually 1. Only change this if necessary " "according to the contest scoring rules." msgstr "" +"バンドマルチプライヤー。通常は1です。コンテスト採点ルールに従って必要な場合に" +"のみ変更してください。" #: application/views/reg1test/index.php:141 msgid "Any other remarks." -msgstr "" +msgstr "その他ご意見があれば。" #: application/views/satellite/create.php:23 msgid "Satellite Display Name" -msgstr "" +msgstr "衛星表示名" #: application/views/satellite/create.php:25 #: application/views/satellite/edit.php:9 msgid "Display / cleartext name of the satellite" -msgstr "" +msgstr "衛星の表示名/平文名" #: application/views/satellite/create.php:28 #: application/views/satellite/edit.php:12 #: application/views/satellite/index.php:52 msgid "LoTW Name" -msgstr "" +msgstr "LoTW名" #: application/views/satellite/create.php:30 #: application/views/satellite/edit.php:14 @@ -12617,258 +12780,262 @@ msgid "" "Satellite name as accepted by LoTW. Not necessarily the same as the display " "name. Can be set/changed later when added to LoTW." msgstr "" +"LoTWで承認された衛星名。表示名と同じとは限りません。LoTWに追加する際に後から" +"設定/変更できます。" #: application/views/satellite/create.php:41 #: application/views/satellite/edit.php:25 msgid "Enter which orbit the satellite has (LEO, MEO, GEO)" -msgstr "" +msgstr "衛星の軌道を入力してください(LEO、MEO、GEO)" #: application/views/satellite/create.php:44 msgid "Satellite mode name" -msgstr "" +msgstr "衛星モード名" #: application/views/satellite/create.php:46 msgid "Enter satellite mode" -msgstr "" +msgstr "衛星モードに入る" #: application/views/satellite/create.php:51 #: application/views/satellite/edit.php:52 #: application/views/satellite/satinfo.php:8 msgid "Uplink mode" -msgstr "" +msgstr "アップリンクモード" #: application/views/satellite/create.php:53 msgid "Enter modulation used for uplink" -msgstr "" +msgstr "アップリンクに使用する変調を入力してください" #: application/views/satellite/create.php:56 #: application/views/satellite/edit.php:53 #: application/views/satellite/satinfo.php:9 msgid "Uplink frequency" -msgstr "" +msgstr "アップリンク周波数" #: application/views/satellite/create.php:58 msgid "Enter frequency (in Hz) used for uplink" -msgstr "" +msgstr "アップリンクに使用する周波数(Hz)を入力してください" #: application/views/satellite/create.php:63 #: application/views/satellite/edit.php:54 #: application/views/satellite/satinfo.php:10 msgid "Downlink mode" -msgstr "" +msgstr "ダウンリンクモード" #: application/views/satellite/create.php:65 msgid "Enter modulation used for downlink" -msgstr "" +msgstr "ダウンリンクに使用する変調を入力してください" #: application/views/satellite/create.php:68 #: application/views/satellite/edit.php:55 #: application/views/satellite/satinfo.php:11 msgid "Downlink frequency" -msgstr "" +msgstr "ダウンリンク周波数" #: application/views/satellite/create.php:70 msgid "Enter frequency (in Hz) used for downlink" -msgstr "" +msgstr "ダウンリンクに使用する周波数(Hz)を入力してください" #: application/views/satellite/create.php:73 #: application/views/satellite/edit.php:28 msgid "Accepted by LoTW" -msgstr "" +msgstr "LoTWに承認されました" #: application/views/satellite/create.php:78 #: application/views/satellite/edit.php:38 msgid "Set to yes only if satellite is accepted my LoTW" -msgstr "" +msgstr "衛星がLoTWに受け入れられる場合にのみ「はい」に設定します" #: application/views/satellite/edit.php:7 msgid "Satellite Display Name " -msgstr "" +msgstr "衛星表示名 " #: application/views/satellite/edit.php:42 msgid "Save satellite" -msgstr "" +msgstr "衛星を保存" #: application/views/satellite/edit.php:76 msgid "Add satellite mode" -msgstr "" +msgstr "衛星モードを追加" #: application/views/satellite/flightpath.php:51 msgid "" "No satellites with TLE found. Please update via CRON or satellite page. If " "you have no access to do this, ask your admin!" msgstr "" +"TLE を持つサテライトが見つかりません。CRON またはサテライトページから更新して" +"ください。更新権限がない場合は、管理者にお問い合わせください!" #: application/views/satellite/index.php:44 msgid "Add a satellite" -msgstr "" +msgstr "衛星を追加する" #: application/views/satellite/index.php:45 msgid "Sync Satellites from LoTW" -msgstr "" +msgstr "LoTWからの衛星同期" #: application/views/satellite/index.php:46 msgid "Update Satellite TLE" -msgstr "" +msgstr "衛星TLEの更新" #: application/views/satellite/index.php:57 msgid "TLE" -msgstr "" +msgstr "TLE" #: application/views/satellite/pass.php:6 msgid "Satellite passes" -msgstr "" +msgstr "衛星通過" #: application/views/satellite/pass.php:13 msgid "Your station" -msgstr "" +msgstr "あなたのステーション" #: application/views/satellite/pass.php:26 #: application/views/satellite/pass.php:65 msgid "Min. Satellite Elevation" -msgstr "" +msgstr "最小衛星仰角" #: application/views/satellite/pass.php:30 #: application/views/satellite/pass.php:69 msgid "Min. Azimuth" -msgstr "" +msgstr "最小方位角" #: application/views/satellite/pass.php:38 #: application/views/satellite/pass.php:77 msgid "Max. Azimuth" -msgstr "" +msgstr "最大方位角" #: application/views/satellite/pass.php:54 msgid "Min. time" -msgstr "" +msgstr "最小時間" #: application/views/satellite/pass.php:63 msgid "Sked partner" -msgstr "" +msgstr "Sked partner" #: application/views/satellite/pass.php:91 msgid "Load predictions" -msgstr "" +msgstr "負荷予測" #: application/views/satellite/pass.php:92 msgid "Add sked partner" -msgstr "" +msgstr "スケジューリングパートナーを追加する" #: application/views/satellite/pass.php:94 msgid "Presets" -msgstr "" +msgstr "プリセット" #: application/views/satellite/pass.php:96 msgid "Save current settings" -msgstr "" +msgstr "現在の設定を保存する" #: application/views/satellite/pass.php:105 msgid "Save Settings" -msgstr "" +msgstr "設定を保存" #: application/views/satellite/pass.php:109 msgid "Settings Name" -msgstr "" +msgstr "設定名" #: application/views/satellite/pass.php:110 msgid "Enter a name" -msgstr "" +msgstr "名前を入力してください" #: application/views/satellite/pass.php:121 msgid "No TLE information detected. Please update TLE's." -msgstr "" +msgstr "TLE情報が検出されませんでした。TLEを更新してください。" #: application/views/satellite/passtable.php:7 #: application/views/satellite/skedtable.php:36 msgid "AOS Time" -msgstr "" +msgstr "AOSチーム" #: application/views/satellite/passtable.php:8 #: application/views/satellite/skedtable.php:40 msgid "LOS Time" -msgstr "" +msgstr "LOS時間" #: application/views/satellite/passtable.php:9 #: application/views/satellite/skedtable.php:10 #: application/views/satellite/skedtable.php:37 #: application/views/sattimers/index.php:46 msgid "Duration" -msgstr "" +msgstr "間隔" #: application/views/satellite/passtable.php:10 msgid "Path" -msgstr "" +msgstr "パス" #: application/views/satellite/passtable.php:11 msgid "Max Elevation (Azimuth)" -msgstr "" +msgstr "最大仰角(方位角)" #: application/views/satellite/passtable.php:12 #: application/views/satellite/skedtable.php:38 msgid "AOS Azimuth" -msgstr "" +msgstr "AOS方位角" #: application/views/satellite/passtable.php:13 #: application/views/satellite/skedtable.php:41 msgid "LOS Azimuth" -msgstr "" +msgstr "方位角" #: application/views/satellite/passtable.php:55 #: application/views/satellite/skedtable.php:84 msgid "Search failed!" -msgstr "" +msgstr "検索に失敗しました!" #: application/views/satellite/passtable.php:56 msgid "No passes found. Please check the input parameters." -msgstr "" +msgstr "パスが見つかりません。入力パラメータを確認してください。" #: application/views/satellite/passtable.php:73 #: application/views/satellite/skedtable.php:94 msgid "min" -msgstr "" +msgstr "分" #: application/views/satellite/satinfo.php:14 msgid "TLE date" -msgstr "" +msgstr "TLE日付" #: application/views/satellite/skedtable.php:8 msgid "Sked AOS Time" -msgstr "" +msgstr "スケッドAOS時間" #: application/views/satellite/skedtable.php:9 msgid "Sked LOS Time" -msgstr "" +msgstr "予定LOS時間" #: application/views/satellite/skedtable.php:34 msgid "Grid" -msgstr "" +msgstr "グリッド" #: application/views/satellite/skedtable.php:39 #: application/views/sattimers/index.php:45 msgid "Max Elevation" -msgstr "" +msgstr "最大高度" #: application/views/satellite/skedtable.php:85 msgid "No overlapping passes found. Please check the input parameters." -msgstr "" +msgstr "重複するパスが見つかりません。入力パラメータを確認してください。" #: application/views/satellite/tleinfo.php:6 #, php-format msgid "TLE information for %s (last updated: %s)" -msgstr "" +msgstr "TLE 情報: %s (最終更新日時: %s)" #: application/views/satellite/tleinfo.php:8 msgid "Delete TLE" -msgstr "" +msgstr "TLEを削除" #: application/views/satellite/tleinfo.php:10 #, php-format msgid "No TLE information found for %s" -msgstr "" +msgstr "%s に関する TLE 情報は見つかりませんでした" #: application/views/satellite/tleinfo.php:11 msgid "Add TLE" -msgstr "" +msgstr "TLEを追加" #: application/views/sattimers/index.php:15 #, php-format @@ -12876,23 +13043,25 @@ msgid "" "This data comes from %s and is calculated for the current stationlocation " "grid %s." msgstr "" +"このデータは%sから取得され、現在の駅位置グリッド%sに基づいて計算されていま" +"す。" #: application/views/sattimers/index.php:40 msgid "Time(d)-Out" -msgstr "" +msgstr "タイムアウト" #: application/views/sattimers/index.php:43 #: application/views/sattimers/index.php:44 #: application/views/statistics/antennaanalytics.php:8 msgid "Azimuth" -msgstr "" +msgstr "方位角" #: application/views/search/cqzones.php:5 #: application/views/search/ituzones.php:5 #: application/views/search/lotw_unconfirmed.php:5 #: application/views/search/main.php:5 msgid "Ready to find a QSO?" -msgstr "" +msgstr "QSOを探す準備はできましたか?" #: application/views/search/cqzones.php:15 #: application/views/search/filter.php:4 application/views/search/filter.php:23 @@ -12900,7 +13069,7 @@ msgstr "" #: application/views/search/lotw_unconfirmed.php:15 #: application/views/search/main.php:15 msgid "Advanced Search" -msgstr "" +msgstr "詳細検索" #: application/views/search/cqzones.php:18 #: application/views/search/filter.php:26 @@ -12908,7 +13077,7 @@ msgstr "" #: application/views/search/lotw_unconfirmed.php:18 #: application/views/search/main.php:18 msgid "Incorrect CQ Zones" -msgstr "" +msgstr "不正確なCQゾーン" #: application/views/search/cqzones.php:21 #: application/views/search/filter.php:29 @@ -12916,7 +13085,7 @@ msgstr "" #: application/views/search/lotw_unconfirmed.php:21 #: application/views/search/main.php:21 msgid "Incorrect ITU Zones" -msgstr "" +msgstr "ITUゾーンが正しくありません" #: application/views/search/cqzones.php:24 #: application/views/search/filter.php:32 @@ -12924,159 +13093,165 @@ msgstr "" #: application/views/search/lotw_unconfirmed.php:24 #: application/views/search/main.php:24 msgid "QSOs unconfirmed on LoTW" -msgstr "" +msgstr "LoTWでのQSOは未確認" #: application/views/search/cqzones.php:31 #: application/views/search/ituzones.php:31 msgid "Station location:" -msgstr "" +msgstr "ステーションの場所:" #: application/views/search/cqzones_result.php:3 msgid "" "The following QSOs were found to have an incorrect CQ zone that this DXCC " "normally has (a maximum of 5000 QSOs are shown):" msgstr "" +"次の QSO には、この DXCC が通常持つ CQ ゾーンが正しくないことが判明しました " +"(最大 5000 件の QSO が表示されます)。" #: application/views/search/cqzones_result.php:14 msgid "DXCC CQ Zone" -msgstr "" +msgstr "DXCC CQゾーン" #: application/views/search/cqzones_result.php:51 #: application/views/search/ituzones_result.php:51 msgid "No incorrect CQ Zones were found." -msgstr "" +msgstr "不正な CQ ゾーンは見つかりませんでした。" #: application/views/search/filter.php:46 msgid "Save query" -msgstr "" +msgstr "クエリを保存" #: application/views/search/filter.php:53 msgid "Stored queries" -msgstr "" +msgstr "保存されたクエリ" #: application/views/search/filter.php:72 msgid "search filter functions" -msgstr "" +msgstr "検索フィルター機能" #: application/views/search/filter.php:82 msgid "Search Results" -msgstr "" +msgstr "検索結果" #: application/views/search/ituzones_result.php:3 msgid "" "The following QSOs were found to have an incorrect ITU zone that this DXCC " "normally has (a maximum of 5000 QSOs are shown):" msgstr "" +"次の QSO には、この DXCC が通常持つ ITU ゾーンが正しくないことが判明しました " +"(最大 5000 件の QSO が表示されます)。" #: application/views/search/ituzones_result.php:14 msgid "DXCC ITU Zone" -msgstr "" +msgstr "DXCC ITUゾーン" #: application/views/search/lotw_unconfirmed.php:29 msgid "" "The search displays QSOs which are unconfirmed on LoTW, but the callsign " "worked has uploaded to LoTW after your QSO date." msgstr "" +"検索では、LoTW で未確認の QSO が表示されますが、機能したコールサインは QSO 日" +"付以降に LoTW にアップロードされています。" #: application/views/search/lotw_unconfirmed.php:32 msgid "Station location" -msgstr "" +msgstr "ステーションの場所" #: application/views/search/lotw_unconfirmed_result.php:10 msgid "Last LoTW upload" -msgstr "" +msgstr "最後のLoTWアップロード" #: application/views/search/lotw_unconfirmed_result.php:41 msgid "No QSOs with outstanding LoTW upload were found." -msgstr "" +msgstr "未処理の LoTW アップロードがある QSO は見つかりませんでした。" #: application/views/search/main.php:31 msgid "Callsign / Gridsquare" -msgstr "" +msgstr "コールサイン / グリッドスクエア" #: application/views/search/result.php:2 #, php-format msgid "Results for %s" -msgstr "" +msgstr "%s の結果" #: application/views/search/result.php:4 #, php-format msgid "Sorry, but we didn't find any past QSOs with %s" -msgstr "" +msgstr "申し訳ありませんが、%sとの過去のQSOは見つかりませんでした" #: application/views/search/result.php:6 #, php-format msgid "Callbook Search for %s" -msgstr "" +msgstr "%s のコールブック検索" #: application/views/search/result.php:39 msgid "Not Worked" -msgstr "" +msgstr "未実施" #: application/views/search/search_result_ajax.php:424 #: application/views/view_log/partial/log.php:142 #: application/views/view_log/partial/log_ajax.php:495 msgid "Mark QSL Sent (Bureau)" -msgstr "" +msgstr "QSL送信をマーク(ビューロー)" #: application/views/search/search_result_ajax.php:425 #: application/views/view_log/partial/log.php:143 #: application/views/view_log/partial/log_ajax.php:496 msgid "Mark QSL Sent (Direct)" -msgstr "" +msgstr "QSL 送信済み(直接)をマーク" #: application/views/search/search_result_ajax.php:432 #: application/views/view_log/partial/log.php:150 #: application/views/view_log/partial/log_ajax.php:506 #: application/views/view_log/qso.php:801 msgid "Mark QSL Received (Bureau)" -msgstr "" +msgstr "QSL受信をマーク(ビューロー)" #: application/views/search/search_result_ajax.php:433 #: application/views/view_log/partial/log.php:151 #: application/views/view_log/partial/log_ajax.php:507 #: application/views/view_log/qso.php:803 msgid "Mark QSL Received (Direct)" -msgstr "" +msgstr "QSL 受信をマーク(直接)" #: application/views/search/search_result_ajax.php:434 #: application/views/view_log/partial/log.php:152 #: application/views/view_log/partial/log_ajax.php:497 #: application/views/view_log/qso.php:811 msgid "Mark QSL Card Requested (Bureau)" -msgstr "" +msgstr "QSLカードの申請をマーク(ビューロー)" #: application/views/search/search_result_ajax.php:435 #: application/views/view_log/partial/log.php:153 #: application/views/view_log/partial/log_ajax.php:498 #: application/views/view_log/qso.php:813 msgid "Mark QSL Card Requested (Direct)" -msgstr "" +msgstr "QSLカードのリクエストをマーク(直接)" #: application/views/search/search_result_ajax.php:436 #: application/views/view_log/partial/log.php:154 #: application/views/view_log/partial/log_ajax.php:499 #: application/views/view_log/qso.php:815 msgid "Mark QSL Card Not Required" -msgstr "" +msgstr "QSLカードは不要とマークする" #: application/views/search/search_result_ajax.php:443 #: application/views/view_log/partial/log_ajax.php:514 msgid "Lookup on QRZ.com" -msgstr "" +msgstr "QRZ.comで検索" #: application/views/search/search_result_ajax.php:445 #: application/views/view_log/partial/log_ajax.php:516 msgid "Lookup on HamQTH" -msgstr "" +msgstr "HamQTHで検索" #: application/views/search/stored_queries.php:9 msgid "Query" -msgstr "" +msgstr "クエリ" #: application/views/simplefle/index.php:13 msgid "Simple Fast Log Entry (FLE)" -msgstr "" +msgstr "シンプル高速ログエントリ(FLE)" #: application/views/simplefle/index.php:14 msgid "" @@ -13084,6 +13259,9 @@ msgid "" "efficiently. Due to its syntax, only a minimum of input is required to log " "many QSOs with as little effort as possible." msgstr "" +"「Fast Log Entry」(略して「FLE」)は、QSOを非常に迅速かつ効率的に記録するた" +"めのシステムです。その構文のおかげで、最小限の入力で多くのQSOを最小限の労力で" +"記録できます。" #: application/views/simplefle/index.php:15 msgid "" @@ -13091,6 +13269,9 @@ msgid "" "website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides " "a web interface to log QSOs." msgstr "" +"FLEは元々DF3CBによって作成されました。彼は自身のウェブサイトでWindows用のプロ" +"グラムを提供しています。Simple FLEはOK2CQRによってDF3CBのFLEに基づいて作成さ" +"れ、QSOを記録するためのWebインターフェースを提供しています。" #: application/views/simplefle/index.php:16 #, php-format @@ -13099,108 +13280,118 @@ msgid "" "session and now SimpleFLE is also available in Wavelog. Information about " "the syntax and how FLE works can be found %s." msgstr "" +"一般的な使用例として、屋外セッションから紙のログをインポートする必要がある場" +"合が挙げられます。現在、SimpleFLEはWavelogでも利用可能です。FLEの構文や動作に" +"関する情報は%sでご確認いただけます。" #: application/views/simplefle/index.php:17 #: application/views/simplefle/index.php:184 msgid "Syntax Help" -msgstr "" +msgstr "構文ヘルプ" #: application/views/simplefle/index.php:18 msgid "Syntax for FLE" -msgstr "" +msgstr "FLEの構文" #: application/views/simplefle/index.php:19 msgid "Close and Load Sample Data" -msgstr "" +msgstr "サンプルデータを閉じて読み込む" #: application/views/simplefle/index.php:23 msgid "Band is missing!" -msgstr "" +msgstr "バンドがありません!" #: application/views/simplefle/index.php:24 msgid "Mode is missing!" -msgstr "" +msgstr "モードがありません!" #: application/views/simplefle/index.php:25 msgid "Time is not set!" -msgstr "" +msgstr "時間が決まっておりません!" #: application/views/simplefle/index.php:26 msgid "Invalid date" -msgstr "" +msgstr "無効な日付" #: application/views/simplefle/index.php:29 msgid "Station Call is not selected" -msgstr "" +msgstr "ステーションコールが選択されていません" #: application/views/simplefle/index.php:30 msgid "'Operator' Field is empty" -msgstr "" +msgstr "「演算子」フィールドが空です" #: application/views/simplefle/index.php:31 msgid "Warning! Do you really want to reset everything?" -msgstr "" +msgstr "警告! 本当にすべてをリセットしますか?" #: application/views/simplefle/index.php:32 msgid "" "Warning! You can't log the QSO List, because some QSO don't have band and/or " "mode defined!" msgstr "" +"警告! 一部の QSO ではバンドやモードが定義されていないため、QSO リストを記録で" +"きません!" #: application/views/simplefle/index.php:33 msgid "" "Warning! You can't log the QSO List, because some QSO don't have a time " "defined!" msgstr "" +"警告! 一部の QSO には時間が定義されていないため、QSO リストを記録できません!" #: application/views/simplefle/index.php:34 msgid "" "Attention! The Data Field containes example data. First Clear Logging " "Session!" msgstr "" +"注意!データフィールドにはサンプルデータが含まれています。最初のログセッショ" +"ンをクリアしてください!" #: application/views/simplefle/index.php:35 msgid "" "Attention! Either you have set a contest, but included no exchange, or you " "have logged contest-data but did not select a contest." msgstr "" +"注意!コンテストは設定しましたが、交換が含まれていないか、コンテストデータを" +"記録しましたが、コンテストを選択していません。" #: application/views/simplefle/index.php:36 msgid "" "Are you sure that you want to add these QSO to the Log and clear the session?" -msgstr "" +msgstr "これらの QSO をログに追加してセッションをクリアしてもよろしいですか?" #: application/views/simplefle/index.php:37 msgid "QSO Logged!" -msgstr "" +msgstr "QSOが記録されました!" #: application/views/simplefle/index.php:38 msgid "The QSO were successfully logged in the logbook! Dupes were skipped." -msgstr "" +msgstr "QSO はログブックに正常に記録されました。重複はスキップされました。" #: application/views/simplefle/index.php:40 msgid "An error occurred while saving the QSO to the logbook! Error: " -msgstr "" +msgstr "QSOをログブックに保存中にエラーが発生しました。エラー: " #: application/views/simplefle/index.php:44 msgid "What is that?" -msgstr "" +msgstr "それは何ですか?" #: application/views/simplefle/index.php:47 msgid "Current UTC Time" -msgstr "" +msgstr "現在のUTC時間" #: application/views/simplefle/index.php:80 msgid "If you don't choose a date, today's date will be used." -msgstr "" +msgstr "日付を選択しない場合は、今日の日付が使用されます。" #: application/views/simplefle/index.php:92 msgid "You can add the entered QSOs to a contest." -msgstr "" +msgstr "入力したQSOをコンテストに追加できます。" #: application/views/simplefle/index.php:99 msgid "Station Call/Location" -msgstr "" +msgstr "ステーション名/所在地" #: application/views/simplefle/index.php:111 #, php-format @@ -13208,56 +13399,58 @@ msgid "" "If you did operate from a new location, first create a new %sStation " "Location%s" msgstr "" +"新しい拠点から業務を開始する場合、まず新しい「%sStation Location%s」を作成し" +"てください" #: application/views/simplefle/index.php:117 msgid "e.g. OK2CQR" -msgstr "" +msgstr "例:OK2CQR" #: application/views/simplefle/index.php:120 msgid "This is callsign of the operator. Without any pre- or suffixes." -msgstr "" +msgstr "これはオペレーターのコールサインです。接頭辞や接尾辞は不要です。" #: application/views/simplefle/index.php:133 msgid "Enter the Data" -msgstr "" +msgstr "データを入力" #: application/views/simplefle/index.php:162 msgid "Refs" -msgstr "" +msgstr "参照" #: application/views/simplefle/index.php:174 #, php-format msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" -msgstr "" +msgstr "審判員は、%sS%sOTA、%sI%sOTA、%sP%sOTA、または%sW%sWFFのいずれかです" #: application/views/simplefle/index.php:181 msgid "Reload QSO List" -msgstr "" +msgstr "QSOリストを再読み込み" #: application/views/simplefle/index.php:182 msgid "Save in Wavelog" -msgstr "" +msgstr "Wavelogに保存" #: application/views/simplefle/index.php:183 msgid "Clear Logging Session" -msgstr "" +msgstr "ログセッションをクリアする" #: application/views/simplefle/options.php:20 msgid "No Options yet" -msgstr "" +msgstr "オプションはまだありません" #: application/views/simplefle/syntax_help.php:1 msgid "Before starting to log a QSO, please note the basic rules." -msgstr "" +msgstr "QSO の記録を開始する前に、基本的なルールに注意してください。" #: application/views/simplefle/syntax_help.php:2 msgid "- Each new QSO should be on a new line." -msgstr "" +msgstr "- 新しい QSO はそれぞれ新しい行に記入する必要があります。" #: application/views/simplefle/syntax_help.php:3 msgid "" "- On each new line, only write data that has changed from the previous QSO." -msgstr "" +msgstr "- 新しい行ごとに、前回の QSO から変更されたデータのみを書き込みます。" #: application/views/simplefle/syntax_help.php:4 msgid "" @@ -13266,10 +13459,14 @@ msgid "" "QRG in MHz, e.g., '7.145'), mode, and time. After the time, you provide the " "first QSO, which is essentially the callsign." msgstr "" +"まず、左側のフォームに日付、局のコールサイン、オペレーターのコールサインが記" +"入されていることを確認してください。主なデータには、バンド(またはMHz単位の" +"QRG、例:「7.145」)、モード、時刻が含まれます。時刻の次に、最初のQSO、つまり" +"コールサインを入力します。" #: application/views/simplefle/syntax_help.php:9 msgid "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB." -msgstr "" +msgstr "たとえば、20m SSB で 4W7EST と 21:34 (UTC) に開始された QSO です。" #: application/views/simplefle/syntax_help.php:10 msgid "" @@ -13277,6 +13474,9 @@ msgid "" "data). Our next QSO wasn't 59 on both sides, so we provide the information " "with the sent RST first. It was 2 minutes later than the first QSO." msgstr "" +"RST情報を指定しない場合、構文では59番(データの場合は599番)が使用されます。" +"次のQSOは双方とも59番ではなかったため、最初に送信したRSTで情報を提供します。" +"これは最初のQSOから2分後のことでした。" #: application/views/simplefle/syntax_help.php:16 msgid "" @@ -13284,6 +13484,9 @@ msgid "" "write down 6 because this is the only data that changed here. The " "information about band and mode didn't change, so this data is omitted." msgstr "" +"最初のQSOは21時34分、2回目のQSOは2分後の21時36分でした。ここで変更があったの" +"は6だけなので、6と記入しました。バンドとモードの情報は変更がなかったため、こ" +"のデータは省略しています。" #: application/views/simplefle/syntax_help.php:17 msgid "" @@ -13292,26 +13495,30 @@ msgid "" "every new QSO. Therefore we can add another QSO which took place at the " "exact same time two days later. The date must be in format YYYY-MM-DD." msgstr "" +"2021年5月14日21時40分の次のQSOでは、バンドを40mに変更しましたが、SSBのままで" +"す。RST情報が指定されていない場合、シンタックスは新しいQSOごとに59を使用しま" +"す。そのため、2日後の全く同じ時間に行われた別のQSOを追加できます。日付はYYYY-" +"MM-DD形式で入力してください。" #: application/views/simplefle/syntax_help.php:28 msgid "Additional informations can be submitted in the following way:" -msgstr "" +msgstr "追加情報は以下の方法で送信できます。" #: application/views/simplefle/syntax_help.php:29 msgid "Notes:" -msgstr "" +msgstr "注記:" #: application/views/simplefle/syntax_help.php:33 msgid "Operator Name:" -msgstr "" +msgstr "オペレーター名:" #: application/views/simplefle/syntax_help.php:37 msgid "QSL-message (Caution! Not visible in wavelog currently!):" -msgstr "" +msgstr "QSL メッセージ (注意! 現在 wavelog には表示されません!):" #: application/views/simplefle/syntax_help.php:41 msgid "Contest exchange; serials or other exchange - or even both:" -msgstr "" +msgstr "コンテスト交換、連載またはその他の交換、あるいはその両方:" #: application/views/simplefle/syntax_help.php:48 msgid "" @@ -13322,24 +13529,37 @@ msgid "" "single comma ','. To automatically increment the sent serial, use ',++' and " "give an initial sent exchange. To deactivate, use ',+0':" msgstr "" +"受信した交換メッセージにはドット「.」を、送信した交換メッセージにはカンマ" +"「,」をそれぞれ先頭に付けます。最後の2行は同等です。つまり、スペースの有無は" +"関係なく、順序も関係ありません。送信した交換メッセージは、受信した交換メッ" +"セージが含まれている場合、またはカンマ「,」のみを使用している場合、次のQSOに" +"自動的に含まれます。送信した交換メッセージを自動的に増やすには、「,++」を使用" +"し、最初の送信交換メッセージを指定します。無効にするには、「,+0」を使用しま" +"す。" #: application/views/simplefle/syntax_help.php:54 msgid "" "Here, the first qso uses the set serial 1, and the second will use 2 as the " "serial. If you want to wipe your sent exchange, use ',-':" msgstr "" +"ここで、最初のQSOは設定されたシリアル番号1を使用し、2番目のQSOはシリアル番号2" +"を使用します。送信済みの交換を消去したい場合は、「,-」を使用してください。" #: application/views/simplefle/syntax_help.php:59 msgid "" "First, all previous exchange is wiped, then only a serial is set. Otherwise " "the previous exchange 'D23' would have been set also." msgstr "" +"まず、以前の交換をすべて消去し、シリアル番号のみを設定します。そうしないと、" +"以前の交換「D23」も設定されてしまいます。" #: application/views/simplefle/syntax_help.php:60 msgid "" "You may use the comment syntax, to fill adif-fields supported by the Wavelog-" "Import:" msgstr "" +"Wavelog インポートでサポートされている adif フィールドを入力するには、コメン" +"ト構文を使用できます。" #: application/views/simplefle/syntax_help.php:64 #, php-format @@ -13347,71 +13567,74 @@ msgid "" "A full summary of all commands and the necessary syntax can be found in " "%sthis article%s of our Wiki." msgstr "" +"すべてのコマンドと必要な構文の完全な概要は、当社のWikiの%sthis article%sに記" +"載されています。" #: application/views/station_profile/create.php:55 #: application/views/station_profile/edit.php:71 msgid "Location Name" -msgstr "" +msgstr "場所名" #: application/views/station_profile/create.php:56 #: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:73 msgctxt "Station Location Setup" msgid "Home QTH" -msgstr "" +msgstr "ホームQTH" #: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:73 #, php-format msgid "Shortname for the station location. For example: %s" -msgstr "" +msgstr "ステーションの場所の短縮名。例: %s" #: application/views/station_profile/create.php:63 #: application/views/station_profile/edit.php:79 msgid "Station callsign. For example: 4W7EST/P" -msgstr "" +msgstr "局のコールサイン。例:4W7EST/P" #: application/views/station_profile/create.php:67 #: application/views/station_profile/edit.php:83 msgid "Station Power (W)" -msgstr "" +msgstr "ステーション電力(W)" #: application/views/station_profile/create.php:69 #: application/views/station_profile/edit.php:85 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" +"ステーションのデフォルトの電力(ワット単位)。CAT によって上書きされます。" #: application/views/station_profile/create.php:82 #: application/views/station_profile/edit.php:116 msgid "Station DXCC entity. For example: Bolivia" -msgstr "" +msgstr "局のDXCCエンティティ。例:ボリビア" #: application/views/station_profile/create.php:87 #: application/views/station_profile/edit.php:122 msgid "Station City" -msgstr "" +msgstr "ステーションシティ" #: application/views/station_profile/create.php:89 #: application/views/station_profile/edit.php:124 msgid "Station city. For example: Oslo" -msgstr "" +msgstr "ステーションの都市。例:オスロ" #: application/views/station_profile/create.php:98 #: application/views/station_profile/edit.php:136 msgid "Station state. Applies to certain countries only." -msgstr "" +msgstr "ステーションの状態。特定の国にのみ適用されます。" #: application/views/station_profile/create.php:105 #: application/views/station_profile/edit.php:143 msgid "Station County (Only used for specific DXCCs)." -msgstr "" +msgstr "ステーション郡 (特定の DXCC にのみ使用されます)。" #: application/views/station_profile/create.php:120 #: application/views/station_profile/edit.php:169 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" -msgstr "" +msgstr "CQゾーンが分からない場合は %s で検索してください!" #: application/views/station_profile/create.php:120 #: application/views/station_profile/create.php:134 @@ -13420,25 +13643,25 @@ msgstr "" #: application/views/station_profile/edit.php:186 #: application/views/station_profile/edit.php:210 msgid "click here" -msgstr "" +msgstr "ここをクリック" #: application/views/station_profile/create.php:134 #: application/views/station_profile/edit.php:186 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" -msgstr "" +msgstr "ITUゾーンが分からない場合は %s で検索してください!" #: application/views/station_profile/create.php:139 #: application/views/station_profile/edit.php:198 #: application/views/station_profile/edit.php:201 msgid "Station Gridsquare" -msgstr "" +msgstr "ステーショングリッドスクエア" #: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:206 msgid "Get Gridsquare" -msgstr "" +msgstr "Gridsquareを入手" #: application/views/station_profile/create.php:148 #: application/views/station_profile/edit.php:210 @@ -13448,6 +13671,8 @@ msgid "" "Station gridsquare. For example: HM54AP. If you don't know your grid square " "then %s!" msgstr "" +"ステーションのグリッドスクエア。例:HM54AP。グリッドスクエアがわからない場合" +"は %s !" #: application/views/station_profile/create.php:149 #: application/views/station_profile/edit.php:211 @@ -13455,49 +13680,53 @@ msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" +"グリッドライン上にいる場合は、複数のグリッド線をカンマで区切って入力してくだ" +"さい。例:IO77,IO78,IO87,IO88。" #: application/views/station_profile/create.php:166 #: application/views/station_profile/edit.php:236 msgid "Station IOTA reference. For example: EU-005" -msgstr "" +msgstr "ステーションIOTA参照。例:EU-005" #: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:237 msgid "IOTA World website" -msgstr "" +msgstr "IOTAワールドウェブサイト" #: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:237 #, php-format msgid "You can look up IOTA references at the %s." -msgstr "" +msgstr "IOTAの参照先は、 %s 。" #: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:252 msgid "SOTA Maps website" -msgstr "" +msgstr "SOTAマップのウェブサイト" #: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:252 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" +"ステーションSOTAリファレンス。SOTAリファレンスは以下で確認できます。 %s 。" #: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:265 msgid "GMA Map website" -msgstr "" +msgstr "GMAマップのウェブサイト" #: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:265 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" +"ステーションWWFFリファレンス。WWFFリファレンスは以下で参照できます。 %s 。" #: application/views/station_profile/create.php:185 #: application/views/station_profile/edit.php:278 msgid "POTA Map website" -msgstr "" +msgstr "POTAマップウェブサイト" #: application/views/station_profile/create.php:185 #: application/views/station_profile/edit.php:278 @@ -13506,39 +13735,41 @@ msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " "look up POTA references at the %s." msgstr "" +"ステーションPOTA参照。複数のカンマ区切り値が許可されています。POTA参照は%sで" +"確認できます。" #: application/views/station_profile/create.php:189 msgid "Signature Name" -msgstr "" +msgstr "署名名" #: application/views/station_profile/create.php:191 msgid "Station Special Interest Group Name (e.g. GMA)." -msgstr "" +msgstr "ステーションの特別興味グループ名 (例: GMA)。" #: application/views/station_profile/create.php:195 msgid "Signature Information" -msgstr "" +msgstr "署名情報" #: application/views/station_profile/create.php:197 #: application/views/station_profile/edit.php:299 msgid "Station Special Interest Group Info (e.g. DA/NW-357)." -msgstr "" +msgstr "ステーションの特別興味グループ情報 (例: DA/NW-357)。" #: application/views/station_profile/create.php:201 #: application/views/station_profile/edit.php:312 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" -msgstr "" +msgstr "eQSL QTH ニックネーム" #: application/views/station_profile/create.php:203 #: application/views/station_profile/edit.php:314 msgid "The QTH Nickname which is configured in your eQSL Profile" -msgstr "" +msgstr "eQSLプロファイルで設定されているQTHニックネーム" #: application/views/station_profile/create.php:207 #: application/views/station_profile/edit.php:317 msgid "Default QSLMSG" -msgstr "" +msgstr "デフォルトのQSLMSG" #: application/views/station_profile/create.php:210 #: application/views/station_profile/edit.php:320 @@ -13546,11 +13777,13 @@ msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "" +"このステーションの場所の各 QSO に対して入力され送信されるデフォルトのメッセー" +"ジを定義します。" #: application/views/station_profile/create.php:213 #: application/views/station_profile/edit.php:360 msgid "Ignore Clublog Upload" -msgstr "" +msgstr "Clublogアップロードを無視" #: application/views/station_profile/create.php:218 #: application/views/station_profile/edit.php:365 @@ -13559,200 +13792,210 @@ msgid "" "Clublog. If this is deactivated on it's own please check if the Call is " "properly configured at Clublog" msgstr "" +"有効にすると、この場所から行われたQSOはClublogにアップロードされません。無効" +"になっている場合は、Clublogでコールが正しく設定されているかどうかを確認してく" +"ださい" #: application/views/station_profile/create.php:221 #: application/views/station_profile/edit.php:368 msgid "ClubLog Realtime Upload" -msgstr "" +msgstr "ClubLogリアルタイムアップロード" #: application/views/station_profile/create.php:230 #: application/views/station_profile/edit.php:384 msgid "HRDLog.net Username" -msgstr "" +msgstr "HRDLog.net ユーザー名" #: application/views/station_profile/create.php:232 #: application/views/station_profile/edit.php:386 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." -msgstr "" +msgstr "HRDlog.net に登録されているユーザー名 (通常はコールサイン)。" #: application/views/station_profile/create.php:235 #: application/views/station_profile/edit.php:389 msgid "HRDLog.net API Key" -msgstr "" +msgstr "HRDLog.net APIキー" #: application/views/station_profile/create.php:237 #: application/views/station_profile/edit.php:394 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" -msgstr "" +msgstr "%s で API コードを作成してください" #: application/views/station_profile/create.php:237 #: application/views/station_profile/edit.php:394 msgid "HRDLog.net Userprofile page" -msgstr "" +msgstr "HRDLog.net ユーザープロフィールページ" #: application/views/station_profile/create.php:240 #: application/views/station_profile/edit.php:397 msgid "HRDLog.net Logbook Realtime Upload" -msgstr "" +msgstr "HRDLog.net ログブックのリアルタイムアップロード" #: application/views/station_profile/create.php:250 #: application/views/station_profile/edit.php:328 msgid "Subscription Required" -msgstr "" +msgstr "サブスクリプションが必要です" #: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" -msgstr "" +msgstr "QRZ.com ログブック API キー" #: application/views/station_profile/create.php:258 msgid "Test API-Key" -msgstr "" +msgstr "テストAPIキー" #: application/views/station_profile/create.php:261 #: application/views/station_profile/edit.php:338 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" -msgstr "" +msgstr "%s で API キーを確認してください" #: application/views/station_profile/create.php:261 #: application/views/station_profile/edit.php:338 msgid "the QRZ.com Logbook settings page" -msgstr "" +msgstr "QRZ.com ログブック設定ページ" #: application/views/station_profile/create.php:264 #: application/views/station_profile/edit.php:342 msgid "QRZ.com Logbook Upload" -msgstr "" +msgstr "QRZ.com ログブックアップロード" #: application/views/station_profile/create.php:267 #: application/views/station_profile/edit.php:345 msgid "Realtime" -msgstr "" +msgstr "リアルタイム" #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:414 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" -msgstr "" +msgstr "QO-100 DxクラブAPIキー" #: application/views/station_profile/create.php:277 #: application/views/station_profile/edit.php:419 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" -msgstr "" +msgstr "%s で API キーを作成してください" #: application/views/station_profile/create.php:277 #: application/views/station_profile/edit.php:419 msgid "QO-100 Dx Club's profile page" -msgstr "" +msgstr "QO-100 Dx Clubのプロフィールページ" #: application/views/station_profile/create.php:280 #: application/views/station_profile/edit.php:422 msgid "QO-100 Dx Club Realtime Upload" -msgstr "" +msgstr "QO-100 Dxクラブ リアルタイムアップロード" #: application/views/station_profile/create.php:290 #: application/views/station_profile/edit.php:440 msgid "OQRS Enabled" -msgstr "" +msgstr "OQRS 有効" #: application/views/station_profile/create.php:297 #: application/views/station_profile/edit.php:447 msgid "OQRS Email alert" -msgstr "" +msgstr "OQRS メールアラート" #: application/views/station_profile/create.php:302 #: application/views/station_profile/edit.php:452 msgid "Make sure email is set up under admin and global options." msgstr "" +"管理者およびグローバル オプションで電子メールが設定されていることを確認しま" +"す。" #: application/views/station_profile/create.php:305 #: application/views/station_profile/edit.php:455 msgid "OQRS Text" -msgstr "" +msgstr "OQRSテキスト" #: application/views/station_profile/create.php:307 #: application/views/station_profile/edit.php:457 msgid "Some info you want to add regarding QSL'ing." -msgstr "" +msgstr "QSL に関して追加したい情報。" #: application/views/station_profile/edit.php:153 msgid "Zones" -msgstr "" +msgstr "ゾーン" #: application/views/station_profile/edit.php:291 msgid "Special Interest Group Name" -msgstr "" +msgstr "特別関心グループ(SIG)名" #: application/views/station_profile/edit.php:293 msgid "Station Special Interest Group Name (e.g. GMA).." -msgstr "" +msgstr "ステーションの特別関心グループ(SIG)名(例:GMA).." #: application/views/station_profile/edit.php:297 msgid "Special Interest Group Information" -msgstr "" +msgstr "特別関心グループ(SIG)情報" + +#: application/views/station_profile/edit.php:309 +#, php-format +msgid "Trouble? Check the %swiki%s." +msgstr "問題が発生しましたか?%swiki%sを確認してください。" #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" -msgstr "" +msgstr "ステーションログブック名" #: application/views/stationsetup/create.php:19 msgid "You can call a station logbook anything." -msgstr "" +msgstr "ステーションログブックは、好きな名前で呼ぶことができます。" #: application/views/stationsetup/edit.php:18 msgid "Container name" -msgstr "" +msgstr "コンテナ名" #: application/views/stationsetup/edit.php:20 msgid "You can call a container anything." -msgstr "" +msgstr "コンテナには任意の名前を付けることができます。" #: application/views/stationsetup/exportmapoptions.php:11 msgctxt "Map Options" msgid "CQ Zone overlay" -msgstr "" +msgstr "CQゾーンオーバーレイ" #: application/views/stationsetup/exportmapoptions.php:15 msgctxt "Map Options" msgid "Gridsquare overlay" -msgstr "" +msgstr "グリッドスクエアオーバーレイ" #: application/views/stationsetup/exportmapoptions.php:19 msgctxt "Map Options" msgid "Night shadow overlay" -msgstr "" +msgstr "夜の影の重ね合わせ" #: application/views/stationsetup/exportmapoptions.php:27 msgid "# QSOs shown" -msgstr "" +msgstr "表示されるQSO数" #: application/views/stationsetup/exportmapoptions.php:46 msgid "Visit export map" -msgstr "" +msgstr "エクスポート 地図を表示する" #: application/views/stationsetup/linkedlocations.php:13 msgid "Select Available Station Locations" -msgstr "" +msgstr "利用可能なステーションの場所を選択" #: application/views/stationsetup/linkedlocations.php:25 msgid "Link Location" -msgstr "" +msgstr "リンクの場所" #: application/views/stationsetup/linkedlocations.php:31 #: application/views/stationsetup/stationsetup.php:125 msgid "Profile Name" -msgstr "" +msgstr "プロフィール名" #: application/views/stationsetup/linkedlocations.php:34 msgid "Unlink Station Location" -msgstr "" +msgstr "ステーションの場所のリンクを解除" #: application/views/stationsetup/stationsetup.php:24 msgid "" @@ -13761,191 +14004,207 @@ msgid "" "analytics. Great for when your operating in multiple locations but they are " "part of the same DXCC or VUCC Circle." msgstr "" +"ステーションログブックを使用すると、ステーションのロケーションをグループ化で" +"きます。これにより、ログブックエリアからアナリティクスまで、1回のセッションで" +"すべてのロケーションを確認できます。複数のロケーションで運用しているが、それ" +"らが同じDXCCまたはVUCCサークルの一部である場合に最適です。" #: application/views/stationsetup/stationsetup.php:35 msgid "Linked locations" -msgstr "" +msgstr "リンクされた場所" #: application/views/stationsetup/stationsetup.php:37 msgid "Visitor site" -msgstr "" +msgstr "訪問者サイト" #: application/views/stationsetup/stationsetup.php:94 msgid "Station Locations" -msgstr "" +msgstr "ステーションの場所" #: application/views/stationsetup/stationsetup.php:98 msgid "" "Station Locations define operating locations, such as your QTH, a friends " "QTH, or a portable station." msgstr "" +"ステーションの場所は、自分の QTH、友人の QTH、ポータブル ステーションなどの運" +"用場所を定義します。" #: application/views/stationsetup/stationsetup.php:99 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "" +"ログブックと同様に、ステーション プロファイルには一連の QSO がまとめられてい" +"ます。" #: application/views/stationsetup/stationsetup.php:100 msgid "" "Only one station may be active at a time. In the table below this is shown " "with the -Active Station- badge." msgstr "" +"一度にアクティブにできるステーションは1つだけです。下の表では、「アクティブス" +"テーション」バッジで表示されています。" #: application/views/stationsetup/stationsetup.php:101 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." msgstr "" +"「リンク」列には、ステーションの場所が上で選択したアクティブ ログブックにリン" +"クされているかどうかが表示されます。" #: application/views/stationsetup/stationsetup.php:104 msgid "Create a Station Location" -msgstr "" +msgstr "ステーションの場所を作成する" #: application/views/stationsetup/stationsetup.php:104 msgid "Show all locations" -msgstr "" +msgstr "すべての場所を表示" #: application/views/stationsetup/stationsetup.php:104 msgid "Show only locations from the active logbook" -msgstr "" +msgstr "アクティブなログブックの場所のみを表示する" #: application/views/stationsetup/stationsetup.php:108 msgid "" "Attention: You need to set an active station location. Go to Callsign-" ">Station Location to select one." msgstr "" +"注意:アクティブな局の位置を設定する必要があります。コールサイン > 局の位置か" +"ら選択してください。" #: application/views/stationsetup/stationsetup.php:114 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." msgstr "" +"Wavelog 内の最近の変更により、QSO をステーション プロファイルに再割り当てする" +"必要があります。" #: application/views/stationsetup/stationsetup.php:116 msgid "Maintenance" -msgstr "" +msgstr "メンテナンス" #: application/views/stationsetup/stationsetup.php:116 msgid "Please reassign them at " -msgstr "" - -#: application/views/stationsetup/stationsetup.php:129 -msgid "Last QSO" -msgstr "" +msgstr "再割り当てしてください " #: application/views/stationsetup/stationsetup.php:131 msgid "Linked" -msgstr "" +msgstr "リンク" #: application/views/stationsetup/stationsetup.php:138 msgid "Favorite" -msgstr "" +msgstr "お気に入り" #: application/views/stationsetup/stationsetup.php:185 msgid "mark/unmark as favorite" -msgstr "" +msgstr "お気に入りとしてマーク/マーク解除" #: application/views/stationsetup/visitor.php:2 msgid "" "Setting a public slug allows you to share your logbook with anyone via a " "custom website address, this slug can contain letters & numbers only." msgstr "" +"パブリック スラッグを設定すると、カスタム Web サイト アドレスを介してログブッ" +"クを他のユーザーと共有できるようになります。このスラッグには文字と数字のみを" +"含めることができます。" #: application/views/stationsetup/visitor.php:3 msgid "Later it looks like this:" -msgstr "" +msgstr "後は以下のようになります。" #: application/views/stationsetup/visitor.php:4 msgid "[your slug]" -msgstr "" +msgstr "[あなたのスラッグ]" #: application/views/stationsetup/visitor.php:10 msgid "Type in Public Slug choice" -msgstr "" +msgstr "パブリックスラッグの選択肢を入力" #: application/views/stationsetup/visitor.php:17 msgid "Visit Public Page" -msgstr "" +msgstr "公開ページにアクセス" #: application/views/statistics/antennaanalytics.php:11 msgid "Elevation" -msgstr "" +msgstr "高さ" #: application/views/statistics/index.php:14 #: application/views/statistics/index.php:61 msgid "Years" -msgstr "" +msgstr "年" #: application/views/statistics/index.php:18 msgid "Number of QSOs worked each year" -msgstr "" +msgstr "年間QSO数" #: application/views/statistics/index.php:31 msgid "Explore the logbook." -msgstr "" +msgstr "ログブックを調べてください。" #: application/views/statistics/index.php:35 #: application/views/timeline/index.php:111 msgid "All Years" -msgstr "" +msgstr "すべての年" #: application/views/statistics/index.php:76 #: application/views/statistics/index.php:117 msgid "Unique callsigns" -msgstr "" +msgstr "ユニークなコールサイン" #: application/views/statistics/index.php:120 msgid "Unique Grids" -msgstr "" +msgstr "ユニークなグリッド" #: application/views/statistics/initialresult.php:42 #: application/views/statistics/initials.php:36 msgid "No EME QSOs were found." -msgstr "" +msgstr "EME QSOは見つかりませんでした。" #: application/views/themes/add.php:4 application/views/themes/edit.php:4 msgid "Theme Name" -msgstr "" +msgstr "テーマ名" #: application/views/themes/add.php:6 application/views/themes/edit.php:6 msgid "This is the name that is used to display the theme in the theme list." -msgstr "" +msgstr "これは、テーマ リストでテーマを表示するために使用される名前です。" #: application/views/themes/add.php:10 application/views/themes/edit.php:10 msgid "Folder Name" -msgstr "" +msgstr "フォルダ名" #: application/views/themes/add.php:12 application/views/themes/edit.php:12 msgid "" "This is the name of the folder where your CSS-files are placed under assets/" "css." msgstr "" +"これは、assets/css の下に CSS ファイルが配置されるフォルダーの名前です。" #: application/views/themes/add.php:16 application/views/themes/edit.php:16 #: application/views/themes/index.php:84 msgid "Theme Mode" -msgstr "" +msgstr "テーマモード" #: application/views/themes/add.php:18 application/views/themes/edit.php:18 msgid "Light" -msgstr "" +msgstr "ライト" #: application/views/themes/add.php:19 application/views/themes/edit.php:19 msgid "Dark" -msgstr "" +msgstr "暗い" #: application/views/themes/add.php:21 msgid "This defines wherever the theme is a light or a dark one." -msgstr "" +msgstr "これにより、テーマが明るいか暗いかが定義されます。" #: application/views/themes/add.php:25 application/views/themes/edit.php:25 #: application/views/themes/index.php:85 msgid "Header Logo" -msgstr "" +msgstr "ヘッダーロゴ" #: application/views/themes/add.php:27 application/views/themes/add.php:33 #: application/views/themes/edit.php:27 application/views/themes/edit.php:33 msgid "Only PNG files with a size ratio of 1:1 are allowed." -msgstr "" +msgstr "サイズ比が 1:1 の PNG ファイルのみが許可されます。" #: application/views/themes/add.php:27 application/views/themes/edit.php:27 #, php-format @@ -13953,11 +14212,13 @@ msgid "" "This is the name of the file which is used as %s small %s Logo in the header " "placed in assets/logo." msgstr "" +"これは、assets/logo ディレクトリに配置されたヘッダーに表示される %s 小さな " +"%s ロゴとして使用されるファイルの名前です。" #: application/views/themes/add.php:31 application/views/themes/edit.php:31 #: application/views/themes/index.php:86 msgid "Main Logo" -msgstr "" +msgstr "メインロゴ" #: application/views/themes/add.php:33 application/views/themes/edit.php:33 #, php-format @@ -13965,24 +14226,28 @@ msgid "" "This is the name of the file which is used as %s big %s Logo in the login " "screen placed in assets/logo." msgstr "" +"これは、ログイン画面に配置された%s big %s ロゴとして使用されるファイルの名前" +"で、assets/logo ディレクトリ内に格納されています。" #: application/views/themes/add.php:36 msgid "Add theme" -msgstr "" +msgstr "テーマを追加" #: application/views/themes/edit.php:21 msgid "" "This defines wherever the theme is a light or a dark one. On this basis the " "Logo is chosen." msgstr "" +"テーマが明るいか暗いかは、この基準に基づいて決定されます。これに基づいてロゴ" +"が選択されます。" #: application/views/themes/edit.php:36 msgid "Update theme" -msgstr "" +msgstr "テーマを更新" #: application/views/themes/index.php:22 msgid "Themes list" -msgstr "" +msgstr "テーマリスト" #: application/views/themes/index.php:28 msgid "" @@ -13990,18 +14255,21 @@ msgid "" "theme is not really straightforward and should only be done by an admin who " "is aware of their actions." msgstr "" +"このメニューでは、Wavelog にテーマを追加したり編集したりできます。テーマの追" +"加プロセスはそれほど複雑ではないため、操作方法を理解している管理者のみが行う" +"必要があります。" #: application/views/themes/index.php:29 msgid "Also, it has to be said that this feature is still under development." -msgstr "" +msgstr "また、この機能はまだ開発中であると言わざるを得ません。" #: application/views/themes/index.php:35 msgid "Process of adding a new theme" -msgstr "" +msgstr "新しいテーマを追加するプロセス" #: application/views/themes/index.php:41 msgid "1. Step" -msgstr "" +msgstr "1. ステップ" #: application/views/themes/index.php:44 #, php-format @@ -14009,40 +14277,49 @@ msgid "" "Create a new folder in 'assets/css/' and upload a 'bootstrap.min.css' file " "which contains basic styling rules. We use the themes from %s" msgstr "" +"『assets/css/』 ディレクトリに新しいフォルダーを作成し、基本的なスタイルルー" +"ルを含む 『bootstrap.min.css』 ファイルをアップロードします。%s のテーマを使" +"用しています" #: application/views/themes/index.php:50 msgid "2. Step" -msgstr "" +msgstr "2. ステップ" #: application/views/themes/index.php:53 msgid "" "Create a file in this folder called 'overrides.css'. Place your custom CSS " "code in there." msgstr "" +"このフォルダに「overrides.css」というファイルを作成し、そこにカスタムCSSコー" +"ドを配置します。" #: application/views/themes/index.php:59 msgid "3. Step" -msgstr "" +msgstr "3. ステップ" #: application/views/themes/index.php:62 msgid "" "For each new theme, you need two logo files. One for the login screen and " "one for the header." msgstr "" +"新しいテーマごとに、2つのロゴファイルが必要です。1つはログイン画面用、もう1つ" +"はヘッダー用です。" #: application/views/themes/index.php:63 msgid "" "Only PNG files are allowed, and they should have a pixel ratio of 1:1 (e.g., " "1000px height and 1000px width)." msgstr "" +"許可されるのは PNG ファイルのみで、ピクセル比は 1:1 (例: 高さ 1000 ピクセル、" +"幅 1000 ピクセル) である必要があります。" #: application/views/themes/index.php:64 msgid "Place the two logo files in the folder 'assets/logo/'" -msgstr "" +msgstr "2つのロゴファイルを「assets/logo/」フォルダに配置します" #: application/views/themes/index.php:70 msgid "4. Step" -msgstr "" +msgstr "4. ステップ" #: application/views/themes/index.php:73 #, php-format @@ -14050,82 +14327,88 @@ msgid "" "Click here on 'Add a Theme' and type in the necessary data. Type in the " "filenames for the logos %swithout%s the file extension '.png'" msgstr "" +"「テーマを追加」をクリックし、必要なデータを入力してください。ロゴのファイル" +"名を入力する際は、%swithout%s ファイル拡張子「.png」を省略しないでください" #: application/views/themes/index.php:83 msgid "Foldername" -msgstr "" +msgstr "フォルダ名" #: application/views/themes/index.php:99 msgid "Please edit" -msgstr "" +msgstr "編集してください" #: application/views/themes/index.php:116 msgid "Add a Theme" -msgstr "" +msgstr "テーマを追加する" #: application/views/timeline/index.php:119 msgid "Only new in selected year" -msgstr "" +msgstr "選択した年のみの新着" #: application/views/timeplotter/index.php:2 msgid "contacts were plotted" -msgstr "" +msgstr "接触がプロットされた" #: application/views/timeplotter/index.php:3 msgid "Time Distribution" -msgstr "" +msgstr "時間配分" #: application/views/timeplotter/index.php:6 msgid "Callsign(s) worked (max 5)" -msgstr "" +msgstr "有効なコールサイン(最大5つ)" #: application/views/timeplotter/index.php:10 msgid "" "The Timeplotter is used to analyze your logbook and find out at what times " "you worked certain CQ zones or DXCC countries on a selected band." msgstr "" +"タイムプロッターは、ログブックを分析し、選択したバンドで特定の CQ ゾーンまた" +"は DXCC 国と交信した時間を確認するために使用されます。" #: application/views/update/hamsofnote.php:7 msgid "Name / Description" -msgstr "" +msgstr "名前 / 説明" #: application/views/update/index.php:8 msgid "DXCC Lookup Data" -msgstr "" +msgstr "DXCCルックアップデータ" #: application/views/update/index.php:12 msgid "Distance Data" -msgstr "" +msgstr "距離データ" #: application/views/update/index.php:19 msgid "" "Here you can update the DXCC lookup data that is used for displaying " "callsign information." msgstr "" +"ここでは、コールサイン情報を表示するために使用される DXCC ルックアップデータ" +"を更新できます。" #: application/views/update/index.php:20 msgid "This data is provided by" -msgstr "" +msgstr "このデータは以下から提供されています" #: application/views/update/index.php:24 msgid "You must install php-xml for this to work." -msgstr "" +msgstr "これを機能させるには、php-xml をインストールする必要があります。" #: application/views/update/index.php:27 msgid "Check for DXCC Data Updates" -msgstr "" +msgstr "DXCCデータの更新を確認する" #: application/views/update/index.php:28 msgid "Update DXCC Data" -msgstr "" +msgstr "DXCCデータの更新" #: application/views/update/index.php:30 msgid "Status:" -msgstr "" +msgstr "状態:" #: application/views/update/index.php:34 msgid "Apply DXCC Data to Logbook" -msgstr "" +msgstr "DXCCデータをログブックに適用する" #: application/views/update/index.php:36 msgid "" @@ -14135,36 +14418,43 @@ msgid "" "missing DXCC metadata or to re-check the entire logbook\n" "\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." msgstr "" +"アップデート後、Wavelog は新しく取得した DXCC データを使用して、ログブック内" +"の欠落しているコールサイン情報を入力できるようになります。\n" +"\t\t\t\t\t\t\tログブック内のDXCCメタデータが欠落しているQSOだけをチェックする" +"か、ログブック全体を再チェックするかを選択できます。\n" +"\t\t\t\t\t\t\t変更があった場合には、既存のメタデータも更新します。" #: application/views/update/index.php:45 msgid "Check QSOs missing DXCC data" -msgstr "" +msgstr "DXCCデータが欠落しているQSOを確認する" #: application/views/update/index.php:54 application/views/update/index.php:95 msgid "Re-check all QSOs in logbook" -msgstr "" +msgstr "ログブックのすべてのQSOを再確認する" #: application/views/update/index.php:59 msgid "Apply Continent Data to Logbook" -msgstr "" +msgstr "大陸データをログブックに適用する" #: application/views/update/index.php:61 msgid "" "This function can be used to update QSO continent information for all QSOs " "in Wavelog missing that information." msgstr "" +"この機能は、Wavelog でその情報が欠落しているすべての QSO の QSO 大陸情報を更" +"新するために使用できます。" #: application/views/update/index.php:68 msgid "Check QSOs missing continent data" -msgstr "" +msgstr "大陸データが欠落しているQSOを確認する" #: application/views/update/index.php:80 msgid "Here you can update QSOs with missing distance information." -msgstr "" +msgstr "ここで、距離情報が不足している QSO を更新できます。" #: application/views/update/index.php:86 msgid "Update distance data" -msgstr "" +msgstr "距離データを更新する" #: application/views/update/index.php:89 msgid "" @@ -14172,38 +14462,40 @@ msgid "" "QSOs. Depending on the number of QSOs this might take some time to execute. " "Please be patient." msgstr "" +"以下のボタンをクリックすると、すべてのQSOの距離情報を更新できます。QSO数に" +"よっては、処理に時間がかかる場合がありますので、しばらくお待ちください。" #: application/views/user/delete.php:5 msgid "Delete User Account" -msgstr "" +msgstr "ユーザーアカウントの削除" #: application/views/user/delete.php:10 msgid "Are you sure you want to delete the user account" -msgstr "" +msgstr "ユーザーアカウントを削除してもよろしいですか" #: application/views/user/delete.php:14 msgid "No, do not delete this user" -msgstr "" +msgstr "いいえ、このユーザーを削除しません" #: application/views/user/delete.php:14 msgid "Yes, delete this user" -msgstr "" +msgstr "はい、このユーザーを削除します" #: application/views/user/edit.php:6 msgid "Create Clubstation Account" -msgstr "" +msgstr "Clubstationアカウントを作成する" #: application/views/user/edit.php:8 msgid "Create User Account" -msgstr "" +msgstr "ユーザーアカウントを作成する" #: application/views/user/edit.php:11 msgid "Edit Account" -msgstr "" +msgstr "アカウントを編集" #: application/views/user/edit.php:45 msgid "General Information" -msgstr "" +msgstr "一般情報" #: application/views/user/edit.php:68 application/views/user/login.php:59 #: application/views/user/login.php:73 application/views/user/login.php:74 @@ -14215,19 +14507,19 @@ msgstr "パスワード" #: application/views/user/edit.php:74 msgid "Don't share this password with operators!" -msgstr "" +msgstr "このパスワードをオペレーターと共有しないでください!" #: application/views/user/edit.php:84 msgid "User Role" -msgstr "" +msgstr "ユーザーの役割" #: application/views/user/edit.php:113 msgid "Callsign Owner" -msgstr "" +msgstr "コールサイン所有者" #: application/views/user/edit.php:113 msgid "Personal" -msgstr "" +msgstr "個人的" #: application/views/user/edit.php:116 msgid "First Name" @@ -14239,27 +14531,27 @@ msgstr "苗字" #: application/views/user/edit.php:134 msgid "Ham Radio" -msgstr "" +msgstr "アマチュア無線家" #: application/views/user/edit.php:137 msgid "Special/Club Callsign" -msgstr "" +msgstr "スペシャル/クラブコールサイン" #: application/views/user/edit.php:160 msgid "Wavelog Preferences" -msgstr "" +msgstr "Wavelogの設定" #: application/views/user/edit.php:171 msgid "Stylesheet" -msgstr "" +msgstr "スタイルシート" #: application/views/user/edit.php:183 msgid "Wavelog Language" -msgstr "" +msgstr "Wavelog言語" #: application/views/user/edit.php:190 msgid "Choose Wavelog language." -msgstr "" +msgstr "Wavelog 言語を選択してください。" #: application/views/user/edit.php:193 msgid "Timezone" @@ -14267,92 +14559,97 @@ msgstr "タイムゾーン" #: application/views/user/edit.php:201 msgid "Date Format" -msgstr "" +msgstr "日付形式" #: application/views/user/edit.php:214 msgid "Select how you would like dates shown when logged into your account." -msgstr "" +msgstr "アカウントにログインしたときに日付をどのように表示するかを選択します。" #: application/views/user/edit.php:218 msgid "Measurement preference" -msgstr "" +msgstr "測定方法の選択" #: application/views/user/edit.php:222 msgid "Kilometers" -msgstr "" +msgstr "キロメートル" #: application/views/user/edit.php:223 msgid "Miles" -msgstr "" +msgstr "マイルズ" #: application/views/user/edit.php:224 msgid "Nautical miles" -msgstr "" +msgstr "海里" #: application/views/user/edit.php:226 msgid "Choose which unit distances will be shown in" -msgstr "" +msgstr "表示される距離の単位を選択してください" #: application/views/user/edit.php:235 msgid "Logbook fields" -msgstr "" +msgstr "ログブックフィールド" #: application/views/user/edit.php:238 msgid "Choose column 1" -msgstr "" +msgstr "列1を選択" #: application/views/user/edit.php:261 msgid "Choose column 2" -msgstr "" +msgstr "列2を選択" #: application/views/user/edit.php:284 msgid "Choose column 3" -msgstr "" +msgstr "列3を選択" #: application/views/user/edit.php:307 msgid "Choose column 4" -msgstr "" +msgstr "列4を選択" #: application/views/user/edit.php:330 msgid "Choose column 5 (only for logbook)" -msgstr "" +msgstr "列5を選択(ログブックのみ)" #: application/views/user/edit.php:361 msgid "QSO Logging Options" -msgstr "" +msgstr "QSOログオプション" #: application/views/user/edit.php:364 msgid "Log End Times for QSOs Separately" -msgstr "" +msgstr "QSOの終了時間を個別に記録する" #: application/views/user/edit.php:370 msgid "" "Choose yes here if you want to log QSO start and end times separately. If " "set to 'No' the end time will be the same as start time." msgstr "" +"QSOの開始時間と終了時間を別々に記録する場合は、「はい」を選択してください。" +"「いいえ」を選択した場合、終了時間は開始時間と同じになります。" #: application/views/user/edit.php:375 msgid "" "Show profile picture of QSO partner from qrz.com/hamqth.com profile in the " "log QSO section." msgstr "" +"ログ QSO セクションに qrz.com/hamqth.com プロフィールから QSO パートナーのプ" +"ロフィール写真を表示します。" #: application/views/user/edit.php:381 msgid "" "Please set your qrz.com/hamqth.com credentials in the general config file." -msgstr "" +msgstr "一般設定ファイルで qrz.com/hamqth.com の資格情報を設定してください。" #: application/views/user/edit.php:386 msgid "Location auto lookup." -msgstr "" +msgstr "場所の自動検索。" #: application/views/user/edit.php:392 msgid "If set, gridsquare is fetched based on location name." msgstr "" +"設定されている場合、場所の名前に基づいてグリッドスクエアが取得されます。" #: application/views/user/edit.php:396 msgid "SOTA auto lookup gridsquare and name for summit." -msgstr "" +msgstr "SOTA は、山頂のグリッド スクエアと名前を自動検索します。" #: application/views/user/edit.php:402 application/views/user/edit.php:412 #: application/views/user/edit.php:422 @@ -14360,259 +14657,279 @@ msgid "" "If set, name and gridsquare is fetched from the API and filled in location " "and locator." msgstr "" +"設定されている場合、名前とグリッドスクエアが API から取得され、場所とロケータ" +"が入力されます。" #: application/views/user/edit.php:406 msgid "WWFF auto lookup gridsquare and name for reference." -msgstr "" +msgstr "参照用の WWFF 自動検索グリッド スクエアと名前。" #: application/views/user/edit.php:416 msgid "POTA auto lookup gridsquare and name for park." -msgstr "" +msgstr "POTA は公園のグリッドスクエアと名前を自動検索します。" #: application/views/user/edit.php:425 msgid "Number of previous contacts displayed on QSO page." -msgstr "" +msgstr "QSO ページに表示される以前のコンタクトの数。" #: application/views/user/edit.php:442 msgid "Menu Options" -msgstr "" +msgstr "メニューオプション" #: application/views/user/edit.php:445 msgid "Show notes in the main menu." -msgstr "" +msgstr "メインメニューにメモを表示します。" #: application/views/user/edit.php:456 msgid "Quicklog Field" -msgstr "" +msgstr "クイックログフィールド" #: application/views/user/edit.php:462 msgid "" "With this feature, you can log callsigns using the search field in the " "header." msgstr "" +"この機能を使用すると、ヘッダーの検索フィールドを使用してコールサインを記録で" +"きます。" #: application/views/user/edit.php:466 msgid "Quicklog - Action on press Enter" -msgstr "" +msgstr "クイックログ - Enter キーを押したときのアクション" #: application/views/user/edit.php:470 msgid "Log Callsign" -msgstr "" +msgstr "コールサインをログに記録" #: application/views/user/edit.php:472 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" msgstr "" +"クイックログ フィールドで Enter キーが押されたときに実行するアクションは何で" +"すか?" #: application/views/user/edit.php:478 msgid "Station Locations Quickswitch" -msgstr "" +msgstr "ステーションの場所クイックスイッチ" #: application/views/user/edit.php:483 -msgid "Show the Station Locations Quickswitch in the main menu" +msgid "" +"Show the Station Locations Quickswitch in the main menu. You can add " +"locations by adding them to favourites at the station setup page." msgstr "" +"メインメニューにステーションの場所のクイックスイッチを表示します。ステーショ" +"ン設定ページでお気に入りに追加することで、場所を追加できます。" #: application/views/user/edit.php:487 msgid "UTC Time in Menu" -msgstr "" +msgstr "メニュー内のUTC時間" #: application/views/user/edit.php:492 msgid "Show the current UTC Time in the menu" -msgstr "" +msgstr "メニューに現在のUTC時間を表示する" #: application/views/user/edit.php:503 msgid "Map Settings" -msgstr "" +msgstr "マップ設定" #: application/views/user/edit.php:510 msgid "Icon" -msgstr "" +msgstr "アイコン" #: application/views/user/edit.php:513 msgid "Not display" -msgstr "" +msgstr "表示されない" #: application/views/user/edit.php:517 msgid "Not displayed" -msgstr "" +msgstr "表示されない" #: application/views/user/edit.php:526 msgid "QSO (by default)" -msgstr "" +msgstr "QSO(デフォルト)" #: application/views/user/edit.php:545 msgid "QSO (confirmed)" -msgstr "" +msgstr "QSO(確認済み)" #: application/views/user/edit.php:546 msgid "(If 'No', displayed as 'QSO (by default))'" -msgstr "" +msgstr "(もし「いいえ」の場合、デフォルトで「QSO」と表示されます)" #: application/views/user/edit.php:565 msgid "Show Locator" -msgstr "" +msgstr "ロケーターを表示" #: application/views/user/edit.php:584 msgid "Previous QSL Type" -msgstr "" +msgstr "以前のQSLタイプ" #: application/views/user/edit.php:588 msgid "Select the type of QSL to show in the previous QSOs section." -msgstr "" +msgstr "以前の QSO セクションに表示する QSL の種類を選択します。" #: application/views/user/edit.php:604 msgid "Dashboard Settings" -msgstr "" +msgstr "ダッシュボード設定" #: application/views/user/edit.php:608 msgid "Select the number of latest QSOs to be displayed on dashboard." -msgstr "" +msgstr "ダッシュボードに表示する最新の QSO の数を選択します。" #: application/views/user/edit.php:615 msgid "Choose the number of latest QSOs to be displayed on dashboard." -msgstr "" +msgstr "ダッシュボードに表示する最新の QSO の数を選択します。" #: application/views/user/edit.php:619 msgid "Show Dashboard Map" -msgstr "" +msgstr "ダッシュボードマップを表示" #: application/views/user/edit.php:623 msgid "Map at right" -msgstr "" +msgstr "右の地図" #: application/views/user/edit.php:626 msgid "Choose whether to show map on dashboard or not" -msgstr "" +msgstr "ダッシュボードにマップを表示するかどうかを選択します" #: application/views/user/edit.php:630 msgid "Dashboard Notification Banner" -msgstr "" +msgstr "ダッシュボード通知バナー" #: application/views/user/edit.php:636 msgid "This allows to disable the global notification banner on the dashboard." msgstr "" +"これにより、ダッシュボード上のグローバル通知バナーを無効にすることができま" +"す。" #: application/views/user/edit.php:644 msgid "Show Reference Fields on QSO Tab" -msgstr "" +msgstr "QSOタブに参照フィールドを表示する" #: application/views/user/edit.php:648 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." -msgstr "" +msgstr "有効になっている項目は、[全般] タブではなく [QSO] タブに表示されます。" #: application/views/user/edit.php:686 msgid "Online QSL request (OQRS) settings" -msgstr "" +msgstr "オンラインQSLリクエスト(OQRS)設定" #: application/views/user/edit.php:690 msgid "Global text" -msgstr "" +msgstr "グローバルテキスト" #: application/views/user/edit.php:692 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" +"このテキストは、OQRS ページの上部に表示できるオプションのテキストです。" #: application/views/user/edit.php:695 msgid "Grouped search" -msgstr "" +msgstr "グループ検索" #: application/views/user/edit.php:697 application/views/user/edit.php:706 #: application/views/user/edit.php:715 application/views/user/edit.php:724 msgid "Off" -msgstr "" +msgstr "オフ" #: application/views/user/edit.php:698 application/views/user/edit.php:707 #: application/views/user/edit.php:716 application/views/user/edit.php:725 msgid "On" -msgstr "" +msgstr "オン" #: application/views/user/edit.php:700 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" +"これをオンにすると、OQRS がアクティブなすべてのステーションの場所が一度に検索" +"されます。" #: application/views/user/edit.php:704 msgid "Show station location name in grouped search results" -msgstr "" +msgstr "グループ化された検索結果に駅の場所名を表示する" #: application/views/user/edit.php:709 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" +"グループ検索がオンの場合、結果テーブルに駅の場所の名前を表示するかどうかを決" +"定できます。" #: application/views/user/edit.php:713 msgid "Automatic OQRS matching" -msgstr "" +msgstr "自動OQRSマッチング" #: application/views/user/edit.php:718 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" +"これがオンの場合、自動 OQRS マッチングが行われ、システムは受信したリクエスト" +"を既存のログと自動的にマッチングしようとします。" #: application/views/user/edit.php:722 msgid "Automatic OQRS matching for direct requests" -msgstr "" +msgstr "直接リクエストの自動OQRSマッチング" #: application/views/user/edit.php:727 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" +"これがオンの場合、直接リクエストに対する自動 OQRS マッチングが行われます。" #: application/views/user/edit.php:743 msgid "Default Values" -msgstr "" +msgstr "デフォルト値" #: application/views/user/edit.php:751 msgid "Settings for Default Band and Confirmation" -msgstr "" +msgstr "デフォルトバンドと確認の設定" #: application/views/user/edit.php:754 msgid "Default Band" -msgstr "" +msgstr "デフォルトバンド" #: application/views/user/edit.php:764 msgid "Default QSL-Methods" -msgstr "" +msgstr "デフォルトのQSL方法" #: application/views/user/edit.php:821 msgid "Third Party Services" -msgstr "" +msgstr "サードパーティのサービス" #: application/views/user/edit.php:832 msgid "Logbook of The World (LoTW) Username" -msgstr "" +msgstr "Logbook of The World (LoTW) ユーザー名" #: application/views/user/edit.php:838 msgid "Logbook of The World (LoTW) Password" -msgstr "" +msgstr "ログブック・オブ・ザ・ワールド(LoTW)のパスワード" #: application/views/user/edit.php:842 msgid "Test Login" -msgstr "" +msgstr "テストログイン" #: application/views/user/edit.php:860 msgid "eQSL.cc Username" -msgstr "" +msgstr "eQSL.cc ユーザー名" #: application/views/user/edit.php:866 msgid "eQSL.cc Password" -msgstr "" +msgstr "eQSL.cc パスワード" #: application/views/user/edit.php:883 msgid "Club Log" -msgstr "" +msgstr "Club Log" #: application/views/user/edit.php:886 msgid "Club Log Email/Callsign" -msgstr "" +msgstr "Club Logのメールアドレス/コールサイン" #: application/views/user/edit.php:892 msgid "Club Log Password" -msgstr "" +msgstr "Club Log パスワード" #: application/views/user/edit.php:897 #, php-format @@ -14620,43 +14937,49 @@ msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" +"Clublogで2FAを有効にしている場合、WavelogでClublogを使用するにはアプリパス" +"ワードを生成する必要があります。その場合は、%syour clublog settings page%s に" +"アクセスしてください。" #: application/views/user/edit.php:914 msgid "Widgets" -msgstr "" +msgstr "ウィジェット" #: application/views/user/edit.php:922 msgid "On-Air widget" -msgstr "" +msgstr "オンエアウィジェット" #: application/views/user/edit.php:932 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" +"注意: このウィジェットを使用するには、少なくとも 1 つの CAT 無線が構成され動" +"作している必要があります。" #: application/views/user/edit.php:936 #, php-format msgid "When enabled, widget will be available at %s." -msgstr "" +msgstr "有効にすると、ウィジェットは%sで利用可能になります。" #: application/views/user/edit.php:941 msgid "Display \"Last seen\" time" -msgstr "" +msgstr "「最終閲覧」時間を表示する" #: application/views/user/edit.php:947 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" +"この設定は、ウィジェットに「最終確認」時間を表示するかどうかを制御します。" #: application/views/user/edit.php:950 msgid "Display only most recently updated radio" -msgstr "" +msgstr "最近更新されたラジオのみを表示する" #: application/views/user/edit.php:954 msgid "No, show all radios" -msgstr "" +msgstr "いいえ、すべてのラジオを表示" #: application/views/user/edit.php:956 msgid "" @@ -14665,57 +14988,61 @@ msgid "" "recently updated one. In case you have only one radio, this setting has no " "effect." msgstr "" +"複数のCATラジオを設定している場合、この設定でウィジェットにユーザーの放送中の" +"ラジオをすべて表示するか、最新のラジオのみを表示するかを指定します。ラジオが1" +"台しかない場合、この設定は無効です。" #: application/views/user/edit.php:966 msgid "QSOs widget" -msgstr "" +msgstr "QSOウィジェット" #: application/views/user/edit.php:969 msgid "Display exact QSO time" -msgstr "" +msgstr "正確なQSO時間を表示" #: application/views/user/edit.php:975 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" +"この設定は、QSO ウィジェットに正確な QSO 時間を表示するかどうかを制御します。" #: application/views/user/edit.php:988 msgid "Miscellaneous" -msgstr "" +msgstr "その他" #: application/views/user/edit.php:996 msgid "AMSAT Status Upload" -msgstr "" +msgstr "AMSATステータスアップロード" #: application/views/user/edit.php:999 msgid "Upload status of SAT QSOs to" -msgstr "" +msgstr "SAT QSOのステータスをアップロードする" #: application/views/user/edit.php:1013 msgid "Mastodonserver" -msgstr "" +msgstr "マストドンサーバー" #: application/views/user/edit.php:1016 msgid "URL of Mastodonserver" -msgstr "" +msgstr "マストドンサーバーのURL" #: application/views/user/edit.php:1018 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" -msgstr "" +msgstr "MastodonサーバーのメインURL、例: %s" #: application/views/user/edit.php:1027 msgid "Experimental" -msgstr "" +msgstr "実験的" #: application/views/user/edit.php:1027 msgid "Winkeyer" -msgstr "" +msgstr "Winkeyer" #: application/views/user/edit.php:1030 msgid "Winkeyer Features Enabled" -msgstr "" +msgstr "Winkeyer機能が有効" #: application/views/user/edit.php:1036 #, php-format @@ -14723,62 +15050,70 @@ msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" +"Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " +"before enabling." #: application/views/user/edit.php:1047 msgid "Hams.at" -msgstr "" +msgstr "Hams.at" #: application/views/user/edit.php:1050 msgid "Private Feed Key" -msgstr "" +msgstr "プライベートフィードキー" #: application/views/user/edit.php:1052 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." -msgstr "" +msgstr "プロフィールはこちら %s 。" #: application/views/user/edit.php:1055 msgid "Show Workable Passes Only" -msgstr "" +msgstr "実行可能なパスのみを表示" #: application/views/user/edit.php:1061 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" +"有効にすると、hams.atアカウントで設定されたグリッドスクエアに基づいて、有効な" +"パスのみが表示されます。プライベートフィードキーの設定が必要です。" #: application/views/user/edit.php:1073 msgid "Save Account" -msgstr "" +msgstr "アカウントを保存" #: application/views/user/forgot_password.php:33 msgid "Forgot Password?" -msgstr "" +msgstr "パスワードをお忘れですか?" #: application/views/user/forgot_password.php:34 #: application/views/user/reset_password.php:9 msgid "You can reset your password here." -msgstr "" +msgstr "ここでパスワードをリセットできます。" #: application/views/user/index.php:11 msgid "User List" -msgstr "" +msgstr "ユーザーリスト" #: application/views/user/index.php:14 msgid "Wavelog needs at least one user configured in order to operate." msgstr "" +"Wavelog が動作するには、少なくとも 1 人のユーザーが設定されている必要がありま" +"す。" #: application/views/user/index.php:15 msgid "" "Users can be assigned roles which give them different permissions, such as " "adding QSOs to the logbook and accessing Wavelog APIs." msgstr "" +"ユーザーには、ログブックへの QSO の追加や Wavelog API へのアクセスなど、さま" +"ざまな権限を与えるロールを割り当てることができます。" #: application/views/user/index.php:16 msgid "" "The currently logged-in user is displayed at the upper-right of each page." -msgstr "" +msgstr "現在ログインしているユーザーは各ページの右上に表示されます。" #: application/views/user/index.php:17 msgid "" @@ -14786,57 +15121,60 @@ msgid "" "link to reset their password. To achieve this, ensure that the email " "settings in the global options are configured correctly." msgstr "" +"パスワードリセットボタンを使用すると、パスワードをリセットするためのリンクを" +"含むメールをユーザーに送信できます。これを行うには、グローバルオプションの" +"メール設定が正しく設定されていることを確認してください。" #: application/views/user/index.php:19 msgid "Create user" -msgstr "" +msgstr "ユーザーを作成" #: application/views/user/index.php:31 application/views/user/index.php:158 msgid "Last seen" -msgstr "" +msgstr "最後に見た" #: application/views/user/index.php:69 application/views/user/index.php:184 #: application/views/user/modals/admin_impersonate_modal.php:31 msgid "Never" -msgstr "" +msgstr "一度もない" #: application/views/user/index.php:74 msgid "Account locked" -msgstr "" +msgstr "アカウントがロックされました" #: application/views/user/index.php:74 msgid "Account was locked due to too many login attempts." -msgstr "" +msgstr "ログイン試行回数が多すぎるため、アカウントがロックされました。" #: application/views/user/index.php:76 application/views/user/index.php:188 msgid "Locations" -msgstr "" +msgstr "場所" #: application/views/user/index.php:78 application/views/user/index.php:190 msgid "Logbooks" -msgstr "" +msgstr "ログブック" #: application/views/user/index.php:81 application/views/user/index.php:193 msgid "Last QSO:" -msgstr "" +msgstr "最後のQSO:" #: application/views/user/index.php:85 application/views/user/index.php:195 msgid "No QSOs in Log" -msgstr "" +msgstr "ログにQSOがありません" #: application/views/user/index.php:103 application/views/user/index.php:209 #: application/views/user/modals/admin_impersonate_modal.php:43 msgid "Impersonate" -msgstr "" +msgstr "なりすまし" #: application/views/user/index.php:110 application/views/user/index.php:219 #: application/views/user/modals/more_actions_modal.php:6 msgid "Other Actions" -msgstr "" +msgstr "その他のアクション" #: application/views/user/index.php:138 msgid "Clubstation List" -msgstr "" +msgstr "クラブステーションリスト" #: application/views/user/index.php:141 msgid "" @@ -14844,66 +15182,71 @@ msgid "" "events to handle multiple operators. A clubstation is basically a normal " "user account with some special features and some restrictions." msgstr "" +"Wavelogのクラブステーションは、クラブや特別なコールサインイベントで複数のオペ" +"レーターを扱うためのユニークな方法です。クラブステーションは、基本的に通常の" +"ユーザーアカウントですが、いくつかの特別な機能と制限事項があります。" #: application/views/user/index.php:143 msgid "Create Clubstation" -msgstr "" +msgstr "クラブステーションを作成する" #: application/views/user/index.php:156 msgid "Last Operator" -msgstr "" +msgstr "最後のオペレーター" #: application/views/user/index.php:243 msgid "No Clubstations configures yet." -msgstr "" +msgstr "Clubstationsの設定はまだ行われていません。" #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" -msgstr "" +msgstr "メンテナンスモード" #: application/views/user/login.php:56 msgid "Welcome to the Demo of Wavelog" -msgstr "" +msgstr "Wavelogのデモへようこそ" #: application/views/user/login.php:57 msgid "This demo will be reset every night at 0200z." -msgstr "" +msgstr "このデモは毎晩 0200z にリセットされます。" #: application/views/user/login.php:60 #, php-format msgid "More Information about Wavelog on %sGithub%s." -msgstr "" +msgstr "Wavelogに関する詳細情報は、%sGithub%s をご覧ください。" #: application/views/user/login.php:79 msgid "Forgot your password?" -msgstr "" +msgstr "パスワードをお忘れですか?" #: application/views/user/login.php:85 msgid "Keep me logged in" -msgstr "" +msgstr "ログイン状態を保つ" #: application/views/user/modals/admin_impersonate_modal.php:5 msgid "(with Admin Rights)" -msgstr "" +msgstr "(管理者権限あり)" #: application/views/user/modals/admin_impersonate_modal.php:5 msgid "Impersonate User" -msgstr "" +msgstr "偽装ユーザー" #: application/views/user/modals/admin_impersonate_modal.php:9 msgid "" "You are about to impersonate another user. To return to your admin account, " "you can use the switch back button in the header menu." msgstr "" +"他のユーザーになりすまそうとしています。管理者アカウントに戻るには、ヘッダー" +"メニューの「戻る」ボタンをご利用ください。" #: application/views/user/modals/admin_impersonate_modal.php:10 msgid "Do you want to impersonate this user?" -msgstr "" +msgstr "このユーザーになりすましますか?" #: application/views/user/modals/admin_impersonate_modal.php:14 #: application/views/user/modals/more_actions_modal.php:12 msgid "Username:" -msgstr "" +msgstr "ユーザー名:" #: application/views/user/modals/admin_impersonate_modal.php:18 #: application/views/user/modals/more_actions_modal.php:16 @@ -14911,7 +15254,7 @@ msgstr "" #: application/views/user/modals/more_actions_modal.php:103 #: application/views/user/modals/more_actions_modal.php:152 msgid "Name:" -msgstr "" +msgstr "名前:" #: application/views/user/modals/admin_impersonate_modal.php:22 #: application/views/user/modals/more_actions_modal.php:20 @@ -14919,7 +15262,7 @@ msgstr "" #: application/views/user/modals/more_actions_modal.php:104 #: application/views/user/modals/more_actions_modal.php:153 msgid "Callsign:" -msgstr "" +msgstr "コールサイン:" #: application/views/user/modals/admin_impersonate_modal.php:26 #: application/views/user/modals/more_actions_modal.php:24 @@ -14927,19 +15270,19 @@ msgstr "" #: application/views/user/modals/more_actions_modal.php:106 #: application/views/user/modals/more_actions_modal.php:155 msgid "E-Mail:" -msgstr "" +msgstr "Eメール:" #: application/views/user/modals/admin_impersonate_modal.php:30 msgid "Last Seen:" -msgstr "" +msgstr "最終閲覧日時:" #: application/views/user/modals/first_login_wizard.php:5 msgid "First Login Wizard" -msgstr "" +msgstr "最初のログインウィザード" #: application/views/user/modals/first_login_wizard.php:20 msgid "Hello and Welcome to Wavelog!" -msgstr "" +msgstr "こんにちは、Wavelog へようこそ!" #: application/views/user/modals/first_login_wizard.php:21 #, php-format @@ -14948,54 +15291,58 @@ msgid "" "Location. You can find more information about how Station Locations and " "Logbooks work in our %sWiki here%s!" msgstr "" +"QSOsの記録を開始する前に、まず最初のステーション位置を設定する必要がありま" +"す。ステーション位置とログブックの仕組みについては、当社の%sWiki%sで詳細をご" +"確認いただけます!" #: application/views/user/modals/first_login_wizard.php:22 msgid "" "Please provide some additional information so that Wavelog can create your " "first Station:" msgstr "" +"Wavelog が最初のステーションを作成できるように、追加情報を提供してください。" #: application/views/user/modals/first_login_wizard.php:29 msgid "Home QTH" -msgstr "" +msgstr "ホームQTH" #: application/views/user/modals/first_login_wizard.php:62 msgid "Station Zones" -msgstr "" +msgstr "ステーションゾーン" #: application/views/user/modals/first_login_wizard.php:74 #: application/views/user/modals/first_login_wizard.php:84 #, php-format msgctxt "zone lookup" msgid "%sLookup%s" -msgstr "" +msgstr "%s検索%s" #: application/views/user/modals/first_login_wizard.php:102 msgid "Save and Start Logging" -msgstr "" +msgstr "保存してログ記録を開始" #: application/views/user/modals/more_actions_modal.php:9 msgid "Select an action to perform for the user:" -msgstr "" +msgstr "ユーザーに対して実行するアクションを選択します:" #: application/views/user/modals/more_actions_modal.php:33 #: application/views/user/modals/more_actions_modal.php:62 #: application/views/user/modals/more_actions_modal.php:75 msgid "Unlock User" -msgstr "" +msgstr "ユーザーのロック解除" #: application/views/user/modals/more_actions_modal.php:39 #: application/views/user/modals/more_actions_modal.php:96 msgid "Send a Password Reset Link via Email" -msgstr "" +msgstr "パスワードリセットリンクをメールで送信" #: application/views/user/modals/more_actions_modal.php:45 msgid "Convert to Clubstation" -msgstr "" +msgstr "クラブステーションに変換する" #: application/views/user/modals/more_actions_modal.php:45 msgid "Convert to User" -msgstr "" +msgstr "ユーザーに変換" #: application/views/user/modals/more_actions_modal.php:65 msgid "" @@ -15003,60 +15350,69 @@ msgid "" "failed login attempts. After unlocking, the user will be able to log in " "again." msgstr "" +"以下のユーザーのロックを解除しようとしています。このユーザーはログイン試行の" +"失敗回数が多すぎるためロックされています。ロック解除後、ユーザーは再度ログイ" +"ンできるようになります。" #: application/views/user/modals/more_actions_modal.php:67 #: application/views/user/modals/more_actions_modal.php:102 #: application/views/user/modals/more_actions_modal.php:151 msgid "User:" -msgstr "" +msgstr "ユーザー:" #: application/views/user/modals/more_actions_modal.php:70 #: application/views/user/modals/more_actions_modal.php:105 #: application/views/user/modals/more_actions_modal.php:154 msgid "Language:" -msgstr "" +msgstr "言語:" #: application/views/user/modals/more_actions_modal.php:89 msgid "" "Password-reset email sent successfully to user. You can close this dialog " "now." msgstr "" +"パスワードリセットメールをユーザーに送信しました。このダイアログを閉じてくだ" +"さい。" #: application/views/user/modals/more_actions_modal.php:90 msgid "" "Password-reset email could not be sent to user. Are the email settings in " "global options configured correctly?" msgstr "" +"パスワードリセットメールをユーザーに送信できませんでした。グローバルオプショ" +"ンのメール設定は正しく設定されていますか?" #: application/views/user/modals/more_actions_modal.php:99 msgid "" "You are about to send a password reset link to the user. The user will be " "able to reset their password by clicking on the link in the email." msgstr "" +"ユーザーにパスワードリセットリンクを送信します。ユーザーはメール内のリンクを" +"クリックしてパスワードをリセットできます。" #: application/views/user/modals/more_actions_modal.php:100 msgid "Do you want to send the password reset email to this user?" -msgstr "" +msgstr "このユーザーにパスワードリセットメールを送信しますか?" #: application/views/user/modals/more_actions_modal.php:110 msgid "Send the email" -msgstr "" +msgstr "メールを送信する" #: application/views/user/modals/more_actions_modal.php:126 msgid "The account was successfully converted. You can now close this dialog." -msgstr "" +msgstr "アカウントは正常に変換されました。このダイアログを閉じてください。" #: application/views/user/modals/more_actions_modal.php:127 msgid "The account could not be converted. An error has occurred." -msgstr "" +msgstr "アカウントを変換できませんでした。エラーが発生しました。" #: application/views/user/modals/more_actions_modal.php:135 msgid "Convert this account into a normal user" -msgstr "" +msgstr "このアカウントを通常のユーザーに変換する" #: application/views/user/modals/more_actions_modal.php:137 msgid "Convert this account into a clubstation" -msgstr "" +msgstr "このアカウントをクラブステーションに変換する" #: application/views/user/modals/more_actions_modal.php:144 msgid "" @@ -15064,6 +15420,9 @@ msgid "" "user will be able to log in again and all assigned club permissions will be " "removed. Use with caution!" msgstr "" +"このクラブステーションを通常のユーザーアカウントに変換しようとしています。" +"ユーザーは再びログインできるようになり、クラブに割り当てられているすべての権" +"限が削除されます。慎重にご利用ください!" #: application/views/user/modals/more_actions_modal.php:146 msgid "" @@ -15071,39 +15430,42 @@ msgid "" "no longer be able to log in and the account will be converted to a club " "station account. Use with caution!" msgstr "" +"このユーザーアカウントをクラブステーションアカウントに変換しようとしていま" +"す。ユーザーはログインできなくなり、アカウントはクラブステーションアカウント" +"に変換されます。注意してご利用ください!" #: application/views/user/modals/more_actions_modal.php:149 msgid "Are you sure you want to convert this account?" -msgstr "" +msgstr "このアカウントを変換してもよろしいですか?" #: application/views/user/modals/more_actions_modal.php:159 msgid "Convert" -msgstr "" +msgstr "変換する" #: application/views/user/modals/stop_impersonate_modal.php:5 msgid "Switch back to main user" -msgstr "" +msgstr "メインユーザーに戻る" #: application/views/user/modals/stop_impersonate_modal.php:9 #, php-format msgid "Are you sure you want to switch back to %s?" -msgstr "" +msgstr "%sに戻してもよろしいですか?" #: application/views/user/profile.php:19 msgid "Level" -msgstr "" +msgstr "レベル" #: application/views/user/profile.php:39 msgid "First name" -msgstr "" +msgstr "名前" #: application/views/user/profile.php:44 msgid "Last name" -msgstr "" +msgstr "苗字" #: application/views/user/profile.php:50 msgid "Edit profile" -msgstr "" +msgstr "プロフィールを編集" #: application/views/user/reset_password.php:28 msgid "Confirm Password" @@ -15112,203 +15474,212 @@ msgstr "パスワードを認証する" #: application/views/version_dialog/index.php:20 msgid "No Version Dialog text set. Go to the Admin Menu and set one." msgstr "" +"バージョンダイアログのテキストが設定されていません。管理メニューに移動して設" +"定してください。" #: application/views/version_dialog/index.php:60 msgid "Error at parsing JSON-Data or got empty result from github." msgstr "" +"JSON データの解析中にエラーが発生したか、github から空の結果が返されました。" #: application/views/version_dialog/index.php:63 msgid "Error at getting the data from GitHub." -msgstr "" +msgstr "GitHub からデータを取得するときにエラーが発生しました。" #: application/views/version_dialog/index.php:75 msgid "Don't show again" -msgstr "" +msgstr "再度表示しない" #: application/views/view_log/index.php:4 msgid "" "Displaying all QSOs of station locations which are linked to this logbook" -msgstr "" +msgstr "このログブックにリンクされている局所在地のすべてのQSOを表示します" #: application/views/view_log/partial/log_ajax.php:426 #: application/views/view_log/partial/log_ajax.php:440 #: src/QSLManager/QSO.php:567 src/QSLManager/QSO.php:622 #: src/QSLManager/QSO.php:681 msgid "last sent" -msgstr "" +msgstr "最終送信" #: application/views/view_log/partial/log_ajax.php:531 msgid "Result" -msgstr "" +msgstr "結果" #: application/views/view_log/qso.php:6 msgid "QSO Details" -msgstr "" +msgstr "QSOの詳細" #: application/views/view_log/qso.php:29 msgid "QSL Management" -msgstr "" +msgstr "QSL管理" #: application/views/view_log/qso.php:132 msgid "Total Distance" -msgstr "" +msgstr "総距離" #: application/views/view_log/qso.php:159 msgid "Other Path" -msgstr "" +msgstr "他のパス" #: application/views/view_log/qso.php:317 msgid "Antenna Azimuth" -msgstr "" +msgstr "アンテナ方位角" #: application/views/view_log/qso.php:324 msgid "Antenna Elevation" -msgstr "" +msgstr "アンテナの仰角" #: application/views/view_log/qso.php:493 msgid "QSL Card has been sent via the bureau" -msgstr "" +msgstr "QSLカードは事務局から送られました" #: application/views/view_log/qso.php:495 msgid "QSL Card has been sent via direct" -msgstr "" +msgstr "QSLカードは直接送信されました" #: application/views/view_log/qso.php:497 msgid "QSL Card has been sent electronically" -msgstr "" +msgstr "QSLカードは電子的に送信されました" #: application/views/view_log/qso.php:499 msgid "QSL Card has been sent via manager" -msgstr "" +msgstr "QSLカードはマネージャー経由で送信されました" #: application/views/view_log/qso.php:501 msgid "QSL Card has been sent" -msgstr "" +msgstr "QSLカードが送られました" #: application/views/view_log/qso.php:510 msgid "QSL Card has been received via the bureau" -msgstr "" +msgstr "QSLカードは事務局経由で受領されました" #: application/views/view_log/qso.php:512 msgid "QSL Card has been received via direct" -msgstr "" +msgstr "QSLカードは直接受け取りました" #: application/views/view_log/qso.php:514 msgid "QSL Card has been received electronically" -msgstr "" +msgstr "QSLカードは電子的に受信されました" #: application/views/view_log/qso.php:516 msgid "QSL Card has been received via manager" -msgstr "" +msgstr "QSLカードはマネージャー経由で受信されました" #: application/views/view_log/qso.php:518 msgid "QSL Card has been received" -msgstr "" +msgstr "QSLカードを受け取りました" #: application/views/view_log/qso.php:527 msgid "This station uses LoTW." -msgstr "" +msgstr "このステーションはLoTWを使用します。" #: application/views/view_log/qso.php:532 #: application/views/view_log/qso.php:542 #: application/views/view_log/qso.php:556 #: application/views/view_log/qso.php:566 msgid "This QSO was confirmed on" -msgstr "" +msgstr "このQSOは" #: application/views/view_log/qso.php:537 msgid "This QSO is confirmed on LoTW." -msgstr "" +msgstr "このQSOはLoTWで確認されました。" #: application/views/view_log/qso.php:551 msgid "This QSO is confirmed on eQSL." -msgstr "" +msgstr "このQSOはeQSLで確認されています。" #: application/views/view_log/qso.php:561 msgid "This QSO is confirmed on QRZ.com." -msgstr "" +msgstr "このQSOはQRZ.comで確認されています。" #: application/views/view_log/qso.php:571 msgid "This QSO is confirmed on Clublog." -msgstr "" +msgstr "このQSOはClublogで確認されています。" #: application/views/view_log/qso.php:584 msgid "More QSOs" -msgstr "" +msgstr "より多くのQSO" #: application/views/view_log/qso.php:646 msgid "Share" -msgstr "" +msgstr "共有" #: application/views/view_log/qso.php:652 msgid "Details" -msgstr "" +msgstr "詳細" #: application/views/view_log/qso.php:779 msgid "Uploaded QSL Card front image" -msgstr "" +msgstr "QSLカードの表面画像をアップロードしました" #: application/views/view_log/qso.php:784 msgid "Upload QSL Card image" -msgstr "" +msgstr "QSLカードの画像をアップロード" #: application/views/view_log/qso.php:789 msgid "Uploaded QSL Card back image" -msgstr "" +msgstr "QSLカードの裏面画像をアップロードしました" #: application/views/view_log/qso.php:805 msgid "Mark QSL Received (Electronic)" -msgstr "" +msgstr "QSL受信をマーク(電子)" #: application/views/view_log/qso.php:828 msgid "eQSL picture" -msgstr "" +msgstr "eQSL画像" #: application/views/visitor/layout/footer.php:238 msgid "Filter Results" -msgstr "" +msgstr "結果をフィルタリング" #: application/views/visitor/layout/footer.php:244 msgid "CSV" -msgstr "" +msgstr "CSV" #: application/views/visitor/layout/footer.php:252 msgid "Clear Filter" -msgstr "" +msgstr "フィルターをクリア" #: application/views/visitor/layout/header.php:74 msgid "OQRS" -msgstr "" +msgstr "OQRS" #: application/views/visitor/layout/header.php:82 msgid "Visit Wavelog on Github" -msgstr "" +msgstr "GithubのWavelogをご覧ください" #: application/views/visitor/layout/header.php:95 msgid "Please enter a callsign!" -msgstr "" +msgstr "コールサインを入力してください!" #: application/views/webadif/export.php:22 msgid "" "Here you can see and upload all QSOs which have not been previously uploaded " "to QO-100 Dx Club." msgstr "" +"ここでは、これまで QO-100 Dx クラブにアップロードされていないすべての QSO を" +"表示およびアップロードできます。" #: application/views/webadif/export.php:33 msgid "" "You need to set a QO-100 Dx Club API key in your station profile. Only " "station profiles with an API Key are displayed." msgstr "" +"ステーションプロフィールにQO-100 Dx Club APIキーを設定する必要があります。API" +"キーが設定されているステーションプロフィールのみが表示されます。" #: application/views/webadif/export.php:63 msgid "" "There are currently no outstanding QSOs that need to be uploaded to the " "QO-100 Dx Club's API." msgstr "" +"現在、QO-100 Dx クラブの API にアップロードする必要がある未処理の QSO はあり" +"ません。" #: application/views/webadif/export.php:64 msgid "Go ahead and turn on your QO-100 station!" -msgstr "" +msgstr "さあ、QO-100 ステーションをオンにしましょう!" #: application/views/webadif/export.php:73 #: application/views/webadif/export.php:113 @@ -15316,11 +15687,13 @@ msgid "" "None of your Logbooks are configured to export data to the QO-100 Dx Club's " "API." msgstr "" +"どのログブックも、QO-100 Dx Club の API にデータをエクスポートするように構成" +"されていません。" #: application/views/webadif/export.php:74 #: application/views/webadif/export.php:114 msgid "QO-100 Dx Club" -msgstr "" +msgstr "QO-100 DXクラブ" #: application/views/webadif/export.php:74 #: application/views/webadif/export.php:114 @@ -15329,6 +15702,8 @@ msgid "" "To configure this feature, go to your profile page at the %s and %s Create " "%s an API key." msgstr "" +"この機能を設定するには、%s と %s のプロフィールページに移動し、%s で API キー" +"を作成してください。" #: application/views/webadif/export.php:75 #: application/views/webadif/export.php:115 @@ -15337,45 +15712,58 @@ msgid "" "Then, navigate to your %s and configure your station with the key you have " "created at the club." msgstr "" +"次に、 %s にアクセスし、クラブで作成したキーを使用してステーションを構成しま" +"す。" #: application/views/webadif/export.php:83 msgid "" "Here you can mark as uploaded your QSOs which have not been previously " "uploaded to QO-100 Dx Club." msgstr "" +"ここでは、これまで QO-100 Dx クラブにアップロードされていない QSO をアップ" +"ロード済みとしてマークできます。" #: application/views/webadif/export.php:107 msgid "Mark QSOs as exported to QO-100 Dx Club" -msgstr "" +msgstr "QSOをQO-100 Dxクラブにエクスポートしたとしてマークする" #: application/views/webadif/mark_webadif.php:16 msgid "The QSOs are marked as exported to QO-100 Dx Club." -msgstr "" +msgstr "QSO は QO-100 Dx クラブにエクスポートされたものとしてマークされます。" #: application/views/widgets/oqrs.php:21 msgid "Wavelog OQRS" -msgstr "" +msgstr "Wavelog OQRS" #: application/views/widgets/oqrs.php:76 msgid "Wavelog OQRS Request" -msgstr "" +msgstr "Wavelog OQRSリクエスト" #: application/views/widgets/oqrs.php:79 #, php-format msgid "Request a QSL card for your QSO with %s." -msgstr "" +msgstr "%sとの交信(QSO)のためのQSLカードをご請求ください。" #: application/views/widgets/oqrs.php:83 msgid "Your Callsign:" -msgstr "" +msgstr "あなたのコールサイン:" #: application/views/widgets/oqrs.php:91 msgid "Submit Request" -msgstr "" +msgstr "リクエストを送信" #: application/views/widgets/qsos.php:20 msgid "Rcvd" -msgstr "" +msgstr "受信" + +#~ msgid "Yay, its imported!" +#~ msgstr "やった、インポートされました!" + +#~ msgid "Trouble? Check the" +#~ msgstr "問題が発生しましたか? 確認してください" + +#~ msgid "wiki" +#~ msgstr "週" #~ msgid "Mark QSOs as uploaded" #~ msgstr "QSOをアップロード済みとしてマークする" diff --git a/application/locale/lt/LC_MESSAGES/messages.po b/application/locale/lt/LC_MESSAGES/messages.po index 0be6d0699..0fe1f65c3 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-08-20 19:04+0000\n" +"POT-Creation-Date: 2025-08-24 15:29+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" @@ -231,16 +231,16 @@ msgstr "ADIF importeren gefaald!" msgid "Station Profile not valid for User" msgstr "Stations profiel niet geldig voor gebruiker" -#: application/controllers/Adif.php:282 +#: application/controllers/Adif.php:283 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "ADIF geimporteerd" -#: application/controllers/Adif.php:293 +#: application/controllers/Adif.php:294 msgid "DCL Import" msgstr "DCL import" -#: application/controllers/Adif.php:351 +#: application/controllers/Adif.php:352 msgid "DCL Data Imported" msgstr "DCL Data geimporteerd" @@ -3195,36 +3195,31 @@ 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:1291 +#: application/models/Logbook_model.php:1292 msgid "Station ID not allowed" msgstr "Station-ID niet toegestaan" -#: application/models/Logbook_model.php:1296 +#: application/models/Logbook_model.php:1297 msgid "No Call given" msgstr "Geen roepnaam gegeven" -#: application/models/Logbook_model.php:1366 -#: application/models/Logbook_model.php:1540 +#: application/models/Logbook_model.php:1367 +#: application/models/Logbook_model.php:1541 msgid "DXCC has to be Numeric" msgstr "DXCC moet numeriek zijn" -#: application/models/Logbook_model.php:3987 +#: application/models/Logbook_model.php:4005 #, 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:3988 -#, php-format -msgid "Check %s for hints about errors in ADIF files." -msgstr "Controleer %s voor hints over fouten in ADIF-bestanden." - -#: application/models/Logbook_model.php:4000 +#: application/models/Logbook_model.php:4018 msgid "QSO on" msgstr "QSO vanaf" -#: application/models/Logbook_model.php:4000 +#: application/models/Logbook_model.php:4018 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3232,63 +3227,63 @@ 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:4299 +#: application/models/Logbook_model.php:4317 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "de qslrdate is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:4310 +#: application/models/Logbook_model.php:4328 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "de qslsdatum is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:4371 +#: application/models/Logbook_model.php:4389 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "de clublog_qso_upload_date is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:4391 +#: application/models/Logbook_model.php:4409 msgid "the lotw_qslrdate is invalid (YYYYMMDD)" msgstr "de lotw_qslrdate is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:4412 +#: application/models/Logbook_model.php:4430 msgid "the lotw_qslsdate is invalid (YYYYMMDD)" msgstr "de lotw_qslsdate is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:4704 +#: application/models/Logbook_model.php:4722 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Duplicaat voor" -#: application/models/Logbook_model.php:4765 +#: application/models/Logbook_model.php:4783 msgid "QSO could not be matched" msgstr "QSO kon niet worden gekoppeld" -#: application/models/Logbook_model.php:4771 +#: application/models/Logbook_model.php:4789 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "bevestigd door LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:4776 +#: application/models/Logbook_model.php:4794 msgid "confirmed by award manager" msgstr "Bevestigd door award manager" -#: application/models/Logbook_model.php:4779 +#: application/models/Logbook_model.php:4797 msgid "confirmed by cross-check of DCL data" msgstr "bevestigd door kruiscontrole van DCL-gegevens" -#: application/models/Logbook_model.php:4782 +#: application/models/Logbook_model.php:4800 msgid "confirmation pending" msgstr "bevestiging in afwachting" -#: application/models/Logbook_model.php:4785 +#: application/models/Logbook_model.php:4803 msgid "unconfirmed" msgstr "onbevestigd" -#: application/models/Logbook_model.php:4788 +#: application/models/Logbook_model.php:4806 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:287 msgid "unknown" msgstr "onbekend" -#: application/models/Logbook_model.php:5626 +#: application/models/Logbook_model.php:5644 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:39 #: application/views/awards/gridmaster/index.php:54 @@ -3999,7 +3994,7 @@ msgstr "Minimum aantal" #: application/views/awards/wapc/index.php:168 #: application/views/awards/was/index.php:201 #: application/views/awards/wwff/index.php:65 -#: application/views/callstats/index.php:129 +#: application/views/callstats/index.php:128 #: application/views/clublog/export.php:60 #: application/views/distancerecords/index.php:52 #: application/views/public_search/empty.php:3 @@ -4016,7 +4011,7 @@ msgstr "Niets gevonden!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wwff/index.php:35 #: application/views/cabrillo/index.php:31 -#: application/views/callstats/index.php:148 +#: application/views/callstats/index.php:147 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 #: application/views/contesting/index.php:166 @@ -4060,7 +4055,7 @@ msgid "Count" msgstr "Tellen" #: application/views/activators/index.php:101 -#: application/views/callstats/index.php:150 +#: application/views/callstats/index.php:151 #: application/views/timeline/index.php:203 #: application/views/timeline/index.php:238 #: application/views/timeline/index.php:266 @@ -4350,7 +4345,7 @@ msgstr "" #: application/views/adif/import.php:151 msgid "Mark QSOs as uploaded (This does NOT upload QSOs to these services!)" -msgstr "" +msgstr "Markeer QSOs als geüpload (Dit uploadt GEEN QSOs naar deze diensten!)" #: application/views/adif/import.php:158 msgid "Mark imported QSOs as uploaded to LoTW" @@ -4384,7 +4379,7 @@ msgstr "Markeer geïmporteerde QSOs als geüpload naar DCL logbook" #: application/views/adif/import.php:207 msgid "Toggle all checkboxes" -msgstr "" +msgstr "Schakel alle selectievakjes in/uit" #: application/views/adif/import.php:212 application/views/adif/import.php:355 #: application/views/adif/import.php:393 @@ -4536,7 +4531,7 @@ msgstr "" "software ook levert gebruiken om die gegevens in Wavelog te herschrijven." #: application/views/adif/import.php:370 -#: application/views/adif/import_success.php:31 +#: application/views/adif/import_success.php:40 #: application/views/lotw_views/index.php:137 msgid "Information" msgstr "Informatie" @@ -4601,27 +4596,31 @@ msgstr "" "database worden ingevoerd. Controleer het geïmporteerde ADIF-bestand. Je " "kunt een online ADIF-bestandscontrole gebruiken. Bijvoorbeeld:" -#: application/views/adif/import_success.php:17 -msgid "Yay, its imported!" -msgstr "Jippie, het is geïmporteerd!" +#: application/views/adif/import_success.php:22 +msgid "Yay, it's imported!" +msgstr "" -#: application/views/adif/import_success.php:18 +#: application/views/adif/import_success.php:23 msgid "The ADIF File has been imported." msgstr "Het ADIF-bestand is geïmporteerd." -#: application/views/adif/import_success.php:22 +#: application/views/adif/import_success.php:25 +msgid "Number of QSOs imported:" +msgstr "" + +#: application/views/adif/import_success.php:31 msgid "Dupes were inserted!" msgstr "Duplicaten zijn ingevoegd!" -#: application/views/adif/import_success.php:24 +#: application/views/adif/import_success.php:33 msgid "Dupes were skipped." msgstr "Duplicaten werden overgeslagen." -#: application/views/adif/import_success.php:31 +#: application/views/adif/import_success.php:40 msgid "Contest logs imported" msgstr "Wedstrijdlogs geïmporteerd" -#: application/views/adif/import_success.php:33 +#: application/views/adif/import_success.php:42 msgid "" "Sometimes, depending on your contest logging software, your exchanges will " "not be imported properly from that softwares ADIF. If you like to correct " @@ -4632,20 +4631,25 @@ msgstr "" "corrigeren, schakel dan over naar het CBR Import Tabblad van de ADIF Import " "pagina." -#: application/views/adif/import_success.php:33 +#: application/views/adif/import_success.php:42 msgid "You imported at least 1 QSO containing a contest ID." msgstr "Je hebt ten minste 1 QSO geïmporteerd met een contest-ID." -#: application/views/adif/import_success.php:34 +#: application/views/adif/import_success.php:43 msgid "We found the following numbers of QSOs for the following contest IDs:" msgstr "" "We hebben de volgende aantallen QSO's gevonden voor de volgende contest-ID's:" -#: application/views/adif/import_success.php:47 +#: application/views/adif/import_success.php:57 msgid "Import details / possible problems" msgstr "Importdetails / mogelijke problemen" -#: application/views/adif/import_success.php:48 +#: application/views/adif/import_success.php:58 +#, php-format +msgid "Check %s for hints about errors in ADIF files." +msgstr "Controleer %s voor hints over fouten in ADIF-bestanden." + +#: application/views/adif/import_success.php:59 msgid "" "You might have ADIF errors, the QSOs have still been added. Please check the " "following information:" @@ -4923,6 +4927,8 @@ msgid "" "Fields taken for this Award: Propagation-Mode and SAT-Name (ADIF: " "PROP_MODE=SAT, SAT_NAME='AO-73')" msgstr "" +"Velden genomen voor deze Award: Propagatiemodus en SAT-Naam (ADIF: " +"PROP_MODE=SAT, SAT_NAME='AO-73')" #: application/views/awards/73on73/index.php:32 #: application/views/awards/jcc/index.php:152 @@ -4984,6 +4990,8 @@ msgid "" "Fields taken for this Award: State (ADIF: STATE), Stations County (ADIF: " "CNTY), DXCC (Must be one of 291 (U.S.A.) ,6 (ALASKA) or 110 (HAWAII))" msgstr "" +"Velden genomen voor deze Award: Staat (ADIF: STATE), Stations County (ADIF: " +"CNTY), DXCC (Moet een van 291 (V.S.), 6 (ALASKA) of 110 (HAWAII) zijn)" #: application/views/awards/counties/index.php:22 msgid "Counties Worked" @@ -5086,7 +5094,7 @@ msgstr "Je kunt alle informatie en regels vinden op de website van N4BAA: %s" #: application/views/awards/cq/index.php:24 msgid "Fields taken for this Award: CQ-Zone (ADIF: CQZ)" -msgstr "" +msgstr "Velden genomen voor deze Award: CQ-Zone (ADIF: CQZ)" #: application/views/awards/cq/index.php:26 msgid "Awards - CQ WAZ" @@ -5349,7 +5357,7 @@ msgstr "" #: application/views/awards/dok/index.php:11 msgid "Fields taken for this Award: DOK (ADIF: DARC_DOK)" -msgstr "" +msgstr "Velden genomen voor deze Award: DOK (ADIF: DARC_DOK)" #: application/views/awards/dok/index.php:21 msgid "DOK / SDOK" @@ -5436,6 +5444,8 @@ msgid "" "Fields taken for this Award: DXCC (Needs to be a valid one out of the DXCC-" "ADIF-Spec-List" msgstr "" +"Velden genomen voor deze Award: DXCC (Moet een geldige zijn uit de DXCC-ADIF-" +"Spec-List" #: application/views/awards/dxcc/index.php:33 #: application/views/awards/iota/index.php:34 @@ -5537,31 +5547,31 @@ msgstr "Toon DXCC-kaart" #: application/views/awards/dxcc/index.php:221 msgid "Legend:" -msgstr "" +msgstr "Legenda:" #: application/views/awards/dxcc/index.php:222 msgid "(Q)SL-Paper-Card" -msgstr "" +msgstr "(Q)SL-papieren-kaart" #: application/views/awards/dxcc/index.php:223 msgid "(L)oTW" -msgstr "" +msgstr "(L)oTW" #: application/views/awards/dxcc/index.php:224 msgid "(e)QSL" -msgstr "" +msgstr "(e)QSL" #: application/views/awards/dxcc/index.php:225 msgid "QR(Z)-\"confirmation\"" -msgstr "" +msgstr "QR(Z)-\"bevestiging\"" #: application/views/awards/dxcc/index.php:226 msgid "(C)lublog" -msgstr "" +msgstr "(C)lublog" #: application/views/awards/dxcc/index.php:227 msgid "(W)orked" -msgstr "" +msgstr "Ge(w)erkt" #: application/views/awards/dxcc/index.php:233 msgid "DXCC Name" @@ -5608,6 +5618,9 @@ msgid "" "Fields taken for this Award: DXCC (Must be USA), Gridsquare (Must contain a " "grid from one of the 488 mainland gridsquares!), Band must be 6M." msgstr "" +"Velden genomen voor deze Award: DXCC (Moet USA zijn), Gridsquare (Moet een " +"van de 488 lokatorvakken bevatten van het Amerikaanse vastenland!), Band " +"moet 6m zijn." #: application/views/awards/gridmaster/index.php:8 msgid "US Gridmaster Award" @@ -5662,6 +5675,9 @@ msgid "" "grid from one of the 488 mainland gridsquares!), Propagation-Mode and SAT-" "Name" msgstr "" +"Velden genomen voor deze Award: DXCC (Moet USA zijn), Gridsquare (Moet een " +"van de 488 lokatorvakken bevatten van het Amerikaanse vastenland!),, " +"Propagatie-Modus en SAT-Naam" #: application/views/awards/gridmaster/index.php:14 msgid "Gridmaster Award" @@ -5690,18 +5706,24 @@ msgid "" "Fields taken for this Award: DXCC (Must be Germany), Gridsquare, Propagation-" "Mode and SAT-Name" msgstr "" +"Velden genomen voor deze Award: DXCC (Moet Duitsland zijn), Gridsquare, " +"Propagatiemodus en SAT-Naam" #: application/views/awards/gridmaster/index.php:23 msgid "" "Fields taken for this Award: DXCC (Must be Luxembourg), Gridsquare, " "Propagation-Mode and SAT-Name" msgstr "" +"Velden genomen voor deze Award: DXCC (Moet Luxemburg zijn), Gridsquare, " +"Propagatiemodus en SAT-Naam" #: application/views/awards/gridmaster/index.php:26 msgid "" "Fields taken for this Award: DXCC (Must be Japan), Gridsquare, Propagation-" "Mode and SAT-Name" msgstr "" +"Velden genomen voor deze Award: DXCC (Moet Japan zijn), Gridsquare, " +"Propagatie-Modus en SAT-Naam" #: application/views/awards/helvetia/index.php:3 msgctxt "Switzerland Canton" @@ -5743,6 +5765,8 @@ msgid "" "Fields taken for this Award: DXCC (Must be Switzerland) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" +"Velden genomen voor deze Award: DXCC (Moet Zwitserland zijn) en STATE (Moet " +"een geldige kanton afkorting bevatten!)" #: application/views/awards/helvetia/index.php:115 msgid "Show Helvetia Map" @@ -5812,6 +5836,8 @@ msgid "" "Fields taken for this Award: IOTA (ADIF: IOTA) must contain valid IOTA-" "Reference" msgstr "" +"Velden genomen voor deze Award: IOTA (ADIF: IOTA) moet een geldige IOTA-" +"referentie bevatten" #: application/views/awards/iota/index.php:30 msgid "Deleted IOTA" @@ -5887,7 +5913,7 @@ msgstr "Je kunt meer informatie vinden op de website van %s." #: application/views/awards/itu/index.php:24 msgid "Fields taken for this Award: ITU-Zone (ADIF: ITUZ)" -msgstr "" +msgstr "Velden genomen voor deze Award: ITU-Zone (ADIF: ITUZ)" #: application/views/awards/itu/index.php:26 msgid "Awards - ITU Zones" @@ -5928,6 +5954,8 @@ msgid "" "Fields taken for this Award: DXCC (Japan) and County (Must contain a valid " "reference!)" msgstr "" +"Velden genomen voor deze Award: DXCC (Japan) en County (Moet een geldige " +"referentie bevatten!)" #: application/views/awards/jcc/index.php:116 msgid "Show JCC Map" @@ -5997,6 +6025,7 @@ msgstr "" #: application/views/awards/pota/index.php:11 msgid "Fields taken for this Award: POTA_REF (must contain Park-Reference)" msgstr "" +"Velden genomen voor deze Award: POTA_REF (moet Park-Referentie bevatten)" #: application/views/awards/pota/index.php:32 #: application/views/qso/index.php:274 application/views/qso/index.php:567 @@ -6161,6 +6190,8 @@ msgid "" "Fields taken for this Award: Gridsquare and vucc_grids (ADIF: GRIDSQUARE, " "VUCC_GRIDS)" msgstr "" +"Velden genomen voor deze Award: Gridsquare en vucc_grids (ADIF: GRIDSQUARE, " +"VUCC_GRIDS)" #: application/views/awards/vucc/index.php:23 msgid "Grids Worked" @@ -6196,6 +6227,8 @@ msgid "" "Fields taken for this Award: SIG (Has to be 'WAB') and SIG_INFO (should " "contain valid WAB-Grid)" msgstr "" +"Velden genomen voor deze Award: SIG (moet 'WAB' zijn) en SIG_INFO (moet een " +"geldige WAB-lokatorvak bevatten)" #: application/views/awards/wab/index.php:110 msgid "List" @@ -6221,6 +6254,8 @@ msgid "" "Fields taken for this Award: Continent (ADIF tag 'CONT'). Must contain a " "valid continent-abbreviation!" msgstr "" +"Velden genomen voor deze Award: Continent (ADIF-tag 'CONT'). Moet een " +"geldige continentafkorting bevatten!" #: application/views/awards/wac/index.php:14 msgid "Awards - Worked All Continents (WAC)" @@ -6264,7 +6299,7 @@ msgstr "" #: application/views/awards/wae/index.php:11 msgid "Fields taken for this Award: Region, DXCC" -msgstr "" +msgstr "Velden voor deze Award: Regio, DXCC" #: application/views/awards/wae/index.php:162 msgid "WAE Name" @@ -6308,6 +6343,8 @@ msgid "" "Fields taken for this Award: DXCC (Japan) and STATE (Must contain a valid " "prefecture!)" msgstr "" +"Velden genomen voor deze Award: DXCC (Japan) en STATE (Moet een geldige " +"prefectuur bevatten!)" #: application/views/awards/waja/index.php:119 msgid "Show WAJA Map" @@ -6370,6 +6407,8 @@ msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" +"Velden genomen voor deze Award: DXCC (Moet Nederland zijn) en STATE (Moet " +"een geldige provincie afkorting bevatten!)" #: application/views/awards/wap/index.php:115 msgid "Show WAP Map" @@ -6411,6 +6450,9 @@ msgid "" "Macao/152, Taiwan/386, Pratas Isl./505 or Scarborough Reef/506) and valid " "State (ADIF: DXCC and STATE)" msgstr "" +"Velden genomen voor deze Award: DXCC (Moet een van China/318, HongKong/321, " +"Macao/152, Taiwan/386, Pratas Eil./505 of Scarborough Rif/506 zijn) en " +"geldige Staat (ADIF: DXCC en STATE)" #: application/views/awards/wapc/index.php:119 msgid "Code" @@ -6467,6 +6509,9 @@ msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" msgstr "" +"Velden genomen voor deze Award: DXCC (Moet een van de V.S., Alaska of Hawaii " +"zijn) en STATE (Moet een geldige afkorting van een Amerikaanse staat " +"bevatten!)" #: application/views/awards/was/index.php:115 msgid "Show WAS Map" @@ -6498,7 +6543,7 @@ msgstr "" #: application/views/awards/wwff/index.php:11 msgid "Fields taken for this Award: WWFF (ADIF: WWFF_REF)" -msgstr "" +msgstr "Velden genomen voor deze Award: WWFF (ADIF: WWFF_REF)" #: application/views/awards/wwff/index.php:32 #: application/views/qso/index.php:262 application/views/qso/index.php:554 @@ -7133,10 +7178,19 @@ msgstr "Er werden geen contesten in je logboek gevonden." msgid "All except SAT" msgstr "Alles behalve SAT" -#: application/views/callstats/index.php:149 +#: application/views/callstats/index.php:148 msgid "#QSOs" msgstr "#QSOs" +#: application/views/callstats/index.php:149 +msgid "First QSO" +msgstr "" + +#: application/views/callstats/index.php:150 +#: application/views/stationsetup/stationsetup.php:129 +msgid "Last QSO" +msgstr "Laatste QSO" + #: application/views/cfd/index.php:7 #, php-format msgid "Export of CFD-File for DARC-Toplist (See %s)" @@ -11732,7 +11786,7 @@ msgstr "Toevoegen aan afdrukwachtrij" #: application/views/oqrs/qsolist.php:209 msgid "Match QSO" -msgstr "" +msgstr "Geverifeerd QSO" #: application/views/oqrs/request.php:9 #: application/views/oqrs/request_grouped.php:3 @@ -11912,7 +11966,7 @@ msgstr "Controleer logboek" #: application/views/oqrs/showrequests.php:96 msgid "QSO Match" -msgstr "" +msgstr "QSO verificatie" #: application/views/oqrs/status_info.php:11 msgid "The request is currently open, and needs to be reviewed by you." @@ -14003,6 +14057,11 @@ msgstr "Naam van de Special Interest Group van het station (bijv. GMA)." msgid "Special Interest Group Information" msgstr "Informatie over Special Interest Group" +#: application/views/station_profile/edit.php:309 +#, php-format +msgid "Trouble? Check the %swiki%s." +msgstr "Problemen? Raadpleeg de %swiki%s." + #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "Stationslogboeknaam" @@ -14148,10 +14207,6 @@ msgstr "Onderhoud" msgid "Please reassign them at " msgstr "Wijs ze alsjeblieft opnieuw toe aan " -#: application/views/stationsetup/stationsetup.php:129 -msgid "Last QSO" -msgstr "Laatste QSO" - #: application/views/stationsetup/stationsetup.php:131 msgid "Linked" msgstr "Gekoppeld" @@ -14786,8 +14841,12 @@ msgid "Station Locations Quickswitch" msgstr "Snelle wissel van stationslocaties" #: application/views/user/edit.php:483 -msgid "Show the Station Locations Quickswitch in the main menu" -msgstr "Toon de stationslocaties Quickswitch in het hoofdmenu" +msgid "" +"Show the Station Locations Quickswitch in the main menu. You can add " +"locations by adding them to favourites at the station setup page." +msgstr "" +"Toon de locatiesnelkoppeling in het hoofdmenu. Je kunt locaties toevoegen " +"door ze toe te voegen aan favorieten op de stationsinstellingenpagina." #: application/views/user/edit.php:487 msgid "UTC Time in Menu" @@ -14935,21 +14994,26 @@ msgstr "" #: application/views/user/edit.php:713 msgid "Automatic OQRS matching" -msgstr "" +msgstr "Automatische OQRS verificatie" #: application/views/user/edit.php:718 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" +"Als dit aanstaat, zal automatische OQRS verificatie plaatsvinden en zal het " +"systeem proberen binnenkomende verzoeken automatisch met bestaande logs te " +"matchen." #: application/views/user/edit.php:722 msgid "Automatic OQRS matching for direct requests" -msgstr "" +msgstr "Automatische OQRS verificatie voor directe verzoeken" #: application/views/user/edit.php:727 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" +"Als dit aanstaat, zal automatische OQRS verificatie voor directe verzoeken " +"plaatsvinden." #: application/views/user/edit.php:743 msgid "Default Values" @@ -15843,6 +15907,18 @@ msgstr "Verzoek indienen" msgid "Rcvd" msgstr "Ontvangen" +#~ msgid "Yay, its imported!" +#~ msgstr "Jippie, het is geïmporteerd!" + +#~ msgid "Trouble? Check the" +#~ msgstr "Problemen? Controleer de" + +#~ msgid "wiki" +#~ msgstr "Wiki" + +#~ msgid "Show the Station Locations Quickswitch in the main menu" +#~ msgstr "Toon de stationslocaties Quickswitch in het hoofdmenu" + #~ msgid "Mark QSOs as uploaded" #~ msgstr "QSOs als geüpload markeren" diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.mo b/application/locale/pl_PL/LC_MESSAGES/messages.mo index 75eaa3190..c5d224644 100644 Binary files a/application/locale/pl_PL/LC_MESSAGES/messages.mo and b/application/locale/pl_PL/LC_MESSAGES/messages.mo differ diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.po b/application/locale/pl_PL/LC_MESSAGES/messages.po index cc874ea60..8d973b686 100644 --- a/application/locale/pl_PL/LC_MESSAGES/messages.po +++ b/application/locale/pl_PL/LC_MESSAGES/messages.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-08-20 19:04+0000\n" +"POT-Creation-Date: 2025-08-24 15:29+0000\n" "PO-Revision-Date: 2025-08-19 17:14+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Polish \n" +"POT-Creation-Date: 2025-08-24 15:29+0000\n" +"PO-Revision-Date: 2025-08-23 15:21+0000\n" +"Last-Translator: David Quental \n" "Language-Team: Portuguese (Portugal) \n" "Language: pt_PT\n" @@ -232,16 +232,16 @@ msgstr "Falha na importação do ADIF!" msgid "Station Profile not valid for User" msgstr "Perfil da estação não é válido para o utilizador" -#: application/controllers/Adif.php:282 +#: application/controllers/Adif.php:283 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "ADIF Importado" -#: application/controllers/Adif.php:293 +#: application/controllers/Adif.php:294 msgid "DCL Import" msgstr "Importação DCL" -#: application/controllers/Adif.php:351 +#: application/controllers/Adif.php:352 msgid "DCL Data Imported" msgstr "Dados DCL importados" @@ -3209,35 +3209,30 @@ msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" "HRDlog: Não foram encontrados perfis de estação com credenciais do HRDlog." -#: application/models/Logbook_model.php:1291 +#: application/models/Logbook_model.php:1292 msgid "Station ID not allowed" msgstr "Identificação da estação não permitida" -#: application/models/Logbook_model.php:1296 +#: application/models/Logbook_model.php:1297 msgid "No Call given" msgstr "Nenhum indicativo fornecido" -#: application/models/Logbook_model.php:1366 -#: application/models/Logbook_model.php:1540 +#: application/models/Logbook_model.php:1367 +#: application/models/Logbook_model.php:1541 msgid "DXCC has to be Numeric" msgstr "DXCC tem de ser numérico" -#: application/models/Logbook_model.php:3987 +#: application/models/Logbook_model.php:4005 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "Indicativo de estação errado %s ao importar QSO com %s para %s: IGNORADO" -#: application/models/Logbook_model.php:3988 -#, php-format -msgid "Check %s for hints about errors in ADIF files." -msgstr "Verifica %s para dicas sobre erros em ficheiros ADIF." - -#: application/models/Logbook_model.php:4000 +#: application/models/Logbook_model.php:4018 msgid "QSO on" msgstr "Contacto em" -#: application/models/Logbook_model.php:4000 +#: application/models/Logbook_model.php:4018 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3245,63 +3240,63 @@ msgstr "" "Tentou importar um contacto sem nenhum CALL dado. Este contacto não foi " "importado. É inválido" -#: application/models/Logbook_model.php:4299 +#: application/models/Logbook_model.php:4317 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "o qslrdate está inválido (AAAAMMDD)" -#: application/models/Logbook_model.php:4310 +#: application/models/Logbook_model.php:4328 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "o qslsdate está inválido (AAAAMMDD)" -#: application/models/Logbook_model.php:4371 +#: application/models/Logbook_model.php:4389 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "o clublog_qso_upload_date está inválido (AAAAMMDD)" -#: application/models/Logbook_model.php:4391 +#: application/models/Logbook_model.php:4409 msgid "the lotw_qslrdate is invalid (YYYYMMDD)" msgstr "o lotw_qslrdate está inválido (AAAAMMDD)" -#: application/models/Logbook_model.php:4412 +#: application/models/Logbook_model.php:4430 msgid "the lotw_qslsdate is invalid (YYYYMMDD)" msgstr "o lotw_qslsdate está inválido (AAAAMMDD)" -#: application/models/Logbook_model.php:4704 +#: application/models/Logbook_model.php:4722 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Duplicado para" -#: application/models/Logbook_model.php:4765 +#: application/models/Logbook_model.php:4783 msgid "QSO could not be matched" msgstr "Não há correspondência de contactos" -#: application/models/Logbook_model.php:4771 +#: application/models/Logbook_model.php:4789 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "confirmado por LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:4776 +#: application/models/Logbook_model.php:4794 msgid "confirmed by award manager" msgstr "confirmado pelo gestor do diploma" -#: application/models/Logbook_model.php:4779 +#: application/models/Logbook_model.php:4797 msgid "confirmed by cross-check of DCL data" msgstr "confirmado pelo controlo cruzado dos dados da DCL" -#: application/models/Logbook_model.php:4782 +#: application/models/Logbook_model.php:4800 msgid "confirmation pending" msgstr "confirmação pendente" -#: application/models/Logbook_model.php:4785 +#: application/models/Logbook_model.php:4803 msgid "unconfirmed" msgstr "não confirmado" -#: application/models/Logbook_model.php:4788 +#: application/models/Logbook_model.php:4806 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:287 msgid "unknown" msgstr "desconhecido" -#: application/models/Logbook_model.php:5626 +#: application/models/Logbook_model.php:5644 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:39 #: application/views/awards/gridmaster/index.php:54 @@ -4012,7 +4007,7 @@ msgstr "Contagem mínima" #: application/views/awards/wapc/index.php:168 #: application/views/awards/was/index.php:201 #: application/views/awards/wwff/index.php:65 -#: application/views/callstats/index.php:129 +#: application/views/callstats/index.php:128 #: application/views/clublog/export.php:60 #: application/views/distancerecords/index.php:52 #: application/views/public_search/empty.php:3 @@ -4029,7 +4024,7 @@ msgstr "Nada encontrado!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wwff/index.php:35 #: application/views/cabrillo/index.php:31 -#: application/views/callstats/index.php:148 +#: application/views/callstats/index.php:147 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 #: application/views/contesting/index.php:166 @@ -4073,7 +4068,7 @@ msgid "Count" msgstr "Contagem" #: application/views/activators/index.php:101 -#: application/views/callstats/index.php:150 +#: application/views/callstats/index.php:151 #: application/views/timeline/index.php:203 #: application/views/timeline/index.php:238 #: application/views/timeline/index.php:266 @@ -4552,7 +4547,7 @@ msgstr "" "reescrever esses dados no Wavelog." #: application/views/adif/import.php:370 -#: application/views/adif/import_success.php:31 +#: application/views/adif/import_success.php:40 #: application/views/lotw_views/index.php:137 msgid "Information" msgstr "Informação" @@ -4616,27 +4611,31 @@ msgstr "" "de dados. Por favor, verifique o ficheiro ADIF importado. Pode usar um " "verificador de ficheiros ADIF online. Por exemplo:" -#: application/views/adif/import_success.php:17 -msgid "Yay, its imported!" -msgstr "Boa, foi importado!" +#: application/views/adif/import_success.php:22 +msgid "Yay, it's imported!" +msgstr "" -#: application/views/adif/import_success.php:18 +#: application/views/adif/import_success.php:23 msgid "The ADIF File has been imported." msgstr "O ficheiro ADIF foi importado." -#: application/views/adif/import_success.php:22 +#: application/views/adif/import_success.php:25 +msgid "Number of QSOs imported:" +msgstr "" + +#: application/views/adif/import_success.php:31 msgid "Dupes were inserted!" msgstr "Foram inseridos duplicados!" -#: application/views/adif/import_success.php:24 +#: application/views/adif/import_success.php:33 msgid "Dupes were skipped." msgstr "Os duplicados foram ignorados." -#: application/views/adif/import_success.php:31 +#: application/views/adif/import_success.php:40 msgid "Contest logs imported" msgstr "Logs de concurso importados" -#: application/views/adif/import_success.php:33 +#: application/views/adif/import_success.php:42 msgid "" "Sometimes, depending on your contest logging software, your exchanges will " "not be imported properly from that softwares ADIF. If you like to correct " @@ -4647,21 +4646,26 @@ msgstr "" "corrigir isso, mude para a aba de Importação CBR na página de Importação " "ADIF." -#: application/views/adif/import_success.php:33 +#: application/views/adif/import_success.php:42 msgid "You imported at least 1 QSO containing a contest ID." msgstr "Importou pelo menos 1 contacto contendo um ID de concurso." -#: application/views/adif/import_success.php:34 +#: application/views/adif/import_success.php:43 msgid "We found the following numbers of QSOs for the following contest IDs:" msgstr "" "Encontrámos os seguintes números de contactos para os seguintes IDs de " "concurso:" -#: application/views/adif/import_success.php:47 +#: application/views/adif/import_success.php:57 msgid "Import details / possible problems" msgstr "Detalhes de importação / possíveis problemas" -#: application/views/adif/import_success.php:48 +#: application/views/adif/import_success.php:58 +#, php-format +msgid "Check %s for hints about errors in ADIF files." +msgstr "Verifica %s para dicas sobre erros em ficheiros ADIF." + +#: application/views/adif/import_success.php:59 msgid "" "You might have ADIF errors, the QSOs have still been added. Please check the " "following information:" @@ -4939,6 +4943,8 @@ msgid "" "Fields taken for this Award: Propagation-Mode and SAT-Name (ADIF: " "PROP_MODE=SAT, SAT_NAME='AO-73')" msgstr "" +"Campos considerados para este diploma: Modo de Propagação e Nome do SAT " +"(ADIF: PROP_MODE=SAT, SAT_NAME='AO-73')" #: application/views/awards/73on73/index.php:32 #: application/views/awards/jcc/index.php:152 @@ -5001,6 +5007,9 @@ msgid "" "Fields taken for this Award: State (ADIF: STATE), Stations County (ADIF: " "CNTY), DXCC (Must be one of 291 (U.S.A.) ,6 (ALASKA) or 110 (HAWAII))" msgstr "" +"Campos considerados para este diploma: Estado (ADIF: STATE), Condado da " +"Estação (ADIF: CNTY), DXCC (Deve ser um dos 291 (E.U.A.), 6 (ALASCA) ou 110 " +"(HAWAI))" #: application/views/awards/counties/index.php:22 msgid "Counties Worked" @@ -5103,7 +5112,7 @@ msgstr "Podes encontrar todas as informações e regras no site do N4BAA: %s" #: application/views/awards/cq/index.php:24 msgid "Fields taken for this Award: CQ-Zone (ADIF: CQZ)" -msgstr "" +msgstr "Campos considerados para este diploma: Zona CQ (ADIF: CQZ)" #: application/views/awards/cq/index.php:26 msgid "Awards - CQ WAZ" @@ -5365,7 +5374,7 @@ msgstr "" #: application/views/awards/dok/index.php:11 msgid "Fields taken for this Award: DOK (ADIF: DARC_DOK)" -msgstr "" +msgstr "Campos considerados para este diploma: DOK (ADIF: DARC_DOK)" #: application/views/awards/dok/index.php:21 msgid "DOK / SDOK" @@ -5452,6 +5461,8 @@ msgid "" "Fields taken for this Award: DXCC (Needs to be a valid one out of the DXCC-" "ADIF-Spec-List" msgstr "" +"Campos considerados para este diploma: DXCC (Precisa de ser um válido da " +"lista DXCC-ADIF-Spec-List" #: application/views/awards/dxcc/index.php:33 #: application/views/awards/iota/index.php:34 @@ -5624,6 +5635,8 @@ msgid "" "Fields taken for this Award: DXCC (Must be USA), Gridsquare (Must contain a " "grid from one of the 488 mainland gridsquares!), Band must be 6M." msgstr "" +"Campos considerados para este diploma: DXCC (Deve ser EUA), Gridsquare (Deve " +"conter uma grelha de uma das 488 grelhas do continente!), Banda deve ser 6M." #: application/views/awards/gridmaster/index.php:8 msgid "US Gridmaster Award" @@ -5678,6 +5691,9 @@ msgid "" "grid from one of the 488 mainland gridsquares!), Propagation-Mode and SAT-" "Name" msgstr "" +"Campos considerados para este diploma: DXCC (Deve ser EUA), Gridsquare (Deve " +"conter uma grelha de uma dos 488 locators do continente!), Modo de " +"Propagação e Nome do SAT" #: application/views/awards/gridmaster/index.php:14 msgid "Gridmaster Award" @@ -5706,18 +5722,24 @@ msgid "" "Fields taken for this Award: DXCC (Must be Germany), Gridsquare, Propagation-" "Mode and SAT-Name" msgstr "" +"Campos considerados para este diploma: DXCC (Deve ser Alemanha), Locator, " +"Modo de Propagação e Nome SAT" #: application/views/awards/gridmaster/index.php:23 msgid "" "Fields taken for this Award: DXCC (Must be Luxembourg), Gridsquare, " "Propagation-Mode and SAT-Name" msgstr "" +"Campos considerados para este diploma: DXCC (Deve ser Luxemburgo), Locator, " +"Modo de Propagação e Nome do SAT" #: application/views/awards/gridmaster/index.php:26 msgid "" "Fields taken for this Award: DXCC (Must be Japan), Gridsquare, Propagation-" "Mode and SAT-Name" msgstr "" +"Campos considerados para este diploma: DXCC (deve ser Japão), Locator, Modo " +"de Propagação e Nome do SAT" #: application/views/awards/helvetia/index.php:3 msgctxt "Switzerland Canton" @@ -5759,6 +5781,8 @@ msgid "" "Fields taken for this Award: DXCC (Must be Switzerland) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" +"Campos considerados para este diploma: DXCC (Deve ser Suíça) e ESTADO (Deve " +"conter uma abreviatura de estado válida!)" #: application/views/awards/helvetia/index.php:115 msgid "Show Helvetia Map" @@ -5827,6 +5851,8 @@ msgid "" "Fields taken for this Award: IOTA (ADIF: IOTA) must contain valid IOTA-" "Reference" msgstr "" +"Campos considerados para este diploma: IOTA (ADIF: IOTA) deve conter uma " +"Referência IOTA válida" #: application/views/awards/iota/index.php:30 msgid "Deleted IOTA" @@ -5902,7 +5928,7 @@ msgstr "Para mais informações, consultar o site Web da %s." #: application/views/awards/itu/index.php:24 msgid "Fields taken for this Award: ITU-Zone (ADIF: ITUZ)" -msgstr "" +msgstr "Campos considerados para este diploma: Zona ITU (ADIF: ITUZ)" #: application/views/awards/itu/index.php:26 msgid "Awards - ITU Zones" @@ -5943,6 +5969,8 @@ msgid "" "Fields taken for this Award: DXCC (Japan) and County (Must contain a valid " "reference!)" msgstr "" +"Campos considerados para este diploma: DXCC (Japão) e Condado (Deve conter " +"uma referência válida!)" #: application/views/awards/jcc/index.php:116 msgid "Show JCC Map" @@ -6012,6 +6040,8 @@ msgstr "" #: application/views/awards/pota/index.php:11 msgid "Fields taken for this Award: POTA_REF (must contain Park-Reference)" msgstr "" +"Campos considerados para este diploma: POTA_REF (deve conter Referência do " +"Parque)" #: application/views/awards/pota/index.php:32 #: application/views/qso/index.php:274 application/views/qso/index.php:567 @@ -6177,6 +6207,8 @@ msgid "" "Fields taken for this Award: Gridsquare and vucc_grids (ADIF: GRIDSQUARE, " "VUCC_GRIDS)" msgstr "" +"Campos considerados para este diploma: Locator e vucc_grids (ADIF: " +"GRIDSQUARE, VUCC_GRIDS)" #: application/views/awards/vucc/index.php:23 msgid "Grids Worked" @@ -6211,6 +6243,8 @@ msgid "" "Fields taken for this Award: SIG (Has to be 'WAB') and SIG_INFO (should " "contain valid WAB-Grid)" msgstr "" +"Campos considerados para este diploma: SIG (Tem de ser 'WAB') e SIG_INFO " +"(deve conter uma grelha WAB válida)" #: application/views/awards/wab/index.php:110 msgid "List" @@ -6236,6 +6270,8 @@ msgid "" "Fields taken for this Award: Continent (ADIF tag 'CONT'). Must contain a " "valid continent-abbreviation!" msgstr "" +"Campos considerados para este diploma: Continente (tag ADIF 'CONT'). Deve " +"conter uma abreviatura de continente válida!" #: application/views/awards/wac/index.php:14 msgid "Awards - Worked All Continents (WAC)" @@ -6279,7 +6315,7 @@ msgstr "" #: application/views/awards/wae/index.php:11 msgid "Fields taken for this Award: Region, DXCC" -msgstr "" +msgstr "Campos considerados para este diploma: Região, DXCC" #: application/views/awards/wae/index.php:162 msgid "WAE Name" @@ -6323,6 +6359,8 @@ msgid "" "Fields taken for this Award: DXCC (Japan) and STATE (Must contain a valid " "prefecture!)" msgstr "" +"Campos considerados para este diploma: DXCC (Japão) e ESTADO (Deve conter " +"uma prefeitura válida!)" #: application/views/awards/waja/index.php:119 msgid "Show WAJA Map" @@ -6388,6 +6426,8 @@ msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" +"Campos considerados para este diploma: DXCC (Deve ser Países Baixos) e " +"ESTADO (Deve conter uma abreviatura de estado válida!)" #: application/views/awards/wap/index.php:115 msgid "Show WAP Map" @@ -6429,6 +6469,9 @@ msgid "" "Macao/152, Taiwan/386, Pratas Isl./505 or Scarborough Reef/506) and valid " "State (ADIF: DXCC and STATE)" msgstr "" +"Campos considerados para este diploma: DXCC (Deve ser um dos seguintes: " +"China/318, HongKong/321, Macau/152, Taiwan/386, Ilhas Pratas/505 ou Recife " +"Scarborough/506) e Estado válido (ADIF: DXCC e STATE)" #: application/views/awards/wapc/index.php:119 msgid "Code" @@ -6486,6 +6529,9 @@ msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" msgstr "" +"Campos considerados para este diploma: DXCC (Deve ser um dos E.U.A., Alasca " +"ou Havai) e ESTADO (Deve conter uma abreviatura válida de um estado dos E.U." +"A.!)" #: application/views/awards/was/index.php:115 msgid "Show WAS Map" @@ -6517,7 +6563,7 @@ msgstr "" #: application/views/awards/wwff/index.php:11 msgid "Fields taken for this Award: WWFF (ADIF: WWFF_REF)" -msgstr "" +msgstr "Campos considerados para este diploma: WWFF (ADIF: WWFF_REF)" #: application/views/awards/wwff/index.php:32 #: application/views/qso/index.php:262 application/views/qso/index.php:554 @@ -7156,10 +7202,19 @@ msgstr "Não foram encontrados concursos no seu log." msgid "All except SAT" msgstr "Todos exceto satélite" -#: application/views/callstats/index.php:149 +#: application/views/callstats/index.php:148 msgid "#QSOs" msgstr "#QSOs" +#: application/views/callstats/index.php:149 +msgid "First QSO" +msgstr "" + +#: application/views/callstats/index.php:150 +#: application/views/stationsetup/stationsetup.php:129 +msgid "Last QSO" +msgstr "Último QSO" + #: application/views/cfd/index.php:7 #, php-format msgid "Export of CFD-File for DARC-Toplist (See %s)" @@ -14043,6 +14098,11 @@ msgstr "Nome do Grupo de Interesse Especial da Estação (por exemplo, GMA).." msgid "Special Interest Group Information" msgstr "Informação do Grupo de Interesse Especial" +#: application/views/station_profile/edit.php:309 +#, php-format +msgid "Trouble? Check the %swiki%s." +msgstr "Problemas? Verifique a %swiki%s." + #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "Nome do logbook da estação" @@ -14189,10 +14249,6 @@ msgstr "Manutenção" msgid "Please reassign them at " msgstr "Por favor, reatribua-os em " -#: application/views/stationsetup/stationsetup.php:129 -msgid "Last QSO" -msgstr "Último QSO" - #: application/views/stationsetup/stationsetup.php:131 msgid "Linked" msgstr "Conectado" @@ -14825,8 +14881,13 @@ msgid "Station Locations Quickswitch" msgstr "Mudança rápida de localizações de estações" #: application/views/user/edit.php:483 -msgid "Show the Station Locations Quickswitch in the main menu" -msgstr "Mostrar a troca rápida de localizações de estações no menu principal" +msgid "" +"Show the Station Locations Quickswitch in the main menu. You can add " +"locations by adding them to favourites at the station setup page." +msgstr "" +"Mostra a troca rápida de localizações de estações no menu principal. Pode " +"adicionar localizações ao adicioná-las aos favoritos na página de " +"configuração da estação." #: application/views/user/edit.php:487 msgid "UTC Time in Menu" @@ -15881,6 +15942,13 @@ msgstr "Submeter pedido" msgid "Rcvd" msgstr "Recebido" +#~ msgid "Yay, its imported!" +#~ msgstr "Boa, foi importado!" + +#~ msgid "Show the Station Locations Quickswitch in the main menu" +#~ msgstr "" +#~ "Mostrar a troca rápida de localizações de estações no menu principal" + #~ msgid "ADIF File" #~ msgstr "Ficheiro ADIF" diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.mo b/application/locale/ru_RU/LC_MESSAGES/messages.mo index b19fdaa84..d979b22e9 100644 Binary files a/application/locale/ru_RU/LC_MESSAGES/messages.mo and b/application/locale/ru_RU/LC_MESSAGES/messages.mo differ diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.po b/application/locale/ru_RU/LC_MESSAGES/messages.po index aa8ada965..220ed7171 100644 --- a/application/locale/ru_RU/LC_MESSAGES/messages.po +++ b/application/locale/ru_RU/LC_MESSAGES/messages.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-08-20 19:04+0000\n" -"PO-Revision-Date: 2025-08-19 17:14+0000\n" -"Last-Translator: Fabian Berg \n" +"POT-Creation-Date: 2025-08-24 15:29+0000\n" +"PO-Revision-Date: 2025-08-24 12:50+0000\n" +"Last-Translator: Michael Skolsky \n" "Language-Team: Russian \n" "Language: ru_RU\n" @@ -235,16 +235,16 @@ msgstr "Импорт ADIF не удался!" msgid "Station Profile not valid for User" msgstr "Профиль QTH не соответствует пользователю" -#: application/controllers/Adif.php:282 +#: application/controllers/Adif.php:283 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "ADIF импортирован" -#: application/controllers/Adif.php:293 +#: application/controllers/Adif.php:294 msgid "DCL Import" msgstr "Импорт DCL" -#: application/controllers/Adif.php:351 +#: application/controllers/Adif.php:352 msgid "DCL Data Imported" msgstr "Данные DCL импортированы" @@ -3201,34 +3201,29 @@ msgstr "HRDlog: на найдены QSO для загруки для позыв msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "HRDlog: не найдены профили QTH с данными входя на HRDlog." -#: application/models/Logbook_model.php:1291 +#: application/models/Logbook_model.php:1292 msgid "Station ID not allowed" msgstr "Недопустимый ID станции" -#: application/models/Logbook_model.php:1296 +#: application/models/Logbook_model.php:1297 msgid "No Call given" msgstr "Не указан позывной" -#: application/models/Logbook_model.php:1366 -#: application/models/Logbook_model.php:1540 +#: application/models/Logbook_model.php:1367 +#: application/models/Logbook_model.php:1541 msgid "DXCC has to be Numeric" msgstr "DXCC должен быть цифровым" -#: application/models/Logbook_model.php:3987 +#: application/models/Logbook_model.php:4005 #, 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:3988 -#, php-format -msgid "Check %s for hints about errors in ADIF files." -msgstr "Проверьте %s на наличие подсказок об ошибках в файлах ADIF." - -#: application/models/Logbook_model.php:4000 +#: application/models/Logbook_model.php:4018 msgid "QSO on" msgstr "начало QSO" -#: application/models/Logbook_model.php:4000 +#: application/models/Logbook_model.php:4018 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3236,63 +3231,63 @@ msgstr "" "Вы пытались импортировать QSO без указанного позывного. Это QSO не было " "импортировано. Оно недействительно" -#: application/models/Logbook_model.php:4299 +#: application/models/Logbook_model.php:4317 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "дата получения QSL недействительна (ГГГГММДД)" -#: application/models/Logbook_model.php:4310 +#: application/models/Logbook_model.php:4328 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "дата отправки QSL недействительна (ГГГГММДД)" -#: application/models/Logbook_model.php:4371 +#: application/models/Logbook_model.php:4389 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "дата загрузки QSO в Clublog недействительна (ГГГГММДД)" -#: application/models/Logbook_model.php:4391 +#: application/models/Logbook_model.php:4409 msgid "the lotw_qslrdate is invalid (YYYYMMDD)" msgstr "дата получения LoTW QSL недействительна (ГГГГММДД)" -#: application/models/Logbook_model.php:4412 +#: application/models/Logbook_model.php:4430 msgid "the lotw_qslsdate is invalid (YYYYMMDD)" msgstr "дата отправки LoTW QSL недействительна (ГГГГММДД)" -#: application/models/Logbook_model.php:4704 +#: application/models/Logbook_model.php:4722 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Дубликат для" -#: application/models/Logbook_model.php:4765 +#: application/models/Logbook_model.php:4783 msgid "QSO could not be matched" msgstr "QSO не может быть сопоставлено" -#: application/models/Logbook_model.php:4771 +#: application/models/Logbook_model.php:4789 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "подтверждено LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:4776 +#: application/models/Logbook_model.php:4794 msgid "confirmed by award manager" msgstr "подтверждено менеджером диплома" -#: application/models/Logbook_model.php:4779 +#: application/models/Logbook_model.php:4797 msgid "confirmed by cross-check of DCL data" msgstr "подтверждено кросс-проверкой с данными DCL" -#: application/models/Logbook_model.php:4782 +#: application/models/Logbook_model.php:4800 msgid "confirmation pending" msgstr "подтверждение ожидается" -#: application/models/Logbook_model.php:4785 +#: application/models/Logbook_model.php:4803 msgid "unconfirmed" msgstr "не подтверждено" -#: application/models/Logbook_model.php:4788 +#: application/models/Logbook_model.php:4806 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:287 msgid "unknown" msgstr "неизвестно" -#: application/models/Logbook_model.php:5626 +#: application/models/Logbook_model.php:5644 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:39 #: application/views/awards/gridmaster/index.php:54 @@ -4004,7 +3999,7 @@ msgstr "Минимальное количество" #: application/views/awards/wapc/index.php:168 #: application/views/awards/was/index.php:201 #: application/views/awards/wwff/index.php:65 -#: application/views/callstats/index.php:129 +#: application/views/callstats/index.php:128 #: application/views/clublog/export.php:60 #: application/views/distancerecords/index.php:52 #: application/views/public_search/empty.php:3 @@ -4021,7 +4016,7 @@ msgstr "Не найдено!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wwff/index.php:35 #: application/views/cabrillo/index.php:31 -#: application/views/callstats/index.php:148 +#: application/views/callstats/index.php:147 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 #: application/views/contesting/index.php:166 @@ -4065,7 +4060,7 @@ msgid "Count" msgstr "Счётчик" #: application/views/activators/index.php:101 -#: application/views/callstats/index.php:150 +#: application/views/callstats/index.php:151 #: application/views/timeline/index.php:203 #: application/views/timeline/index.php:238 #: application/views/timeline/index.php:266 @@ -4303,7 +4298,7 @@ msgstr "" #: application/views/adif/import.php:108 msgid "Basic Settings" -msgstr "" +msgstr "Основные настройки" #: application/views/adif/import.php:115 msgid "Import duplicate QSOs" @@ -4355,7 +4350,7 @@ msgstr "" #: application/views/adif/import.php:151 msgid "Mark QSOs as uploaded (This does NOT upload QSOs to these services!)" -msgstr "" +msgstr "Отметить QSO, как загруженные (Это НЕ загружает QSO на эти сервисы!)" #: application/views/adif/import.php:158 msgid "Mark imported QSOs as uploaded to LoTW" @@ -4389,7 +4384,7 @@ msgstr "Отметить импортированные QSO как загруж #: application/views/adif/import.php:207 msgid "Toggle all checkboxes" -msgstr "" +msgstr "Переключить все отметки" #: application/views/adif/import.php:212 application/views/adif/import.php:355 #: application/views/adif/import.php:393 @@ -4441,7 +4436,7 @@ msgstr "До даты" #: application/views/adif/import.php:260 msgid "Export options" -msgstr "" +msgstr "Варианты экспорта" #: application/views/adif/import.php:267 msgid "Mark exported QSOs as uploaded to LoTW" @@ -4542,7 +4537,7 @@ msgstr "" "экспортированный из этого ПО, чтобы переписать эти данные в Wavelog." #: application/views/adif/import.php:370 -#: application/views/adif/import_success.php:31 +#: application/views/adif/import_success.php:40 #: application/views/lotw_views/index.php:137 msgid "Information" msgstr "Информация" @@ -4607,27 +4602,31 @@ msgstr "" "базу данных. Пожалуйста, проверьте импортированный файл ADIF. Вы можете " "использовать онлайн-проверку файлов ADIF, к примеру:" -#: application/views/adif/import_success.php:17 -msgid "Yay, its imported!" -msgstr "Готово!" +#: application/views/adif/import_success.php:22 +msgid "Yay, it's imported!" +msgstr "" -#: application/views/adif/import_success.php:18 +#: application/views/adif/import_success.php:23 msgid "The ADIF File has been imported." msgstr "ADIF файл импортирован." -#: application/views/adif/import_success.php:22 +#: application/views/adif/import_success.php:25 +msgid "Number of QSOs imported:" +msgstr "" + +#: application/views/adif/import_success.php:31 msgid "Dupes were inserted!" msgstr "Дубликаты добавлены!" -#: application/views/adif/import_success.php:24 +#: application/views/adif/import_success.php:33 msgid "Dupes were skipped." msgstr "Дубликаты игнорированы." -#: application/views/adif/import_success.php:31 +#: application/views/adif/import_success.php:40 msgid "Contest logs imported" msgstr "Журналы контестов импортированы" -#: application/views/adif/import_success.php:33 +#: application/views/adif/import_success.php:42 msgid "" "Sometimes, depending on your contest logging software, your exchanges will " "not be imported properly from that softwares ADIF. If you like to correct " @@ -4638,20 +4637,25 @@ msgstr "" "этого программного обеспечения. Если хотите это исправить, переключитесь на " "вкладку CBR Import на странице импорта ADIF." -#: application/views/adif/import_success.php:33 +#: application/views/adif/import_success.php:42 msgid "You imported at least 1 QSO containing a contest ID." msgstr "Вы импортировали, как минимум, 1 QSO с идентификатором контеста." -#: application/views/adif/import_success.php:34 +#: application/views/adif/import_success.php:43 msgid "We found the following numbers of QSOs for the following contest IDs:" msgstr "" "Мы нашли следующие количества QSO для следующих идентификаторов контестов:" -#: application/views/adif/import_success.php:47 +#: application/views/adif/import_success.php:57 msgid "Import details / possible problems" msgstr "Детали импорта / возможные проблемы" -#: application/views/adif/import_success.php:48 +#: application/views/adif/import_success.php:58 +#, php-format +msgid "Check %s for hints about errors in ADIF files." +msgstr "Проверьте %s на наличие подсказок об ошибках в файлах ADIF." + +#: application/views/adif/import_success.php:59 msgid "" "You might have ADIF errors, the QSOs have still been added. Please check the " "following information:" @@ -4929,6 +4933,8 @@ msgid "" "Fields taken for this Award: Propagation-Mode and SAT-Name (ADIF: " "PROP_MODE=SAT, SAT_NAME='AO-73')" msgstr "" +"Поля, используемые для этого диплома: PROP_MODE (должно иметь значение SAT) " +"и SAT_NAME (назваение спутника, к примеру, AO-73)" #: application/views/awards/73on73/index.php:32 #: application/views/awards/jcc/index.php:152 @@ -4990,6 +4996,8 @@ msgid "" "Fields taken for this Award: State (ADIF: STATE), Stations County (ADIF: " "CNTY), DXCC (Must be one of 291 (U.S.A.) ,6 (ALASKA) or 110 (HAWAII))" msgstr "" +"Поля, используемые для этого диплома: STATE (штат), CNTY (округ), DXCC " +"(должно быть одним из: 291 (США), 6 (Аляска) или 110 (Гавайи))" #: application/views/awards/counties/index.php:22 msgid "Counties Worked" @@ -5091,7 +5099,7 @@ msgstr "Вы можете найти всю информацию и правил #: application/views/awards/cq/index.php:24 msgid "Fields taken for this Award: CQ-Zone (ADIF: CQZ)" -msgstr "" +msgstr "Поле, используемое для этого диплома: CQZ (зона CQ)" #: application/views/awards/cq/index.php:26 msgid "Awards - CQ WAZ" @@ -5353,7 +5361,7 @@ msgstr "" #: application/views/awards/dok/index.php:11 msgid "Fields taken for this Award: DOK (ADIF: DARC_DOK)" -msgstr "" +msgstr "Поле, используемое для этого диплома: DARC_DOK (DOK)" #: application/views/awards/dok/index.php:21 msgid "DOK / SDOK" @@ -5439,6 +5447,8 @@ msgid "" "Fields taken for this Award: DXCC (Needs to be a valid one out of the DXCC-" "ADIF-Spec-List" msgstr "" +"Поле, используемое для этого диплома: DXCC (должно быть действительным из " +"списка DXCC-ADIF-Spec-List)" #: application/views/awards/dxcc/index.php:33 #: application/views/awards/iota/index.php:34 @@ -5540,31 +5550,31 @@ msgstr "Показать карту DXCC" #: application/views/awards/dxcc/index.php:221 msgid "Legend:" -msgstr "" +msgstr "Легенда:" #: application/views/awards/dxcc/index.php:222 msgid "(Q)SL-Paper-Card" -msgstr "" +msgstr "Бумажная (Q)SL" #: application/views/awards/dxcc/index.php:223 msgid "(L)oTW" -msgstr "" +msgstr "(L)oTW" #: application/views/awards/dxcc/index.php:224 msgid "(e)QSL" -msgstr "" +msgstr "(e)QSL" #: application/views/awards/dxcc/index.php:225 msgid "QR(Z)-\"confirmation\"" -msgstr "" +msgstr "\"подтверждение\"-QR(Z)" #: application/views/awards/dxcc/index.php:226 msgid "(C)lublog" -msgstr "" +msgstr "(C)lublog" #: application/views/awards/dxcc/index.php:227 msgid "(W)orked" -msgstr "" +msgstr "(С)работано" #: application/views/awards/dxcc/index.php:233 msgid "DXCC Name" @@ -5613,6 +5623,9 @@ msgid "" "Fields taken for this Award: DXCC (Must be USA), Gridsquare (Must contain a " "grid from one of the 488 mainland gridsquares!), Band must be 6M." msgstr "" +"Поля, используемые для этого диплома: DXCC (должен быть 291 (США)), " +"GRIDSQUARE (должно содержать квадрат из 488 материковых!), BAND (должен быть " +"6M)." #: application/views/awards/gridmaster/index.php:8 msgid "US Gridmaster Award" @@ -5666,6 +5679,9 @@ msgid "" "grid from one of the 488 mainland gridsquares!), Propagation-Mode and SAT-" "Name" msgstr "" +"Поля, используемые для этого диплома: DXCC (должен быть 291 (США)), " +"GRIDSQUARE (должно содержать квадрат из 488 материковых!), PROP_MODE (должно " +"быть SAT) и SAT_NAME (название спутника)" #: application/views/awards/gridmaster/index.php:14 msgid "Gridmaster Award" @@ -5694,18 +5710,24 @@ msgid "" "Fields taken for this Award: DXCC (Must be Germany), Gridsquare, Propagation-" "Mode and SAT-Name" msgstr "" +"Поля, используемые для этого диплома: DXCC (должно быть 81 (Германия)), " +"GRIDSQUARE, PROP_MODE (должно быть SAT) и SAT_NAME (название спутника)" #: application/views/awards/gridmaster/index.php:23 msgid "" "Fields taken for this Award: DXCC (Must be Luxembourg), Gridsquare, " "Propagation-Mode and SAT-Name" msgstr "" +"Поля, используемые для этого диплома: DXCC (должно быть 254 (Люксембург)), " +"GRIDSQUARE, PROP_MODE (должно быть SAT) и SAT_NAME (название спутника)" #: application/views/awards/gridmaster/index.php:26 msgid "" "Fields taken for this Award: DXCC (Must be Japan), Gridsquare, Propagation-" "Mode and SAT-Name" msgstr "" +"Поля, используемые для этого диплома: DXCC (должно быть 339 (Япония)), " +"GRIDSQUARE, PROP_MODE (должно быть SAT) и SAT_NAME (название спутника)" #: application/views/awards/helvetia/index.php:3 msgctxt "Switzerland Canton" @@ -5747,6 +5769,8 @@ msgid "" "Fields taken for this Award: DXCC (Must be Switzerland) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" +"Поля, используемые для этого диплома: DXCC (должно быть 287 (Швейцария)) и " +"STATE (должно содержать действительную аббревиатуру штата!)" #: application/views/awards/helvetia/index.php:115 msgid "Show Helvetia Map" @@ -5816,6 +5840,8 @@ msgid "" "Fields taken for this Award: IOTA (ADIF: IOTA) must contain valid IOTA-" "Reference" msgstr "" +"Поле, используемое для этого диплома: IOTA (должно содержать действительную " +"референцию IOTA)" #: application/views/awards/iota/index.php:30 msgid "Deleted IOTA" @@ -5892,7 +5918,7 @@ msgstr "" #: application/views/awards/itu/index.php:24 msgid "Fields taken for this Award: ITU-Zone (ADIF: ITUZ)" -msgstr "" +msgstr "Поле, используемое для этого диплома: ITUZ (зона ITU)" #: application/views/awards/itu/index.php:26 msgid "Awards - ITU Zones" @@ -5932,6 +5958,8 @@ msgid "" "Fields taken for this Award: DXCC (Japan) and County (Must contain a valid " "reference!)" msgstr "" +"Поля, используемые для этого диплома: DXCC (должно быть 339 (Япония)) и CNTY " +"(должен содержать действительное значение!)" #: application/views/awards/jcc/index.php:116 msgid "Show JCC Map" @@ -6000,6 +6028,8 @@ msgstr "" #: application/views/awards/pota/index.php:11 msgid "Fields taken for this Award: POTA_REF (must contain Park-Reference)" msgstr "" +"Поле, используемое для этого диплома: POTA_REF (должно содержать значение на " +"референцию POTA)" #: application/views/awards/pota/index.php:32 #: application/views/qso/index.php:274 application/views/qso/index.php:567 @@ -6162,7 +6192,7 @@ msgstr "Учитываются только QSO на УКВ диапазонах msgid "" "Fields taken for this Award: Gridsquare and vucc_grids (ADIF: GRIDSQUARE, " "VUCC_GRIDS)" -msgstr "" +msgstr "Поля, используемые для этого диплома: GRIDSQUARE и VUCC_GRIDS" #: application/views/awards/vucc/index.php:23 msgid "Grids Worked" @@ -6197,6 +6227,8 @@ msgid "" "Fields taken for this Award: SIG (Has to be 'WAB') and SIG_INFO (should " "contain valid WAB-Grid)" msgstr "" +"Поля, используемые для этого диплома: SIG (должно быть 'WAB') и SIG_INFO " +"(должно содержать действительое значение сетки WAB)" #: application/views/awards/wab/index.php:110 msgid "List" @@ -6222,6 +6254,8 @@ msgid "" "Fields taken for this Award: Continent (ADIF tag 'CONT'). Must contain a " "valid continent-abbreviation!" msgstr "" +"Поле, используемое для этого диплома: CONT (должно содержать действительную " +"аббревиатуру континента!)." #: application/views/awards/wac/index.php:14 msgid "Awards - Worked All Continents (WAC)" @@ -6265,7 +6299,7 @@ msgstr "" #: application/views/awards/wae/index.php:11 msgid "Fields taken for this Award: Region, DXCC" -msgstr "" +msgstr "Поля, используемые для этого диплома: STATE, DXCC" #: application/views/awards/wae/index.php:162 msgid "WAE Name" @@ -6309,6 +6343,8 @@ msgid "" "Fields taken for this Award: DXCC (Japan) and STATE (Must contain a valid " "prefecture!)" msgstr "" +"Поля, используемые для этого диплома: DXCC (должно быть 339 (Япония)) и " +"STATE (должно содержать действующую аббревиатуру для префектуры!)" #: application/views/awards/waja/index.php:119 msgid "Show WAJA Map" @@ -6372,6 +6408,8 @@ msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" +"Поля, используемые для этого диплома: DXCC (должно быть 263 (Нидерланды)) и " +"STATE (должно содержать действительную аббревиатуру штата!)" #: application/views/awards/wap/index.php:115 msgid "Show WAP Map" @@ -6412,6 +6450,9 @@ msgid "" "Macao/152, Taiwan/386, Pratas Isl./505 or Scarborough Reef/506) and valid " "State (ADIF: DXCC and STATE)" msgstr "" +"Поля, используемые для этого диплома: DXCC (должно быть одним из 318 " +"(Китай), 321 (Гонконг), 152 (Макао), 386 (Тайвань), 505 (о. Пратас) или 506 " +"(риф Скарборо)) и STATE (корректное значение)" #: application/views/awards/wapc/index.php:119 msgid "Code" @@ -6467,6 +6508,9 @@ msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" msgstr "" +"Поля, используемые для этого диплома: DXCC (должно быть одним из: 291 (США), " +"6 (Аляска) или 110 (Гавайи) и STATE (должно содержать действительную " +"аббревиатуру штата США!)" #: application/views/awards/was/index.php:115 msgid "Show WAS Map" @@ -6499,7 +6543,7 @@ msgstr "" #: application/views/awards/wwff/index.php:11 msgid "Fields taken for this Award: WWFF (ADIF: WWFF_REF)" -msgstr "" +msgstr "Поле, используемое для этого диплома: WWFF_REF (референция WWFF)" #: application/views/awards/wwff/index.php:32 #: application/views/qso/index.php:262 application/views/qso/index.php:554 @@ -7140,10 +7184,19 @@ msgstr "В вашем логе конест-сессий не найдено." msgid "All except SAT" msgstr "Все, за исключением спутниковых" -#: application/views/callstats/index.php:149 +#: application/views/callstats/index.php:148 msgid "#QSOs" msgstr "#QSO" +#: application/views/callstats/index.php:149 +msgid "First QSO" +msgstr "" + +#: application/views/callstats/index.php:150 +#: application/views/stationsetup/stationsetup.php:129 +msgid "Last QSO" +msgstr "Последний QSO" + #: application/views/cfd/index.php:7 #, php-format msgid "Export of CFD-File for DARC-Toplist (See %s)" @@ -14006,6 +14059,11 @@ msgstr "Название группы по интересам (например, msgid "Special Interest Group Information" msgstr "Данные SIG" +#: application/views/station_profile/edit.php:309 +#, php-format +msgid "Trouble? Check the %swiki%s." +msgstr "Проблемы? Смотри в %swiki%s." + #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "Имя журнала" @@ -14149,10 +14207,6 @@ msgstr "Обслуживание" msgid "Please reassign them at " msgstr "Пожалуйста, переназначьте их в " -#: application/views/stationsetup/stationsetup.php:129 -msgid "Last QSO" -msgstr "Последний QSO" - #: application/views/stationsetup/stationsetup.php:131 msgid "Linked" msgstr "Привязка" @@ -14781,8 +14835,12 @@ msgid "Station Locations Quickswitch" msgstr "Быстрое переключение профилей QTH" #: application/views/user/edit.php:483 -msgid "Show the Station Locations Quickswitch in the main menu" -msgstr "Показать переключатель профилей QTH в главном меню" +msgid "" +"Show the Station Locations Quickswitch in the main menu. You can add " +"locations by adding them to favourites at the station setup page." +msgstr "" +"Отобразить быстрое переключение профилей QTH в главном меню. Для добавления " +"профиля QTH в списоу, добавьте его в избранное на странице настройки станции." #: application/views/user/edit.php:487 msgid "UTC Time in Menu" @@ -15836,6 +15894,12 @@ msgstr "Отправить запрос" msgid "Rcvd" msgstr "Получено" +#~ msgid "Yay, its imported!" +#~ msgstr "Готово!" + +#~ msgid "Show the Station Locations Quickswitch in the main menu" +#~ msgstr "Показать переключатель профилей QTH в главном меню" + #~ msgid "ADIF File" #~ msgstr "Файл ADIF" diff --git a/application/locale/sk/LC_MESSAGES/messages.po b/application/locale/sk/LC_MESSAGES/messages.po index a9f7ce59f..8974b5f57 100644 --- a/application/locale/sk/LC_MESSAGES/messages.po +++ b/application/locale/sk/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-08-20 19:04+0000\n" +"POT-Creation-Date: 2025-08-24 15:29+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -226,16 +226,16 @@ msgstr "" msgid "Station Profile not valid for User" msgstr "" -#: application/controllers/Adif.php:282 +#: application/controllers/Adif.php:283 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "" -#: application/controllers/Adif.php:293 +#: application/controllers/Adif.php:294 msgid "DCL Import" msgstr "" -#: application/controllers/Adif.php:351 +#: application/controllers/Adif.php:352 msgid "DCL Data Imported" msgstr "" @@ -3120,96 +3120,91 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:1291 +#: application/models/Logbook_model.php:1292 msgid "Station ID not allowed" msgstr "" -#: application/models/Logbook_model.php:1296 +#: application/models/Logbook_model.php:1297 msgid "No Call given" msgstr "" -#: application/models/Logbook_model.php:1366 -#: application/models/Logbook_model.php:1540 +#: application/models/Logbook_model.php:1367 +#: application/models/Logbook_model.php:1541 msgid "DXCC has to be Numeric" msgstr "" -#: application/models/Logbook_model.php:3987 +#: application/models/Logbook_model.php:4005 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" -#: application/models/Logbook_model.php:3988 -#, php-format -msgid "Check %s for hints about errors in ADIF files." -msgstr "" - -#: application/models/Logbook_model.php:4000 +#: application/models/Logbook_model.php:4018 msgid "QSO on" msgstr "" -#: application/models/Logbook_model.php:4000 +#: application/models/Logbook_model.php:4018 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:4299 +#: application/models/Logbook_model.php:4317 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4310 +#: application/models/Logbook_model.php:4328 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4371 +#: application/models/Logbook_model.php:4389 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4391 +#: application/models/Logbook_model.php:4409 msgid "the lotw_qslrdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4412 +#: application/models/Logbook_model.php:4430 msgid "the lotw_qslsdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4704 +#: application/models/Logbook_model.php:4722 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "" -#: application/models/Logbook_model.php:4765 +#: application/models/Logbook_model.php:4783 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:4771 +#: application/models/Logbook_model.php:4789 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:4776 +#: application/models/Logbook_model.php:4794 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:4779 +#: application/models/Logbook_model.php:4797 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:4782 +#: application/models/Logbook_model.php:4800 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:4785 +#: application/models/Logbook_model.php:4803 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:4788 +#: application/models/Logbook_model.php:4806 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:287 msgid "unknown" msgstr "" -#: application/models/Logbook_model.php:5626 +#: application/models/Logbook_model.php:5644 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:39 #: application/views/awards/gridmaster/index.php:54 @@ -3920,7 +3915,7 @@ msgstr "" #: application/views/awards/wapc/index.php:168 #: application/views/awards/was/index.php:201 #: application/views/awards/wwff/index.php:65 -#: application/views/callstats/index.php:129 +#: application/views/callstats/index.php:128 #: application/views/clublog/export.php:60 #: application/views/distancerecords/index.php:52 #: application/views/public_search/empty.php:3 @@ -3937,7 +3932,7 @@ msgstr "" #: application/views/awards/sota/index.php:33 #: application/views/awards/wwff/index.php:35 #: application/views/cabrillo/index.php:31 -#: application/views/callstats/index.php:148 +#: application/views/callstats/index.php:147 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 #: application/views/contesting/index.php:166 @@ -3981,7 +3976,7 @@ msgid "Count" msgstr "" #: application/views/activators/index.php:101 -#: application/views/callstats/index.php:150 +#: application/views/callstats/index.php:151 #: application/views/timeline/index.php:203 #: application/views/timeline/index.php:238 #: application/views/timeline/index.php:266 @@ -4428,7 +4423,7 @@ msgid "" msgstr "" #: application/views/adif/import.php:370 -#: application/views/adif/import_success.php:31 +#: application/views/adif/import_success.php:40 #: application/views/lotw_views/index.php:137 msgid "Information" msgstr "" @@ -4478,46 +4473,55 @@ msgid "" "file checker. For example:" msgstr "" -#: application/views/adif/import_success.php:17 -msgid "Yay, its imported!" +#: application/views/adif/import_success.php:22 +msgid "Yay, it's imported!" msgstr "" -#: application/views/adif/import_success.php:18 +#: application/views/adif/import_success.php:23 msgid "The ADIF File has been imported." msgstr "" -#: application/views/adif/import_success.php:22 -msgid "Dupes were inserted!" -msgstr "" - -#: application/views/adif/import_success.php:24 -msgid "Dupes were skipped." +#: application/views/adif/import_success.php:25 +msgid "Number of QSOs imported:" msgstr "" #: application/views/adif/import_success.php:31 -msgid "Contest logs imported" +msgid "Dupes were inserted!" msgstr "" #: application/views/adif/import_success.php:33 +msgid "Dupes were skipped." +msgstr "" + +#: application/views/adif/import_success.php:40 +msgid "Contest logs imported" +msgstr "" + +#: application/views/adif/import_success.php:42 msgid "" "Sometimes, depending on your contest logging software, your exchanges will " "not be imported properly from that softwares ADIF. If you like to correct " "that, switch to the CBR Import Tab of the ADIF Import page." msgstr "" -#: application/views/adif/import_success.php:33 +#: application/views/adif/import_success.php:42 msgid "You imported at least 1 QSO containing a contest ID." msgstr "" -#: application/views/adif/import_success.php:34 +#: application/views/adif/import_success.php:43 msgid "We found the following numbers of QSOs for the following contest IDs:" msgstr "" -#: application/views/adif/import_success.php:47 +#: application/views/adif/import_success.php:57 msgid "Import details / possible problems" msgstr "" -#: application/views/adif/import_success.php:48 +#: application/views/adif/import_success.php:58 +#, php-format +msgid "Check %s for hints about errors in ADIF files." +msgstr "" + +#: application/views/adif/import_success.php:59 msgid "" "You might have ADIF errors, the QSOs have still been added. Please check the " "following information:" @@ -6781,10 +6785,19 @@ msgstr "" msgid "All except SAT" msgstr "" -#: application/views/callstats/index.php:149 +#: application/views/callstats/index.php:148 msgid "#QSOs" msgstr "" +#: application/views/callstats/index.php:149 +msgid "First QSO" +msgstr "" + +#: application/views/callstats/index.php:150 +#: application/views/stationsetup/stationsetup.php:129 +msgid "Last QSO" +msgstr "" + #: application/views/cfd/index.php:7 #, php-format msgid "Export of CFD-File for DARC-Toplist (See %s)" @@ -13270,6 +13283,11 @@ msgstr "" msgid "Special Interest Group Information" msgstr "" +#: application/views/station_profile/edit.php:309 +#, php-format +msgid "Trouble? Check the %swiki%s." +msgstr "" + #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "" @@ -13400,10 +13418,6 @@ msgstr "" msgid "Please reassign them at " msgstr "" -#: application/views/stationsetup/stationsetup.php:129 -msgid "Last QSO" -msgstr "" - #: application/views/stationsetup/stationsetup.php:131 msgid "Linked" msgstr "" @@ -13981,7 +13995,9 @@ msgid "Station Locations Quickswitch" msgstr "" #: application/views/user/edit.php:483 -msgid "Show the Station Locations Quickswitch in the main menu" +msgid "" +"Show the Station Locations Quickswitch in the main menu. You can add " +"locations by adding them to favourites at the station setup page." msgstr "" #: application/views/user/edit.php:487 diff --git a/application/locale/sl/LC_MESSAGES/messages.po b/application/locale/sl/LC_MESSAGES/messages.po index 3c3525583..02f59f985 100644 --- a/application/locale/sl/LC_MESSAGES/messages.po +++ b/application/locale/sl/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-08-20 19:04+0000\n" +"POT-Creation-Date: 2025-08-24 15:29+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -227,16 +227,16 @@ msgstr "" msgid "Station Profile not valid for User" msgstr "" -#: application/controllers/Adif.php:282 +#: application/controllers/Adif.php:283 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "" -#: application/controllers/Adif.php:293 +#: application/controllers/Adif.php:294 msgid "DCL Import" msgstr "" -#: application/controllers/Adif.php:351 +#: application/controllers/Adif.php:352 msgid "DCL Data Imported" msgstr "" @@ -3121,96 +3121,91 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:1291 +#: application/models/Logbook_model.php:1292 msgid "Station ID not allowed" msgstr "" -#: application/models/Logbook_model.php:1296 +#: application/models/Logbook_model.php:1297 msgid "No Call given" msgstr "" -#: application/models/Logbook_model.php:1366 -#: application/models/Logbook_model.php:1540 +#: application/models/Logbook_model.php:1367 +#: application/models/Logbook_model.php:1541 msgid "DXCC has to be Numeric" msgstr "" -#: application/models/Logbook_model.php:3987 +#: application/models/Logbook_model.php:4005 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" -#: application/models/Logbook_model.php:3988 -#, php-format -msgid "Check %s for hints about errors in ADIF files." -msgstr "" - -#: application/models/Logbook_model.php:4000 +#: application/models/Logbook_model.php:4018 msgid "QSO on" msgstr "" -#: application/models/Logbook_model.php:4000 +#: application/models/Logbook_model.php:4018 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:4299 +#: application/models/Logbook_model.php:4317 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4310 +#: application/models/Logbook_model.php:4328 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4371 +#: application/models/Logbook_model.php:4389 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4391 +#: application/models/Logbook_model.php:4409 msgid "the lotw_qslrdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4412 +#: application/models/Logbook_model.php:4430 msgid "the lotw_qslsdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4704 +#: application/models/Logbook_model.php:4722 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "" -#: application/models/Logbook_model.php:4765 +#: application/models/Logbook_model.php:4783 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:4771 +#: application/models/Logbook_model.php:4789 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:4776 +#: application/models/Logbook_model.php:4794 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:4779 +#: application/models/Logbook_model.php:4797 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:4782 +#: application/models/Logbook_model.php:4800 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:4785 +#: application/models/Logbook_model.php:4803 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:4788 +#: application/models/Logbook_model.php:4806 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:287 msgid "unknown" msgstr "" -#: application/models/Logbook_model.php:5626 +#: application/models/Logbook_model.php:5644 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:39 #: application/views/awards/gridmaster/index.php:54 @@ -3923,7 +3918,7 @@ msgstr "" #: application/views/awards/wapc/index.php:168 #: application/views/awards/was/index.php:201 #: application/views/awards/wwff/index.php:65 -#: application/views/callstats/index.php:129 +#: application/views/callstats/index.php:128 #: application/views/clublog/export.php:60 #: application/views/distancerecords/index.php:52 #: application/views/public_search/empty.php:3 @@ -3940,7 +3935,7 @@ msgstr "" #: application/views/awards/sota/index.php:33 #: application/views/awards/wwff/index.php:35 #: application/views/cabrillo/index.php:31 -#: application/views/callstats/index.php:148 +#: application/views/callstats/index.php:147 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 #: application/views/contesting/index.php:166 @@ -3984,7 +3979,7 @@ msgid "Count" msgstr "" #: application/views/activators/index.php:101 -#: application/views/callstats/index.php:150 +#: application/views/callstats/index.php:151 #: application/views/timeline/index.php:203 #: application/views/timeline/index.php:238 #: application/views/timeline/index.php:266 @@ -4431,7 +4426,7 @@ msgid "" msgstr "" #: application/views/adif/import.php:370 -#: application/views/adif/import_success.php:31 +#: application/views/adif/import_success.php:40 #: application/views/lotw_views/index.php:137 msgid "Information" msgstr "" @@ -4481,46 +4476,55 @@ msgid "" "file checker. For example:" msgstr "" -#: application/views/adif/import_success.php:17 -msgid "Yay, its imported!" +#: application/views/adif/import_success.php:22 +msgid "Yay, it's imported!" msgstr "" -#: application/views/adif/import_success.php:18 +#: application/views/adif/import_success.php:23 msgid "The ADIF File has been imported." msgstr "" -#: application/views/adif/import_success.php:22 -msgid "Dupes were inserted!" -msgstr "" - -#: application/views/adif/import_success.php:24 -msgid "Dupes were skipped." +#: application/views/adif/import_success.php:25 +msgid "Number of QSOs imported:" msgstr "" #: application/views/adif/import_success.php:31 -msgid "Contest logs imported" +msgid "Dupes were inserted!" msgstr "" #: application/views/adif/import_success.php:33 +msgid "Dupes were skipped." +msgstr "" + +#: application/views/adif/import_success.php:40 +msgid "Contest logs imported" +msgstr "" + +#: application/views/adif/import_success.php:42 msgid "" "Sometimes, depending on your contest logging software, your exchanges will " "not be imported properly from that softwares ADIF. If you like to correct " "that, switch to the CBR Import Tab of the ADIF Import page." msgstr "" -#: application/views/adif/import_success.php:33 +#: application/views/adif/import_success.php:42 msgid "You imported at least 1 QSO containing a contest ID." msgstr "" -#: application/views/adif/import_success.php:34 +#: application/views/adif/import_success.php:43 msgid "We found the following numbers of QSOs for the following contest IDs:" msgstr "" -#: application/views/adif/import_success.php:47 +#: application/views/adif/import_success.php:57 msgid "Import details / possible problems" msgstr "" -#: application/views/adif/import_success.php:48 +#: application/views/adif/import_success.php:58 +#, php-format +msgid "Check %s for hints about errors in ADIF files." +msgstr "" + +#: application/views/adif/import_success.php:59 msgid "" "You might have ADIF errors, the QSOs have still been added. Please check the " "following information:" @@ -6784,10 +6788,19 @@ msgstr "" msgid "All except SAT" msgstr "" -#: application/views/callstats/index.php:149 +#: application/views/callstats/index.php:148 msgid "#QSOs" msgstr "" +#: application/views/callstats/index.php:149 +msgid "First QSO" +msgstr "" + +#: application/views/callstats/index.php:150 +#: application/views/stationsetup/stationsetup.php:129 +msgid "Last QSO" +msgstr "" + #: application/views/cfd/index.php:7 #, php-format msgid "Export of CFD-File for DARC-Toplist (See %s)" @@ -13275,6 +13288,11 @@ msgstr "" msgid "Special Interest Group Information" msgstr "" +#: application/views/station_profile/edit.php:309 +#, php-format +msgid "Trouble? Check the %swiki%s." +msgstr "" + #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "" @@ -13405,10 +13423,6 @@ msgstr "" msgid "Please reassign them at " msgstr "" -#: application/views/stationsetup/stationsetup.php:129 -msgid "Last QSO" -msgstr "" - #: application/views/stationsetup/stationsetup.php:131 msgid "Linked" msgstr "" @@ -13986,7 +14000,9 @@ msgid "Station Locations Quickswitch" msgstr "" #: application/views/user/edit.php:483 -msgid "Show the Station Locations Quickswitch in the main menu" +msgid "" +"Show the Station Locations Quickswitch in the main menu. You can add " +"locations by adding them to favourites at the station setup page." msgstr "" #: application/views/user/edit.php:487 diff --git a/application/locale/sq/LC_MESSAGES/messages.po b/application/locale/sq/LC_MESSAGES/messages.po index 7fcdb46cb..90bda3e0b 100644 --- a/application/locale/sq/LC_MESSAGES/messages.po +++ b/application/locale/sq/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-08-20 19:04+0000\n" +"POT-Creation-Date: 2025-08-24 15:29+0000\n" "PO-Revision-Date: 2024-08-17 10:49+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Albanian \n" "Language-Team: Serbian \n" "Language-Team: Swedish \n" @@ -229,16 +229,16 @@ msgstr "ADIF-import misslyckades!" msgid "Station Profile not valid for User" msgstr "Stationsprofil inte giltigt för användare" -#: application/controllers/Adif.php:282 +#: application/controllers/Adif.php:283 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "ADIF importerad" -#: application/controllers/Adif.php:293 +#: application/controllers/Adif.php:294 msgid "DCL Import" msgstr "DCL-import" -#: application/controllers/Adif.php:351 +#: application/controllers/Adif.php:352 msgid "DCL Data Imported" msgstr "DCL-data importerad" @@ -2025,11 +2025,11 @@ msgstr "OQRS Förfrågningar" #: application/controllers/Oqrs.php:361 msgid "QSO match deleted successfully." -msgstr "" +msgstr "QSO-matchning raderades framgångsrikt." #: application/controllers/Oqrs.php:370 msgid "QSO match added successfully." -msgstr "" +msgstr "QSO-matchning har lagts till framgångsrikt." #: application/controllers/Qrbcalc.php:17 msgid "QRB Calculator" @@ -3182,34 +3182,29 @@ msgstr "HRDlog: Inga QSOn 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:1291 +#: application/models/Logbook_model.php:1292 msgid "Station ID not allowed" msgstr "Stations-ID inte tillåtet" -#: application/models/Logbook_model.php:1296 +#: application/models/Logbook_model.php:1297 msgid "No Call given" msgstr "Ingen anropssignal angiven" -#: application/models/Logbook_model.php:1366 -#: application/models/Logbook_model.php:1540 +#: application/models/Logbook_model.php:1367 +#: application/models/Logbook_model.php:1541 msgid "DXCC has to be Numeric" msgstr "DXCC måste vara numerisk" -#: application/models/Logbook_model.php:3987 +#: application/models/Logbook_model.php:4005 #, 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:3988 -#, php-format -msgid "Check %s for hints about errors in ADIF files." -msgstr "Kolla %s för tips om fel i ADIF-filer." - -#: application/models/Logbook_model.php:4000 +#: application/models/Logbook_model.php:4018 msgid "QSO on" msgstr "QSO kl" -#: application/models/Logbook_model.php:4000 +#: application/models/Logbook_model.php:4018 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3217,63 +3212,63 @@ msgstr "" "Du försökte importera ett QSO utan angivet CALL. Detta QSO importerades " "inte. Det är ogiltigt" -#: application/models/Logbook_model.php:4299 +#: application/models/Logbook_model.php:4317 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "qslrdate är ogiltigt (ÅÅÅÅMMDD)" -#: application/models/Logbook_model.php:4310 +#: application/models/Logbook_model.php:4328 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "qslsdate är ogiltigt (ÅÅÅÅMMDD)" -#: application/models/Logbook_model.php:4371 +#: application/models/Logbook_model.php:4389 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "clublog_qso_upload_date är ogiltigt (ÅÅÅÅMMDD)" -#: application/models/Logbook_model.php:4391 +#: application/models/Logbook_model.php:4409 msgid "the lotw_qslrdate is invalid (YYYYMMDD)" msgstr "lotw_qslrdate är ogiltigt (ÅÅÅÅMMDD)" -#: application/models/Logbook_model.php:4412 +#: application/models/Logbook_model.php:4430 msgid "the lotw_qslsdate is invalid (YYYYMMDD)" msgstr "lotw_qslsdate är ogiltigt (ÅÅÅÅMMDD)" -#: application/models/Logbook_model.php:4704 +#: application/models/Logbook_model.php:4722 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Dubblett för" -#: application/models/Logbook_model.php:4765 +#: application/models/Logbook_model.php:4783 msgid "QSO could not be matched" msgstr "QSO kunde inte matchas" -#: application/models/Logbook_model.php:4771 +#: application/models/Logbook_model.php:4789 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "bekräftad av LoTW/Clublog/eQSL/Tävling" -#: application/models/Logbook_model.php:4776 +#: application/models/Logbook_model.php:4794 msgid "confirmed by award manager" msgstr "bekräftad av diplomansvarig" -#: application/models/Logbook_model.php:4779 +#: application/models/Logbook_model.php:4797 msgid "confirmed by cross-check of DCL data" msgstr "bekräftat genom korskontroll av DCL-data" -#: application/models/Logbook_model.php:4782 +#: application/models/Logbook_model.php:4800 msgid "confirmation pending" msgstr "bekräftelse väntar" -#: application/models/Logbook_model.php:4785 +#: application/models/Logbook_model.php:4803 msgid "unconfirmed" msgstr "obekräftad" -#: application/models/Logbook_model.php:4788 +#: application/models/Logbook_model.php:4806 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:287 msgid "unknown" msgstr "Okänd" -#: application/models/Logbook_model.php:5626 +#: application/models/Logbook_model.php:5644 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:39 #: application/views/awards/gridmaster/index.php:54 @@ -3984,7 +3979,7 @@ msgstr "Minsta antal" #: application/views/awards/wapc/index.php:168 #: application/views/awards/was/index.php:201 #: application/views/awards/wwff/index.php:65 -#: application/views/callstats/index.php:129 +#: application/views/callstats/index.php:128 #: application/views/clublog/export.php:60 #: application/views/distancerecords/index.php:52 #: application/views/public_search/empty.php:3 @@ -4001,7 +3996,7 @@ msgstr "Inget hittades!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wwff/index.php:35 #: application/views/cabrillo/index.php:31 -#: application/views/callstats/index.php:148 +#: application/views/callstats/index.php:147 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 #: application/views/contesting/index.php:166 @@ -4045,7 +4040,7 @@ msgid "Count" msgstr "Räkna" #: application/views/activators/index.php:101 -#: application/views/callstats/index.php:150 +#: application/views/callstats/index.php:151 #: application/views/timeline/index.php:203 #: application/views/timeline/index.php:238 #: application/views/timeline/index.php:266 @@ -4262,7 +4257,7 @@ msgstr "Välj stationsplats" #: application/views/adif/import.php:82 msgid "Choose ADIF File" -msgstr "" +msgstr "Välj ADIF-fil" #: application/views/adif/import.php:88 msgid "Add QSOs to Contest" @@ -4283,7 +4278,7 @@ msgstr "" #: application/views/adif/import.php:108 msgid "Basic Settings" -msgstr "" +msgstr "Grundinställningar" #: application/views/adif/import.php:115 msgid "Import duplicate QSOs" @@ -4291,7 +4286,7 @@ msgstr "Importera dubbletter av QSOn" #: application/views/adif/import.php:117 msgid "Select if want to import QSOs, even if they already exist." -msgstr "" +msgstr "Välj om du vill importera QSOn, även om de redan finns." #: application/views/adif/import.php:122 msgid "Use DXCC information from ADIF" @@ -4313,7 +4308,7 @@ msgstr "FARA" #: application/views/adif/import.php:132 msgid "Ignore Station callsign on import" -msgstr "" +msgstr "Ignorera stationsanropssignal vid import" #: application/views/adif/import.php:134 #, php-format @@ -4321,6 +4316,8 @@ msgid "" "If selected, Wavelog will try to import %sall%s QSOs from the ADIF, " "regardless if they match to the chosen station-location." msgstr "" +"Om vald, kommer Wavelog att försöka importera %salla%s QSOn från ADIF, " +"oavsett om de matchar den valda stationens plats." #: application/views/adif/import.php:141 msgid "" @@ -4332,6 +4329,7 @@ msgstr "" #: application/views/adif/import.php:151 msgid "Mark QSOs as uploaded (This does NOT upload QSOs to these services!)" msgstr "" +"Markera QSOn som uppladdade (Detta laddar INTE upp QSOn till dessa tjänster!)" #: application/views/adif/import.php:158 msgid "Mark imported QSOs as uploaded to LoTW" @@ -4365,7 +4363,7 @@ msgstr "Markera importerade QSOn som uppladdade till DCL Logbook" #: application/views/adif/import.php:207 msgid "Toggle all checkboxes" -msgstr "" +msgstr "Växla alla kryssrutor" #: application/views/adif/import.php:212 application/views/adif/import.php:355 #: application/views/adif/import.php:393 @@ -4418,7 +4416,7 @@ msgstr "Hittills" #: application/views/adif/import.php:260 msgid "Export options" -msgstr "" +msgstr "Exportalternativ" #: application/views/adif/import.php:267 msgid "Mark exported QSOs as uploaded to LoTW" @@ -4517,7 +4515,7 @@ msgstr "" "också tillhandahåller för att uppdatera den datan i Wavelog." #: application/views/adif/import.php:370 -#: application/views/adif/import_success.php:31 +#: application/views/adif/import_success.php:40 #: application/views/lotw_views/index.php:137 msgid "Information" msgstr "Information" @@ -4580,27 +4578,31 @@ msgstr "" "Kontrollera den importerade ADIF-filen. Du kan använda en online ADIF-" "filkontroll. Till exempel:" -#: application/views/adif/import_success.php:17 -msgid "Yay, its imported!" -msgstr "Jippie, den är importerad!" +#: application/views/adif/import_success.php:22 +msgid "Yay, it's imported!" +msgstr "" -#: application/views/adif/import_success.php:18 +#: application/views/adif/import_success.php:23 msgid "The ADIF File has been imported." msgstr "ADIF-filen har importerats." -#: application/views/adif/import_success.php:22 +#: application/views/adif/import_success.php:25 +msgid "Number of QSOs imported:" +msgstr "" + +#: application/views/adif/import_success.php:31 msgid "Dupes were inserted!" msgstr "Dubbletter har importerats!" -#: application/views/adif/import_success.php:24 +#: application/views/adif/import_success.php:33 msgid "Dupes were skipped." msgstr "Dubbletter har hoppats över." -#: application/views/adif/import_success.php:31 +#: application/views/adif/import_success.php:40 msgid "Contest logs imported" msgstr "Tävlingsloggar importerade" -#: application/views/adif/import_success.php:33 +#: application/views/adif/import_success.php:42 msgid "" "Sometimes, depending on your contest logging software, your exchanges will " "not be imported properly from that softwares ADIF. If you like to correct " @@ -4610,19 +4612,24 @@ msgstr "" "inte att importeras korrekt från det programmets ADIF. Om du vill rätta till " "det, byt till CBR Import-fliken på ADIF Import-sidan." -#: application/views/adif/import_success.php:33 +#: application/views/adif/import_success.php:42 msgid "You imported at least 1 QSO containing a contest ID." msgstr "Du importerade minst 1 QSO som innehåller ett tävlings-ID." -#: application/views/adif/import_success.php:34 +#: application/views/adif/import_success.php:43 msgid "We found the following numbers of QSOs for the following contest IDs:" msgstr "Vi hittade följande antal QSOn för följande tävlings-ID:n:" -#: application/views/adif/import_success.php:47 +#: application/views/adif/import_success.php:57 msgid "Import details / possible problems" msgstr "Importdetaljer / möjliga problem" -#: application/views/adif/import_success.php:48 +#: application/views/adif/import_success.php:58 +#, php-format +msgid "Check %s for hints about errors in ADIF files." +msgstr "Kolla %s för tips om fel i ADIF-filer." + +#: application/views/adif/import_success.php:59 msgid "" "You might have ADIF errors, the QSOs have still been added. Please check the " "following information:" @@ -4900,6 +4907,8 @@ msgid "" "Fields taken for this Award: Propagation-Mode and SAT-Name (ADIF: " "PROP_MODE=SAT, SAT_NAME='AO-73')" msgstr "" +"Fält som använts för detta diplom: Utbrednings-Trafiksätt och SAT-Namn " +"(ADIF: PROP_MODE=SAT, SAT_NAME='AO-73')" #: application/views/awards/73on73/index.php:32 #: application/views/awards/jcc/index.php:152 @@ -4960,6 +4969,8 @@ msgid "" "Fields taken for this Award: State (ADIF: STATE), Stations County (ADIF: " "CNTY), DXCC (Must be one of 291 (U.S.A.) ,6 (ALASKA) or 110 (HAWAII))" msgstr "" +"Fält som använts för detta diplom: Stat (ADIF: STATE), Stations län (ADIF: " +"CNTY), DXCC (Måste vara en av 291 (U.S.A.), 6 (ALASKA) eller 110 (HAWAII))" #: application/views/awards/counties/index.php:22 msgid "Counties Worked" @@ -5061,7 +5072,7 @@ msgstr "Du kan hitta all information och regler på N4BAA:s webbplats: %s" #: application/views/awards/cq/index.php:24 msgid "Fields taken for this Award: CQ-Zone (ADIF: CQZ)" -msgstr "" +msgstr "Fält som använts för detta diplom: CQ-Zon (ADIF: CQZ)" #: application/views/awards/cq/index.php:26 msgid "Awards - CQ WAZ" @@ -5323,7 +5334,7 @@ msgstr "" #: application/views/awards/dok/index.php:11 msgid "Fields taken for this Award: DOK (ADIF: DARC_DOK)" -msgstr "" +msgstr "Fält som använts för detta diplom: DOK (ADIF: DARC_DOK)" #: application/views/awards/dok/index.php:21 msgid "DOK / SDOK" @@ -5409,6 +5420,8 @@ msgid "" "Fields taken for this Award: DXCC (Needs to be a valid one out of the DXCC-" "ADIF-Spec-List" msgstr "" +"Fält som använts för detta diplom: DXCC (Måste vara ett giltigt från DXCC-" +"ADIF-Spec-List" #: application/views/awards/dxcc/index.php:33 #: application/views/awards/iota/index.php:34 @@ -5510,31 +5523,31 @@ msgstr "Visa DXCC-karta" #: application/views/awards/dxcc/index.php:221 msgid "Legend:" -msgstr "" +msgstr "Legend:" #: application/views/awards/dxcc/index.php:222 msgid "(Q)SL-Paper-Card" -msgstr "" +msgstr "(Q)SL-papperskort" #: application/views/awards/dxcc/index.php:223 msgid "(L)oTW" -msgstr "" +msgstr "(L)oTW" #: application/views/awards/dxcc/index.php:224 msgid "(e)QSL" -msgstr "" +msgstr "(e)QSL" #: application/views/awards/dxcc/index.php:225 msgid "QR(Z)-\"confirmation\"" -msgstr "" +msgstr "QR(Z)-\"bekräftelse\"" #: application/views/awards/dxcc/index.php:226 msgid "(C)lublog" -msgstr "" +msgstr "(C)lublog" #: application/views/awards/dxcc/index.php:227 msgid "(W)orked" -msgstr "" +msgstr "(W) Kontaktad" #: application/views/awards/dxcc/index.php:233 msgid "DXCC Name" @@ -5579,6 +5592,8 @@ msgid "" "Fields taken for this Award: DXCC (Must be USA), Gridsquare (Must contain a " "grid from one of the 488 mainland gridsquares!), Band must be 6M." msgstr "" +"Fält som använts för detta diplom: DXCC (Måste vara USA), Gridsquare (Måste " +"innehålla en ruta från en av de 488 fastlandsrutorna!), Bandet måste vara 6M." #: application/views/awards/gridmaster/index.php:8 msgid "US Gridmaster Award" @@ -5631,6 +5646,9 @@ msgid "" "grid from one of the 488 mainland gridsquares!), Propagation-Mode and SAT-" "Name" msgstr "" +"Fält som använts för detta diplom: DXCC (Måste vara USA), Gridsquare (Måste " +"innehålla en ruta från en av de 488 fastlandsrutorna!), Trafiksätt och SAT-" +"Namn" #: application/views/awards/gridmaster/index.php:14 msgid "Gridmaster Award" @@ -5659,18 +5677,24 @@ msgid "" "Fields taken for this Award: DXCC (Must be Germany), Gridsquare, Propagation-" "Mode and SAT-Name" msgstr "" +"Fält som använts för detta diplom: DXCC (måste vara Tyskland), Gridsquare, " +"Utbrednings-Trafiksätt och SAT-Namn" #: application/views/awards/gridmaster/index.php:23 msgid "" "Fields taken for this Award: DXCC (Must be Luxembourg), Gridsquare, " "Propagation-Mode and SAT-Name" msgstr "" +"Fält som använts för detta diplom: DXCC (måste vara Luxemburg), Gridsquare, " +"Utbrednings-Trafiksätt och SAT-Namn" #: application/views/awards/gridmaster/index.php:26 msgid "" "Fields taken for this Award: DXCC (Must be Japan), Gridsquare, Propagation-" "Mode and SAT-Name" msgstr "" +"Fält som använts för detta diplom: DXCC (måste vara Japan), Gridsquare, " +"Utbrednings-Trafiksätt och SAT-Namn" #: application/views/awards/helvetia/index.php:3 msgctxt "Switzerland Canton" @@ -5712,6 +5736,8 @@ msgid "" "Fields taken for this Award: DXCC (Must be Switzerland) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" +"Fält som använts för detta diplom: DXCC (Måste vara Schweiz) och STATE " +"(Måste innehålla en giltig delstatsförkortning!)" #: application/views/awards/helvetia/index.php:115 msgid "Show Helvetia Map" @@ -5779,6 +5805,8 @@ msgid "" "Fields taken for this Award: IOTA (ADIF: IOTA) must contain valid IOTA-" "Reference" msgstr "" +"Fält som använts för detta diplom: IOTA (ADIF: IOTA) måste innehålla giltig " +"IOTA-referens" #: application/views/awards/iota/index.php:30 msgid "Deleted IOTA" @@ -5853,7 +5881,7 @@ msgstr "Du kan hitta mer information på webbplatsen för %s." #: application/views/awards/itu/index.php:24 msgid "Fields taken for this Award: ITU-Zone (ADIF: ITUZ)" -msgstr "" +msgstr "Fält som använts för detta diplom: ITU-Zon (ADIF: ITUZ)" #: application/views/awards/itu/index.php:26 msgid "Awards - ITU Zones" @@ -5893,6 +5921,8 @@ msgid "" "Fields taken for this Award: DXCC (Japan) and County (Must contain a valid " "reference!)" msgstr "" +"Fält som använts för detta diplom: DXCC (Japan) och län (måste innehålla en " +"giltig referens!)" #: application/views/awards/jcc/index.php:116 msgid "Show JCC Map" @@ -5961,6 +5991,7 @@ msgstr "" #: application/views/awards/pota/index.php:11 msgid "Fields taken for this Award: POTA_REF (must contain Park-Reference)" msgstr "" +"Fält som använts för detta diplom: POTA_REF (måste innehålla Park-Referens)" #: application/views/awards/pota/index.php:32 #: application/views/qso/index.php:274 application/views/qso/index.php:567 @@ -6123,6 +6154,8 @@ msgid "" "Fields taken for this Award: Gridsquare and vucc_grids (ADIF: GRIDSQUARE, " "VUCC_GRIDS)" msgstr "" +"Fält som använts för detta diplom: Gridsquare och vucc_grids (ADIF: " +"GRIDSQUARE, VUCC_GRIDS)" #: application/views/awards/vucc/index.php:23 msgid "Grids Worked" @@ -6157,6 +6190,8 @@ msgid "" "Fields taken for this Award: SIG (Has to be 'WAB') and SIG_INFO (should " "contain valid WAB-Grid)" msgstr "" +"Fält som använts för detta diplom: SIG (måste vara 'WAB') och SIG_INFO (bör " +"innehålla giltigt WAB-Grid)" #: application/views/awards/wab/index.php:110 msgid "List" @@ -6182,6 +6217,8 @@ msgid "" "Fields taken for this Award: Continent (ADIF tag 'CONT'). Must contain a " "valid continent-abbreviation!" msgstr "" +"Fält som använts för detta diplom: Kontinent (ADIF-tag 'CONT'). Måste " +"innehålla en giltig kontinentförkortning!" #: application/views/awards/wac/index.php:14 msgid "Awards - Worked All Continents (WAC)" @@ -6225,7 +6262,7 @@ msgstr "" #: application/views/awards/wae/index.php:11 msgid "Fields taken for this Award: Region, DXCC" -msgstr "" +msgstr "Fält som använts för detta diplom: Region, DXCC" #: application/views/awards/wae/index.php:162 msgid "WAE Name" @@ -6269,6 +6306,8 @@ msgid "" "Fields taken for this Award: DXCC (Japan) and STATE (Must contain a valid " "prefecture!)" msgstr "" +"Fält som använts för detta diplom: DXCC (Japan) och STATE (Måste innehålla " +"en giltig prefektur!)" #: application/views/awards/waja/index.php:119 msgid "Show WAJA Map" @@ -6333,6 +6372,8 @@ msgid "" "Fields taken for this Award: DXCC (Must be Netherlands) and STATE (Must " "contain a valid state abbreviation!)" msgstr "" +"Fält som använts för detta diplom: DXCC (Måste vara Nederländerna) och STATE " +"(Måste innehålla en giltig delstatsförkortning!)" #: application/views/awards/wap/index.php:115 msgid "Show WAP Map" @@ -6373,6 +6414,9 @@ msgid "" "Macao/152, Taiwan/386, Pratas Isl./505 or Scarborough Reef/506) and valid " "State (ADIF: DXCC and STATE)" msgstr "" +"Fält som använts för detta diplom: DXCC (måste vara ett av Kina/318, " +"HongKong/321, Macao/152, Taiwan/386, Pratas Isl./505 eller Scarborough " +"Reef/506) och giltig stat (ADIF: DXCC och STATE)" #: application/views/awards/wapc/index.php:119 msgid "Code" @@ -6428,6 +6472,8 @@ msgid "" "Fields taken for this Award: DXCC (Must be one of U.S.A., Alaska or Hawaii) " "and STATE (Must contain a valid U.S. state abbreviation!)" msgstr "" +"Fält som använts för detta diplom: DXCC (Måste vara en av USA, Alaska eller " +"Hawaii) och STATE (Måste innehålla en giltig amerikansk delstatsförkortning!)" #: application/views/awards/was/index.php:115 msgid "Show WAS Map" @@ -6459,7 +6505,7 @@ msgstr "" #: application/views/awards/wwff/index.php:11 msgid "Fields taken for this Award: WWFF (ADIF: WWFF_REF)" -msgstr "" +msgstr "Fält som använts för detta diplom: WWFF (ADIF: WWFF_REF)" #: application/views/awards/wwff/index.php:32 #: application/views/qso/index.php:262 application/views/qso/index.php:554 @@ -7093,10 +7139,19 @@ msgstr "Inga tävlingar hittades i din logg." msgid "All except SAT" msgstr "Alla utom SAT" -#: application/views/callstats/index.php:149 +#: application/views/callstats/index.php:148 msgid "#QSOs" msgstr "#QSOn" +#: application/views/callstats/index.php:149 +msgid "First QSO" +msgstr "" + +#: application/views/callstats/index.php:150 +#: application/views/stationsetup/stationsetup.php:129 +msgid "Last QSO" +msgstr "Senaste QSO" + #: application/views/cfd/index.php:7 #, php-format msgid "Export of CFD-File for DARC-Toplist (See %s)" @@ -8697,7 +8752,7 @@ msgstr "Italienska" #: application/views/debug/index.php:684 msgid "Japanese" -msgstr "" +msgstr "Japanska" #: application/views/debug/index.php:685 msgid "Latvian" @@ -11657,7 +11712,7 @@ msgstr "Lägg till i utskriftskön" #: application/views/oqrs/qsolist.php:209 msgid "Match QSO" -msgstr "" +msgstr "Matcha QSO" #: application/views/oqrs/request.php:9 #: application/views/oqrs/request_grouped.php:3 @@ -11733,41 +11788,49 @@ msgstr "Förfrågan klar" #: application/views/oqrs/showrequests.php:5 msgid "Pending request" -msgstr "" +msgstr "Väntande begäran" #: application/views/oqrs/showrequests.php:6 msgid "Request rejected" -msgstr "" +msgstr "Begäran avslogs" #: application/views/oqrs/showrequests.php:10 msgid "An error ocurred while making the request" -msgstr "" +msgstr "Ett fel inträffade vid begäran" #: application/views/oqrs/showrequests.php:11 msgid "Warning! Are you sure you want to delete the marked OQRS request(s)?" msgstr "" +"Varning! Är du säker på att du vill ta bort den markerade OQRS-begäran/" +"begärningarna?" #: application/views/oqrs/showrequests.php:12 msgid "Warning! Are you sure you want to reject the marked OQRS request(s)?" msgstr "" +"Varning! Är du säker på att du vill avvisa den markerade OQRS-begäran/" +"begärningarna?" #: application/views/oqrs/showrequests.php:13 msgid "Warning! Are you sure you want to mark the marked OQRS request(s)?" msgstr "" +"Varning! Är du säker på att du vill markera den markerade OQRS-begäran/" +"begärandena?" #: application/views/oqrs/showrequests.php:14 msgid "" "Warning! Are you sure you want to add the marked OQRS request(s) to the " "queue?" msgstr "" +"Varning! Är du säker på att du vill lägga till den markerade OQRS-förfrågan/" +"förfrågningarna i kön?" #: application/views/oqrs/showrequests.php:15 msgid "OQRS Status Information" -msgstr "" +msgstr "OQRS Statusinformation" #: application/views/oqrs/showrequests.php:16 msgid "Warning! Are you sure you want to delete the QSO match?" -msgstr "" +msgstr "Varning! Är du säker på att du vill ta bort QSO-matchningen?" #: application/views/oqrs/showrequests.php:42 #: application/views/oqrs/showrequests.php:90 @@ -11781,17 +11844,17 @@ msgstr "OQRS-status" #: application/views/oqrs/showrequests.php:52 #: application/views/oqrs/status_info.php:18 msgid "Done / sent" -msgstr "" +msgstr "Klar / skickat" #: application/views/oqrs/showrequests.php:53 #: application/views/oqrs/status_info.php:22 msgid "Pending" -msgstr "" +msgstr "Väntande" #: application/views/oqrs/showrequests.php:54 #: application/views/oqrs/status_info.php:26 msgid "Rejected" -msgstr "" +msgstr "Avvisad" #: application/views/oqrs/showrequests.php:71 msgid "With selected" @@ -11803,7 +11866,7 @@ msgstr "Markera som klar" #: application/views/oqrs/showrequests.php:74 msgid "Reject" -msgstr "" +msgstr "Avvisa" #: application/views/oqrs/showrequests.php:85 msgid "Time of request" @@ -11828,29 +11891,31 @@ msgstr "Kontrollera logg" #: application/views/oqrs/showrequests.php:96 msgid "QSO Match" -msgstr "" +msgstr "QSO-matchning" #: application/views/oqrs/status_info.php:11 msgid "The request is currently open, and needs to be reviewed by you." -msgstr "" +msgstr "Förfrågan är för närvarande öppen och behöver granskas av dig." #: application/views/oqrs/status_info.php:15 msgid "" "The request is not in the log, so you need to check your log and process the " "request." msgstr "" +"Begäran finns inte i loggen, så du behöver kontrollera din logg och behandla " +"begäran." #: application/views/oqrs/status_info.php:19 msgid "The request has been processed and the QSL has been sent." -msgstr "" +msgstr "Begäran har behandlats och QSL har skickats." #: application/views/oqrs/status_info.php:23 msgid "The request is still being processed." -msgstr "" +msgstr "Begäran bearbetas fortfarande." #: application/views/oqrs/status_info.php:27 msgid "The request has been rejected and will not be processed." -msgstr "" +msgstr "Begäran har avslagits och kommer inte att behandlas." #: application/views/public_search/empty.php:2 #: application/views/public_search/result.php:2 @@ -13212,7 +13277,7 @@ msgstr "Fråga" #: application/views/simplefle/index.php:13 msgid "Simple Fast Log Entry (FLE)" -msgstr "" +msgstr "Enkel Snabb Loggpost (FLE)" #: application/views/simplefle/index.php:14 msgid "" @@ -13220,6 +13285,10 @@ msgid "" "efficiently. Due to its syntax, only a minimum of input is required to log " "many QSOs with as little effort as possible." msgstr "" +"\"Fast Log Entry\", eller helt enkelt \"FLE\", är ett system för att logga " +"QSOn mycket snabbt och effektivt. På grund av dess syntax krävs endast ett " +"minimum av inmatning för att logga många QSOn med så liten ansträngning som " +"möjligt." #: application/views/simplefle/index.php:15 msgid "" @@ -13227,6 +13296,9 @@ msgid "" "website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides " "a web interface to log QSOs." msgstr "" +"FLE skrevs ursprungligen av DF3CB. Han erbjuder ett program för Windows på " +"sin webbplats. Simple FLE skrevs av OK2CQR baserat på DF3CB:s FLE och " +"erbjuder ett webbgränssnitt för att logga QSOn." #: application/views/simplefle/index.php:16 #, php-format @@ -13235,165 +13307,179 @@ msgid "" "session and now SimpleFLE is also available in Wavelog. Information about " "the syntax and how FLE works can be found %s." msgstr "" +"Ett vanligt användningsfall är om du måste importera dina pappersloggar från " +"en utomhussession och nu finns SimpleFLE också tillgängligt i Wavelog. " +"Information om syntaxen och hur FLE fungerar finns %s." #: application/views/simplefle/index.php:17 #: application/views/simplefle/index.php:184 msgid "Syntax Help" -msgstr "" +msgstr "Syntaxhjälp" #: application/views/simplefle/index.php:18 msgid "Syntax for FLE" -msgstr "" +msgstr "Syntax för FLE" #: application/views/simplefle/index.php:19 msgid "Close and Load Sample Data" -msgstr "" +msgstr "Stäng och ladda exempeldata" #: application/views/simplefle/index.php:23 msgid "Band is missing!" -msgstr "" +msgstr "Band saknas!" #: application/views/simplefle/index.php:24 msgid "Mode is missing!" -msgstr "" +msgstr "Trafiksätt saknas!" #: application/views/simplefle/index.php:25 msgid "Time is not set!" -msgstr "" +msgstr "Tiden är inte inställd!" #: application/views/simplefle/index.php:26 msgid "Invalid date" -msgstr "" +msgstr "Ogiltigt datum" #: application/views/simplefle/index.php:29 msgid "Station Call is not selected" -msgstr "" +msgstr "Stationsanrop är inte valt" #: application/views/simplefle/index.php:30 msgid "'Operator' Field is empty" -msgstr "" +msgstr "Fältet 'Operatör' är tomt" #: application/views/simplefle/index.php:31 msgid "Warning! Do you really want to reset everything?" -msgstr "" +msgstr "Varning! Vill du verkligen återställa allt?" #: application/views/simplefle/index.php:32 msgid "" "Warning! You can't log the QSO List, because some QSO don't have band and/or " "mode defined!" msgstr "" +"Varning! Du kan inte logga QSO-listan, eftersom vissa QSO saknar band och/" +"eller trafiksätt!" #: application/views/simplefle/index.php:33 msgid "" "Warning! You can't log the QSO List, because some QSO don't have a time " "defined!" msgstr "" +"Varning! Du kan inte logga QSO-listan, eftersom vissa QSO inte har en tid " +"definierad!" #: application/views/simplefle/index.php:34 msgid "" "Attention! The Data Field containes example data. First Clear Logging " "Session!" msgstr "" +"Vänligen Notera! Datafältet innehåller exempeldata. Rensa först " +"loggningssessionen!" #: application/views/simplefle/index.php:35 msgid "" "Attention! Either you have set a contest, but included no exchange, or you " "have logged contest-data but did not select a contest." msgstr "" +"Vänligen Notera! Antingen har du ställt in en tävling men inte inkluderat " +"något utbyte, eller så har du loggat tävlingsdata men inte valt en tävling." #: application/views/simplefle/index.php:36 msgid "" "Are you sure that you want to add these QSO to the Log and clear the session?" msgstr "" +"Är du säker på att du vill lägga till dessa QSO i loggen och rensa sessionen?" #: application/views/simplefle/index.php:37 msgid "QSO Logged!" -msgstr "" +msgstr "QSO loggad!" #: application/views/simplefle/index.php:38 msgid "The QSO were successfully logged in the logbook! Dupes were skipped." -msgstr "" +msgstr "QSO:erna loggades framgångsrikt i loggboken! Dubbletter hoppades över." #: application/views/simplefle/index.php:40 msgid "An error occurred while saving the QSO to the logbook! Error: " -msgstr "" +msgstr "Ett fel uppstod när QSO sparades i loggboken! Fel: " #: application/views/simplefle/index.php:44 msgid "What is that?" -msgstr "" +msgstr "Vad är det?" #: application/views/simplefle/index.php:47 msgid "Current UTC Time" -msgstr "" +msgstr "Aktuell UTC-tid" #: application/views/simplefle/index.php:80 msgid "If you don't choose a date, today's date will be used." -msgstr "" +msgstr "Om du inte väljer ett datum, kommer dagens datum att användas." #: application/views/simplefle/index.php:92 msgid "You can add the entered QSOs to a contest." -msgstr "" +msgstr "Du kan lägga till inmatade QSOn till en tävling." #: application/views/simplefle/index.php:99 msgid "Station Call/Location" -msgstr "" +msgstr "Stationsanrop/Plats" #: application/views/simplefle/index.php:111 #, php-format msgid "" "If you did operate from a new location, first create a new %sStation " "Location%s" -msgstr "" +msgstr "Om du körde från en ny plats, skapa först en ny %sStation Location%s" #: application/views/simplefle/index.php:117 msgid "e.g. OK2CQR" -msgstr "" +msgstr "t.ex. OK2CQR" #: application/views/simplefle/index.php:120 msgid "This is callsign of the operator. Without any pre- or suffixes." -msgstr "" +msgstr "Detta är operatörens anropssignal. Utan några pre- eller suffix." #: application/views/simplefle/index.php:133 msgid "Enter the Data" -msgstr "" +msgstr "Ange datan" #: application/views/simplefle/index.php:162 msgid "Refs" -msgstr "" +msgstr "Referenser" #: application/views/simplefle/index.php:174 #, php-format msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" msgstr "" +"Referenserna kan vara antingen %sS%sOTA, %sI%sOTA, %sP%sOTA eller %sW%sWFF" #: application/views/simplefle/index.php:181 msgid "Reload QSO List" -msgstr "" +msgstr "Ladda om QSO-lista" #: application/views/simplefle/index.php:182 msgid "Save in Wavelog" -msgstr "" +msgstr "Spara i Wavelog" #: application/views/simplefle/index.php:183 msgid "Clear Logging Session" -msgstr "" +msgstr "Rensa loggningssession" #: application/views/simplefle/options.php:20 msgid "No Options yet" -msgstr "" +msgstr "Inga alternativ än" #: application/views/simplefle/syntax_help.php:1 msgid "Before starting to log a QSO, please note the basic rules." -msgstr "" +msgstr "Innan du börjar logga ett QSO, notera de grundläggande reglerna." #: application/views/simplefle/syntax_help.php:2 msgid "- Each new QSO should be on a new line." -msgstr "" +msgstr "- Varje nytt QSO ska vara på en ny rad." #: application/views/simplefle/syntax_help.php:3 msgid "" "- On each new line, only write data that has changed from the previous QSO." msgstr "" +"- På varje ny rad, skriv endast data som har ändrats från föregående QSO." #: application/views/simplefle/syntax_help.php:4 msgid "" @@ -13402,10 +13488,15 @@ msgid "" "QRG in MHz, e.g., '7.145'), mode, and time. After the time, you provide the " "first QSO, which is essentially the callsign." msgstr "" +"För att börja, se till att du redan har fyllt i formuläret till vänster med " +"datum, stationsanrop och operatörens anrop. Huvuddata inkluderar bandet " +"(eller QRG i MHz, t.ex. '7.145'), trafiksätt och tid. Efter tiden anger du " +"den första QSO, vilket i huvudsak är anropssignalen." #: application/views/simplefle/syntax_help.php:9 msgid "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB." msgstr "" +"Till exempel, ett QSO som började klockan 21:34 (UTC) med 4W7EST på 20m SSB." #: application/views/simplefle/syntax_help.php:10 msgid "" @@ -13413,6 +13504,9 @@ msgid "" "data). Our next QSO wasn't 59 on both sides, so we provide the information " "with the sent RST first. It was 2 minutes later than the first QSO." msgstr "" +"Om du inte ger någon RST-information, kommer syntaxen att använda 59 (599 " +"för data). Vårt nästa QSO var inte 59 på båda sidor, så vi ger informationen " +"med den skickade RST först. Det var 2 minuter senare än det första QSO." #: application/views/simplefle/syntax_help.php:16 msgid "" @@ -13420,6 +13514,9 @@ msgid "" "write down 6 because this is the only data that changed here. The " "information about band and mode didn't change, so this data is omitted." msgstr "" +"Den första QSO var klockan 21:34, och den andra två minuter senare klockan " +"21:36. Vi skriver ner 6 eftersom detta är den enda datan som ändrades här. " +"Informationen om band och trafiksätt ändrades inte, så denna data utelämnas." #: application/views/simplefle/syntax_help.php:17 msgid "" @@ -13428,26 +13525,32 @@ msgid "" "every new QSO. Therefore we can add another QSO which took place at the " "exact same time two days later. The date must be in format YYYY-MM-DD." msgstr "" +"För vårt nästa QSO kl. 21:40 den 14 maj 2021 bytte vi band till 40m men " +"fortfarande på SSB. Om ingen RST-information ges, kommer syntaxen att " +"använda 59 för varje nytt QSO. Därför kan vi lägga till ett annat QSO som " +"ägde rum exakt samma tid två dagar senare. Datumet måste vara i formatet " +"ÅÅÅÅ-MM-DD." #: application/views/simplefle/syntax_help.php:28 msgid "Additional informations can be submitted in the following way:" -msgstr "" +msgstr "Ytterligare information kan lämnas på följande sätt:" #: application/views/simplefle/syntax_help.php:29 msgid "Notes:" -msgstr "" +msgstr "Anteckningar:" #: application/views/simplefle/syntax_help.php:33 msgid "Operator Name:" -msgstr "" +msgstr "Operatörens namn:" #: application/views/simplefle/syntax_help.php:37 msgid "QSL-message (Caution! Not visible in wavelog currently!):" -msgstr "" +msgstr "QSL-meddelande (Varning! Inte synlig i wavelog just nu!):" #: application/views/simplefle/syntax_help.php:41 msgid "Contest exchange; serials or other exchange - or even both:" msgstr "" +"Tävling utbyte; serienummer eller annat utbyte - eller till och med båda:" #: application/views/simplefle/syntax_help.php:48 msgid "" @@ -13458,24 +13561,38 @@ msgid "" "single comma ','. To automatically increment the sent serial, use ',++' and " "give an initial sent exchange. To deactivate, use ',+0':" msgstr "" +"Mottaget utbyte måste föregås av en punkt '.', skickat utbyte med ett komma " +"','. De sista två raderna är likvärdiga - dvs. mellanslag spelar ingen roll " +"eftersom ordningen inte heller gör det. Utbyte du har skickat kommer " +"automatiskt att inkluderas i nästa QSO, om det innehåller mottaget utbyte, " +"eller om du använder ett enda komma ','. För att automatiskt öka det " +"skickade serienumret, använd ',++' och ge ett initialt skickat utbyte. För " +"att inaktivera, använd ',+0':" #: application/views/simplefle/syntax_help.php:54 msgid "" "Here, the first qso uses the set serial 1, and the second will use 2 as the " "serial. If you want to wipe your sent exchange, use ',-':" msgstr "" +"Här använder första QSOt den inställda serien 1, och det andra QSOt kommer " +"att använda 2 som serienummer. Om du vill radera ditt skickade utbyte, " +"använd ',-':" #: application/views/simplefle/syntax_help.php:59 msgid "" "First, all previous exchange is wiped, then only a serial is set. Otherwise " "the previous exchange 'D23' would have been set also." msgstr "" +"Först raderas all tidigare kommunikation, sedan ställs endast en serie in. " +"Annars skulle den tidigare kommunikationen 'D23' också ha ställts in." #: application/views/simplefle/syntax_help.php:60 msgid "" "You may use the comment syntax, to fill adif-fields supported by the Wavelog-" "Import:" msgstr "" +"Du kan använda kommentarsyntaxen för att fylla i adif-fält som stöds av " +"Wavelog-importen:" #: application/views/simplefle/syntax_help.php:64 #, php-format @@ -13483,71 +13600,73 @@ msgid "" "A full summary of all commands and the necessary syntax can be found in " "%sthis article%s of our Wiki." msgstr "" +"En fullständig sammanfattning av alla kommandon och den nödvändiga syntaxen " +"finns i %sdenna artikel%s i vår Wiki." #: application/views/station_profile/create.php:55 #: application/views/station_profile/edit.php:71 msgid "Location Name" -msgstr "" +msgstr "Platsnamn" #: application/views/station_profile/create.php:56 #: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:73 msgctxt "Station Location Setup" msgid "Home QTH" -msgstr "" +msgstr "Hem-QTH" #: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:73 #, php-format msgid "Shortname for the station location. For example: %s" -msgstr "" +msgstr "Kortnamn för stationens plats. Till exempel: %s" #: application/views/station_profile/create.php:63 #: application/views/station_profile/edit.php:79 msgid "Station callsign. For example: 4W7EST/P" -msgstr "" +msgstr "Stationsanropssignal. Till exempel: 4W7EST/P" #: application/views/station_profile/create.php:67 #: application/views/station_profile/edit.php:83 msgid "Station Power (W)" -msgstr "" +msgstr "Stationseffekt (W)" #: application/views/station_profile/create.php:69 #: application/views/station_profile/edit.php:85 msgid "Default station power in Watt. Overwritten by CAT." -msgstr "" +msgstr "Standardstationseffekt i Watt. Skriven över av CAT." #: application/views/station_profile/create.php:82 #: application/views/station_profile/edit.php:116 msgid "Station DXCC entity. For example: Bolivia" -msgstr "" +msgstr "Station DXCC-enhet. Till exempel: Bolivia" #: application/views/station_profile/create.php:87 #: application/views/station_profile/edit.php:122 msgid "Station City" -msgstr "" +msgstr "Station City" #: application/views/station_profile/create.php:89 #: application/views/station_profile/edit.php:124 msgid "Station city. For example: Oslo" -msgstr "" +msgstr "Stationsstad. Till exempel: Oslo" #: application/views/station_profile/create.php:98 #: application/views/station_profile/edit.php:136 msgid "Station state. Applies to certain countries only." -msgstr "" +msgstr "Stationsstatus. Gäller endast vissa länder." #: application/views/station_profile/create.php:105 #: application/views/station_profile/edit.php:143 msgid "Station County (Only used for specific DXCCs)." -msgstr "" +msgstr "Stationslän (Används endast för specifika DXCC)." #: application/views/station_profile/create.php:120 #: application/views/station_profile/edit.php:169 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" -msgstr "" +msgstr "Om du inte vet din CQ-zon, %s för att hitta den!" #: application/views/station_profile/create.php:120 #: application/views/station_profile/create.php:134 @@ -13556,25 +13675,25 @@ msgstr "" #: application/views/station_profile/edit.php:186 #: application/views/station_profile/edit.php:210 msgid "click here" -msgstr "" +msgstr "klicka här" #: application/views/station_profile/create.php:134 #: application/views/station_profile/edit.php:186 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" -msgstr "" +msgstr "Om du inte vet din ITU-zon så %s för att hitta den!" #: application/views/station_profile/create.php:139 #: application/views/station_profile/edit.php:198 #: application/views/station_profile/edit.php:201 msgid "Station Gridsquare" -msgstr "" +msgstr "Stationsrutnätsruta" #: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:206 msgid "Get Gridsquare" -msgstr "" +msgstr "Hämta rutnätsruta" #: application/views/station_profile/create.php:148 #: application/views/station_profile/edit.php:210 @@ -13584,6 +13703,8 @@ msgid "" "Station gridsquare. For example: HM54AP. If you don't know your grid square " "then %s!" msgstr "" +"Stationsrutfältsruta. Till exempel: HM54AP. Om du inte vet din rutfältsruta " +"så %s!" #: application/views/station_profile/create.php:149 #: application/views/station_profile/edit.php:211 @@ -13591,49 +13712,51 @@ msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" +"Om du befinner dig på en rutnätslinje, ange flera rutnätsrutor separerade " +"med kommatecken. Till exempel: IO77,IO78,IO87,IO88." #: application/views/station_profile/create.php:166 #: application/views/station_profile/edit.php:236 msgid "Station IOTA reference. For example: EU-005" -msgstr "" +msgstr "Stationens IOTA-referens. Till exempel: EU-005" #: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:237 msgid "IOTA World website" -msgstr "" +msgstr "IOTA World webbplats" #: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:237 #, php-format msgid "You can look up IOTA references at the %s." -msgstr "" +msgstr "Du kan slå upp IOTA-referenser på %s." #: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:252 msgid "SOTA Maps website" -msgstr "" +msgstr "SOTA Maps webbplats" #: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:252 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." -msgstr "" +msgstr "Station SOTA-referens. Du kan leta upp SOTA-referenser på %s." #: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:265 msgid "GMA Map website" -msgstr "" +msgstr "GMA-kartwebbplats" #: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:265 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." -msgstr "" +msgstr "Station WWFF-referens. Du kan leta upp WWFF-referenser på %s." #: application/views/station_profile/create.php:185 #: application/views/station_profile/edit.php:278 msgid "POTA Map website" -msgstr "" +msgstr "POTA Karta webbplats" #: application/views/station_profile/create.php:185 #: application/views/station_profile/edit.php:278 @@ -13642,39 +13765,41 @@ msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " "look up POTA references at the %s." msgstr "" +"Stationens POTA-referens(er). Flera kommaseparerade värden tillåtna. Du kan " +"slå upp POTA-referenser på %s." #: application/views/station_profile/create.php:189 msgid "Signature Name" -msgstr "" +msgstr "Signaturnamn" #: application/views/station_profile/create.php:191 msgid "Station Special Interest Group Name (e.g. GMA)." -msgstr "" +msgstr "Stationens specialintressegruppnamn (t.ex. GMA)." #: application/views/station_profile/create.php:195 msgid "Signature Information" -msgstr "" +msgstr "Signaturinformation" #: application/views/station_profile/create.php:197 #: application/views/station_profile/edit.php:299 msgid "Station Special Interest Group Info (e.g. DA/NW-357)." -msgstr "" +msgstr "Stationens specialintressegruppinfo (t.ex. DA/NW-357)." #: application/views/station_profile/create.php:201 #: application/views/station_profile/edit.php:312 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" -msgstr "" +msgstr "eQSL QTH Smeknamn" #: application/views/station_profile/create.php:203 #: application/views/station_profile/edit.php:314 msgid "The QTH Nickname which is configured in your eQSL Profile" -msgstr "" +msgstr "QTH-smeknamnet som är konfigurerat i din eQSL-profil" #: application/views/station_profile/create.php:207 #: application/views/station_profile/edit.php:317 msgid "Default QSLMSG" -msgstr "" +msgstr "Standard QSL-meddelande" #: application/views/station_profile/create.php:210 #: application/views/station_profile/edit.php:320 @@ -13682,11 +13807,13 @@ msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "" +"Definiera ett standardmeddelande som kommer att fyllas i och skickas för " +"varje QSO för denna stationsplats." #: application/views/station_profile/create.php:213 #: application/views/station_profile/edit.php:360 msgid "Ignore Clublog Upload" -msgstr "" +msgstr "Ignorera Clublog-uppladdning" #: application/views/station_profile/create.php:218 #: application/views/station_profile/edit.php:365 @@ -13695,200 +13822,211 @@ msgid "" "Clublog. If this is deactivated on it's own please check if the Call is " "properly configured at Clublog" msgstr "" +"Om det är aktiverad kommer QSOn gjorda från denna plats inte att laddas upp " +"till Clublog. Om detta avaktiverats av sig själv, kontrollera om " +"anropssignalen är korrekt konfigurerad på Clublog" #: application/views/station_profile/create.php:221 #: application/views/station_profile/edit.php:368 msgid "ClubLog Realtime Upload" -msgstr "" +msgstr "ClubLog Realtids-uppladdning" #: application/views/station_profile/create.php:230 #: application/views/station_profile/edit.php:384 msgid "HRDLog.net Username" -msgstr "" +msgstr "HRDLog.net användarnamn" #: application/views/station_profile/create.php:232 #: application/views/station_profile/edit.php:386 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" +"Det användarnamn du är registrerad med på HRDlog.net (vanligtvis din " +"anropssignal)." #: application/views/station_profile/create.php:235 #: application/views/station_profile/edit.php:389 msgid "HRDLog.net API Key" -msgstr "" +msgstr "HRDLog.net API-nyckel" #: application/views/station_profile/create.php:237 #: application/views/station_profile/edit.php:394 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" -msgstr "" +msgstr "Skapa din API-kod på din %s" #: application/views/station_profile/create.php:237 #: application/views/station_profile/edit.php:394 msgid "HRDLog.net Userprofile page" -msgstr "" +msgstr "HRDLog.net användarprofilssida" #: application/views/station_profile/create.php:240 #: application/views/station_profile/edit.php:397 msgid "HRDLog.net Logbook Realtime Upload" -msgstr "" +msgstr "HRDLog.net Loggbok Realtidsuppladdning" #: application/views/station_profile/create.php:250 #: application/views/station_profile/edit.php:328 msgid "Subscription Required" -msgstr "" +msgstr "Prenumeration krävs" #: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" -msgstr "" +msgstr "QRZ.com Loggbok API-nyckel" #: application/views/station_profile/create.php:258 msgid "Test API-Key" -msgstr "" +msgstr "Testa API-nyckel" #: application/views/station_profile/create.php:261 #: application/views/station_profile/edit.php:338 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" -msgstr "" +msgstr "Hitta din API-nyckel på %s" #: application/views/station_profile/create.php:261 #: application/views/station_profile/edit.php:338 msgid "the QRZ.com Logbook settings page" -msgstr "" +msgstr "QRZ.com Loggbok inställningssida" #: application/views/station_profile/create.php:264 #: application/views/station_profile/edit.php:342 msgid "QRZ.com Logbook Upload" -msgstr "" +msgstr "QRZ.com Loggbok Uppladdning" #: application/views/station_profile/create.php:267 #: application/views/station_profile/edit.php:345 msgid "Realtime" -msgstr "" +msgstr "Realtid" #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:414 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" -msgstr "" +msgstr "QO-100 Dx Club API-nyckel" #: application/views/station_profile/create.php:277 #: application/views/station_profile/edit.php:419 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" -msgstr "" +msgstr "Skapa din API-nyckel på din %s" #: application/views/station_profile/create.php:277 #: application/views/station_profile/edit.php:419 msgid "QO-100 Dx Club's profile page" -msgstr "" +msgstr "QO-100 Dx Clubs profilsida" #: application/views/station_profile/create.php:280 #: application/views/station_profile/edit.php:422 msgid "QO-100 Dx Club Realtime Upload" -msgstr "" +msgstr "QO-100 Dx Club Realtids-Upladdning" #: application/views/station_profile/create.php:290 #: application/views/station_profile/edit.php:440 msgid "OQRS Enabled" -msgstr "" +msgstr "OQRS aktiverad" #: application/views/station_profile/create.php:297 #: application/views/station_profile/edit.php:447 msgid "OQRS Email alert" -msgstr "" +msgstr "OQRS e-postvarning" #: application/views/station_profile/create.php:302 #: application/views/station_profile/edit.php:452 msgid "Make sure email is set up under admin and global options." msgstr "" +"Se till att e-post är konfigurerad under admin- och globala alternativ." #: application/views/station_profile/create.php:305 #: application/views/station_profile/edit.php:455 msgid "OQRS Text" -msgstr "" +msgstr "OQRS-text" #: application/views/station_profile/create.php:307 #: application/views/station_profile/edit.php:457 msgid "Some info you want to add regarding QSL'ing." -msgstr "" +msgstr "Information du vill lägga till angående QSL hanteringen." #: application/views/station_profile/edit.php:153 msgid "Zones" -msgstr "" +msgstr "Zoner" #: application/views/station_profile/edit.php:291 msgid "Special Interest Group Name" -msgstr "" +msgstr "Namn på specialintressegrupp" #: application/views/station_profile/edit.php:293 msgid "Station Special Interest Group Name (e.g. GMA).." -msgstr "" +msgstr "Stationens specialintressegruppnamn (t.ex. GMA).." #: application/views/station_profile/edit.php:297 msgid "Special Interest Group Information" -msgstr "" +msgstr "Information om specialintressegrupp" + +#: application/views/station_profile/edit.php:309 +#, php-format +msgid "Trouble? Check the %swiki%s." +msgstr "Problem? Kolla %swiki%s." #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" -msgstr "" +msgstr "Stationsloggbok Namn" #: application/views/stationsetup/create.php:19 msgid "You can call a station logbook anything." -msgstr "" +msgstr "Du kan kalla en stationsloggbok vad som helst." #: application/views/stationsetup/edit.php:18 msgid "Container name" -msgstr "" +msgstr "Containernamn" #: application/views/stationsetup/edit.php:20 msgid "You can call a container anything." -msgstr "" +msgstr "Du kan kalla en container vad som helst." #: application/views/stationsetup/exportmapoptions.php:11 msgctxt "Map Options" msgid "CQ Zone overlay" -msgstr "" +msgstr "CQ-zonöverlägg" #: application/views/stationsetup/exportmapoptions.php:15 msgctxt "Map Options" msgid "Gridsquare overlay" -msgstr "" +msgstr "Rutnätsöverlägg" #: application/views/stationsetup/exportmapoptions.php:19 msgctxt "Map Options" msgid "Night shadow overlay" -msgstr "" +msgstr "Natt skugga överlägg" #: application/views/stationsetup/exportmapoptions.php:27 msgid "# QSOs shown" -msgstr "" +msgstr "# QSOn visas" #: application/views/stationsetup/exportmapoptions.php:46 msgid "Visit export map" -msgstr "" +msgstr "Besök exportkarta" #: application/views/stationsetup/linkedlocations.php:13 msgid "Select Available Station Locations" -msgstr "" +msgstr "Välj tillgängliga stationsplatser" #: application/views/stationsetup/linkedlocations.php:25 msgid "Link Location" -msgstr "" +msgstr "Länka stationsplats" #: application/views/stationsetup/linkedlocations.php:31 #: application/views/stationsetup/stationsetup.php:125 msgid "Profile Name" -msgstr "" +msgstr "Profilnamn" #: application/views/stationsetup/linkedlocations.php:34 msgid "Unlink Station Location" -msgstr "" +msgstr "Avlänka stationsplats" #: application/views/stationsetup/stationsetup.php:24 msgid "" @@ -13897,114 +14035,128 @@ msgid "" "analytics. Great for when your operating in multiple locations but they are " "part of the same DXCC or VUCC Circle." msgstr "" +"Stationsloggar låter dig gruppera stationsplatser, detta gör att du kan se " +"alla platser under en session när stations loggen analyseras. Perfekt när du " +"opererar på flera platser som är en del av samma DXCC- eller VUCC-cirkel." #: application/views/stationsetup/stationsetup.php:35 msgid "Linked locations" -msgstr "" +msgstr "Länkade platser" #: application/views/stationsetup/stationsetup.php:37 msgid "Visitor site" -msgstr "" +msgstr "Besökarwebbplats" #: application/views/stationsetup/stationsetup.php:94 msgid "Station Locations" -msgstr "" +msgstr "Stationsplatser" #: application/views/stationsetup/stationsetup.php:98 msgid "" "Station Locations define operating locations, such as your QTH, a friends " "QTH, or a portable station." msgstr "" +"Stationsplatser definierar operativa platser, som ditt QTH, en väns QTH " +"eller en portabel station." #: application/views/stationsetup/stationsetup.php:99 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "" +"Precis som loggböcker håller en stationsprofil en uppsättning QSOn " +"tillsammans." #: application/views/stationsetup/stationsetup.php:100 msgid "" "Only one station may be active at a time. In the table below this is shown " "with the -Active Station- badge." msgstr "" +"Endast en station kan vara aktiv åt gången. I tabellen nedan visas detta med " +"-Aktiv Station- märket." #: application/views/stationsetup/stationsetup.php:101 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." msgstr "" +"Kolumnen 'Länkad' visar om stationens plats är länkad med den aktiva " +"loggboken som valts ovan." #: application/views/stationsetup/stationsetup.php:104 msgid "Create a Station Location" -msgstr "" +msgstr "Skapa en stationsplats" #: application/views/stationsetup/stationsetup.php:104 msgid "Show all locations" -msgstr "" +msgstr "Visa alla platser" #: application/views/stationsetup/stationsetup.php:104 msgid "Show only locations from the active logbook" -msgstr "" +msgstr "Visa endast platser från den aktiva loggboken" #: application/views/stationsetup/stationsetup.php:108 msgid "" "Attention: You need to set an active station location. Go to Callsign-" ">Station Location to select one." msgstr "" +"OBS: Du behöver ställa in en aktiv stationsplats. Gå till Anropssignal-" +">Stationsplats för att välja en." #: application/views/stationsetup/stationsetup.php:114 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." msgstr "" +"På grund av ändringar i Wavelog så behöver du tilldela alla QSO en stations " +"profil." #: application/views/stationsetup/stationsetup.php:116 msgid "Maintenance" -msgstr "" +msgstr "Underhåll" #: application/views/stationsetup/stationsetup.php:116 msgid "Please reassign them at " -msgstr "" - -#: application/views/stationsetup/stationsetup.php:129 -msgid "Last QSO" -msgstr "" +msgstr "Var snäll och tilldela dem vid " #: application/views/stationsetup/stationsetup.php:131 msgid "Linked" -msgstr "" +msgstr "Länkad" #: application/views/stationsetup/stationsetup.php:138 msgid "Favorite" -msgstr "" +msgstr "Favorit" #: application/views/stationsetup/stationsetup.php:185 msgid "mark/unmark as favorite" -msgstr "" +msgstr "markera/avmarkera som favorit" #: application/views/stationsetup/visitor.php:2 msgid "" "Setting a public slug allows you to share your logbook with anyone via a " "custom website address, this slug can contain letters & numbers only." msgstr "" +"Att sätta en offentlig slug gör att du kan dela din loggbok med vem som " +"helst via en anpassad webbadress, denna slug kan endast innehålla bokstäver " +"och siffror." #: application/views/stationsetup/visitor.php:3 msgid "Later it looks like this:" -msgstr "" +msgstr "Sedan ser det ut så här:" #: application/views/stationsetup/visitor.php:4 msgid "[your slug]" -msgstr "" +msgstr "[din slug]" #: application/views/stationsetup/visitor.php:10 msgid "Type in Public Slug choice" -msgstr "" +msgstr "Ange val av offentlig slug" #: application/views/stationsetup/visitor.php:17 msgid "Visit Public Page" -msgstr "" +msgstr "Besök offentlig sida" #: application/views/statistics/antennaanalytics.php:11 msgid "Elevation" -msgstr "" +msgstr "Elevation" #: application/views/statistics/index.php:14 #: application/views/statistics/index.php:61 @@ -14013,7 +14165,7 @@ msgstr "år" #: application/views/statistics/index.php:18 msgid "Number of QSOs worked each year" -msgstr "" +msgstr "Antal QSOn kontaktade varje år" #: application/views/statistics/index.php:31 msgid "Explore the logbook." @@ -14022,7 +14174,7 @@ msgstr "Utforska loggboken." #: application/views/statistics/index.php:35 #: application/views/timeline/index.php:111 msgid "All Years" -msgstr "" +msgstr "Alla år" #: application/views/statistics/index.php:76 #: application/views/statistics/index.php:117 @@ -14031,57 +14183,58 @@ msgstr "Unika callsigns" #: application/views/statistics/index.php:120 msgid "Unique Grids" -msgstr "" +msgstr "Unika rutnät" #: application/views/statistics/initialresult.php:42 #: application/views/statistics/initials.php:36 msgid "No EME QSOs were found." -msgstr "" +msgstr "Inga EME-QSOn hittades." #: application/views/themes/add.php:4 application/views/themes/edit.php:4 msgid "Theme Name" -msgstr "" +msgstr "Temanamn" #: application/views/themes/add.php:6 application/views/themes/edit.php:6 msgid "This is the name that is used to display the theme in the theme list." -msgstr "" +msgstr "Det här är namnet som används för att visa temat i temalistan." #: application/views/themes/add.php:10 application/views/themes/edit.php:10 msgid "Folder Name" -msgstr "" +msgstr "Mappnamn" #: application/views/themes/add.php:12 application/views/themes/edit.php:12 msgid "" "This is the name of the folder where your CSS-files are placed under assets/" "css." msgstr "" +"Detta är namnet på mappen där dina CSS-filer placeras under assets/css." #: application/views/themes/add.php:16 application/views/themes/edit.php:16 #: application/views/themes/index.php:84 msgid "Theme Mode" -msgstr "" +msgstr "Tema Läge" #: application/views/themes/add.php:18 application/views/themes/edit.php:18 msgid "Light" -msgstr "" +msgstr "Ljus" #: application/views/themes/add.php:19 application/views/themes/edit.php:19 msgid "Dark" -msgstr "" +msgstr "Mörk" #: application/views/themes/add.php:21 msgid "This defines wherever the theme is a light or a dark one." -msgstr "" +msgstr "Detta definierar om temat är ljust eller mörkt." #: application/views/themes/add.php:25 application/views/themes/edit.php:25 #: application/views/themes/index.php:85 msgid "Header Logo" -msgstr "" +msgstr "Rubrik Logotyp" #: application/views/themes/add.php:27 application/views/themes/add.php:33 #: application/views/themes/edit.php:27 application/views/themes/edit.php:33 msgid "Only PNG files with a size ratio of 1:1 are allowed." -msgstr "" +msgstr "Endast PNG-filer med storleksförhållandet 1:1 är tillåtna." #: application/views/themes/add.php:27 application/views/themes/edit.php:27 #, php-format @@ -14089,11 +14242,13 @@ msgid "" "This is the name of the file which is used as %s small %s Logo in the header " "placed in assets/logo." msgstr "" +"Detta är namnet på filen som används som %s liten %s logotyp i headern " +"placerad i assets/logo." #: application/views/themes/add.php:31 application/views/themes/edit.php:31 #: application/views/themes/index.php:86 msgid "Main Logo" -msgstr "" +msgstr "Huvudlogotyp" #: application/views/themes/add.php:33 application/views/themes/edit.php:33 #, php-format @@ -14101,24 +14256,28 @@ msgid "" "This is the name of the file which is used as %s big %s Logo in the login " "screen placed in assets/logo." msgstr "" +"Det här är namnet på filen som används som %s stor %s logotyp på " +"inloggningsskärmen som finns i assets/logo." #: application/views/themes/add.php:36 msgid "Add theme" -msgstr "" +msgstr "Lägg till tema" #: application/views/themes/edit.php:21 msgid "" "This defines wherever the theme is a light or a dark one. On this basis the " "Logo is chosen." msgstr "" +"Detta definierar om temat är ljust eller mörkt. På denna grund väljs " +"logotypen." #: application/views/themes/edit.php:36 msgid "Update theme" -msgstr "" +msgstr "Uppdatera tema" #: application/views/themes/index.php:22 msgid "Themes list" -msgstr "" +msgstr "Temalista" #: application/views/themes/index.php:28 msgid "" @@ -14126,18 +14285,22 @@ msgid "" "theme is not really straightforward and should only be done by an admin who " "is aware of their actions." msgstr "" +"I den här menyn kan du lägga till och redigera teman i Wavelog. Processen " +"att lägga till ett tema är inte helt enkel och bör endast göras av en " +"administratör som är medveten om hur Wavelog fungerar." #: application/views/themes/index.php:29 msgid "Also, it has to be said that this feature is still under development." msgstr "" +"Det måste också sägas att denna funktion fortfarande är under utveckling." #: application/views/themes/index.php:35 msgid "Process of adding a new theme" -msgstr "" +msgstr "Processen för att lägga till ett nytt tema" #: application/views/themes/index.php:41 msgid "1. Step" -msgstr "" +msgstr "1. Steget" #: application/views/themes/index.php:44 #, php-format @@ -14145,40 +14308,48 @@ msgid "" "Create a new folder in 'assets/css/' and upload a 'bootstrap.min.css' file " "which contains basic styling rules. We use the themes from %s" msgstr "" +"Skapa en ny mapp i 'assets/css/' och ladda upp en 'bootstrap.min.css'-fil " +"som innehåller grundläggande stilregler. Vi använder teman från %s" #: application/views/themes/index.php:50 msgid "2. Step" -msgstr "" +msgstr "2. Steg" #: application/views/themes/index.php:53 msgid "" "Create a file in this folder called 'overrides.css'. Place your custom CSS " "code in there." msgstr "" +"Skapa en fil i den här mappen som heter 'overrides.css'. Placera din " +"anpassade CSS-kod där." #: application/views/themes/index.php:59 msgid "3. Step" -msgstr "" +msgstr "3. Steget" #: application/views/themes/index.php:62 msgid "" "For each new theme, you need two logo files. One for the login screen and " "one for the header." msgstr "" +"För varje nytt tema behöver du två logofiler. En för inloggningsskärmen och " +"en för rubriken." #: application/views/themes/index.php:63 msgid "" "Only PNG files are allowed, and they should have a pixel ratio of 1:1 (e.g., " "1000px height and 1000px width)." msgstr "" +"Endast PNG-filer är tillåtna, och de bör ha ett pixel-förhållande på 1:1 (t." +"ex. 1000px höjd och 1000px bredd)." #: application/views/themes/index.php:64 msgid "Place the two logo files in the folder 'assets/logo/'" -msgstr "" +msgstr "Placera de två logofilerna i mappen 'assets/logo/'" #: application/views/themes/index.php:70 msgid "4. Step" -msgstr "" +msgstr "4. Steget" #: application/views/themes/index.php:73 #, php-format @@ -14186,82 +14357,88 @@ msgid "" "Click here on 'Add a Theme' and type in the necessary data. Type in the " "filenames for the logos %swithout%s the file extension '.png'" msgstr "" +"Klicka på 'Lägg till ett tema' och skriv in de nödvändiga uppgifterna. Skriv " +"in filnamnen för logotyperna %sutan%s filändelsen '.png'" #: application/views/themes/index.php:83 msgid "Foldername" -msgstr "" +msgstr "Mappnamn" #: application/views/themes/index.php:99 msgid "Please edit" -msgstr "" +msgstr "Vänligen redigera" #: application/views/themes/index.php:116 msgid "Add a Theme" -msgstr "" +msgstr "Lägg till ett tema" #: application/views/timeline/index.php:119 msgid "Only new in selected year" -msgstr "" +msgstr "Endast nya under valt år" #: application/views/timeplotter/index.php:2 msgid "contacts were plotted" -msgstr "" +msgstr "kontakter plottades" #: application/views/timeplotter/index.php:3 msgid "Time Distribution" -msgstr "" +msgstr "Tidsfördelning" #: application/views/timeplotter/index.php:6 msgid "Callsign(s) worked (max 5)" -msgstr "" +msgstr "Anropssignal(er) kontaktade (max 5)" #: application/views/timeplotter/index.php:10 msgid "" "The Timeplotter is used to analyze your logbook and find out at what times " "you worked certain CQ zones or DXCC countries on a selected band." msgstr "" +"Timeplotter används för att analysera din loggbok och ta reda på vid vilka " +"tider du kontaktade vissa CQ-zoner eller DXCC-länder på ett valt band." #: application/views/update/hamsofnote.php:7 msgid "Name / Description" -msgstr "" +msgstr "Namn / Beskrivning" #: application/views/update/index.php:8 msgid "DXCC Lookup Data" -msgstr "" +msgstr "DXCC Uppslagsdata" #: application/views/update/index.php:12 msgid "Distance Data" -msgstr "" +msgstr "Avståndsdata" #: application/views/update/index.php:19 msgid "" "Here you can update the DXCC lookup data that is used for displaying " "callsign information." msgstr "" +"Här kan du uppdatera DXCC-uppslagsdata som används för att visa information " +"om en anropssignal." #: application/views/update/index.php:20 msgid "This data is provided by" -msgstr "" +msgstr "Denna data tillhandahålls av" #: application/views/update/index.php:24 msgid "You must install php-xml for this to work." -msgstr "" +msgstr "Du måste installera php-xml för att detta ska fungera." #: application/views/update/index.php:27 msgid "Check for DXCC Data Updates" -msgstr "" +msgstr "Kontrollera om det finns DXCC-data uppdateringar" #: application/views/update/index.php:28 msgid "Update DXCC Data" -msgstr "" +msgstr "Uppdatera DXCC-data" #: application/views/update/index.php:30 msgid "Status:" -msgstr "" +msgstr "Status:" #: application/views/update/index.php:34 msgid "Apply DXCC Data to Logbook" -msgstr "" +msgstr "Tillämpa DXCC-data på loggbok" #: application/views/update/index.php:36 msgid "" @@ -14271,36 +14448,43 @@ msgid "" "missing DXCC metadata or to re-check the entire logbook\n" "\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." msgstr "" +"Efter uppdatering så kan Wavelog fylla i saknad anropssignalinformation i " +"loggboken med den nyförvärvade DXCC-datan.\n" +"Du kan välja att kontrollera bara de QSOs i loggboken som saknar DXCC-" +"metadata eller att kontrollera hela loggboken igen\n" +"och uppdatera all befintlig metadata ifall den har ändrats." #: application/views/update/index.php:45 msgid "Check QSOs missing DXCC data" -msgstr "" +msgstr "Kontrollera QSOn som saknar DXCC-data" #: application/views/update/index.php:54 application/views/update/index.php:95 msgid "Re-check all QSOs in logbook" -msgstr "" +msgstr "Kontrollera alla QSOn i loggboken igen" #: application/views/update/index.php:59 msgid "Apply Continent Data to Logbook" -msgstr "" +msgstr "Updatera kontinentdata i loggboken" #: application/views/update/index.php:61 msgid "" "This function can be used to update QSO continent information for all QSOs " "in Wavelog missing that information." msgstr "" +"Den här funktionen kan användas för att uppdatera QSO-kontinentinformationen " +"för alla QSOn i Wavelog som saknar den informationen." #: application/views/update/index.php:68 msgid "Check QSOs missing continent data" -msgstr "" +msgstr "Kontrollera QSOn som saknar kontinentdata" #: application/views/update/index.php:80 msgid "Here you can update QSOs with missing distance information." -msgstr "" +msgstr "Här kan du uppdatera QSOn som saknar avståndsinformation." #: application/views/update/index.php:86 msgid "Update distance data" -msgstr "" +msgstr "Uppdatera avståndsdata" #: application/views/update/index.php:89 msgid "" @@ -14308,6 +14492,9 @@ msgid "" "QSOs. Depending on the number of QSOs this might take some time to execute. " "Please be patient." msgstr "" +"Använd följande knapp för att uppdatera avståndsinformationen för alla dina " +"QSOn. Beroende på antalet QSOn kan detta ta lite tid att utföra. Var vänlig " +"och ha tålamod." #: application/views/user/delete.php:5 msgid "Delete User Account" @@ -14327,7 +14514,7 @@ msgstr "Ja, ta bort den här användaren" #: application/views/user/edit.php:6 msgid "Create Clubstation Account" -msgstr "" +msgstr "Skapa klubbstationskonto" #: application/views/user/edit.php:8 msgid "Create User Account" @@ -14339,7 +14526,7 @@ msgstr "Redigera användarkonto" #: application/views/user/edit.php:45 msgid "General Information" -msgstr "" +msgstr "Allmän information" #: application/views/user/edit.php:68 application/views/user/login.php:59 #: application/views/user/login.php:73 application/views/user/login.php:74 @@ -14351,7 +14538,7 @@ msgstr "Lösenord" #: application/views/user/edit.php:74 msgid "Don't share this password with operators!" -msgstr "" +msgstr "Dela inte detta lösenord med operatörerna!" #: application/views/user/edit.php:84 msgid "User Role" @@ -14359,7 +14546,7 @@ msgstr "Användarroll" #: application/views/user/edit.php:113 msgid "Callsign Owner" -msgstr "" +msgstr "Anropssignalägare" #: application/views/user/edit.php:113 msgid "Personal" @@ -14375,15 +14562,15 @@ msgstr "Efternamn" #: application/views/user/edit.php:134 msgid "Ham Radio" -msgstr "" +msgstr "Amatörradio" #: application/views/user/edit.php:137 msgid "Special/Club Callsign" -msgstr "" +msgstr "Special/Klubb-anropssignal" #: application/views/user/edit.php:160 msgid "Wavelog Preferences" -msgstr "" +msgstr "Wavelog-inställningar" #: application/views/user/edit.php:171 msgid "Stylesheet" @@ -14391,11 +14578,11 @@ msgstr "Stilmall" #: application/views/user/edit.php:183 msgid "Wavelog Language" -msgstr "" +msgstr "Wavelog-språk" #: application/views/user/edit.php:190 msgid "Choose Wavelog language." -msgstr "" +msgstr "Välj Wavelog-språk." #: application/views/user/edit.php:193 msgid "Timezone" @@ -14411,19 +14598,19 @@ msgstr "Välj hur du vill att datum ska visas när du är inloggad på ditt kont #: application/views/user/edit.php:218 msgid "Measurement preference" -msgstr "" +msgstr "Mätpreferens" #: application/views/user/edit.php:222 msgid "Kilometers" -msgstr "" +msgstr "Kilometer" #: application/views/user/edit.php:223 msgid "Miles" -msgstr "" +msgstr "Miles" #: application/views/user/edit.php:224 msgid "Nautical miles" -msgstr "" +msgstr "Nautiska mil" #: application/views/user/edit.php:226 msgid "Choose which unit distances will be shown in" @@ -14455,17 +14642,19 @@ msgstr "Välj kolumn 5 (bara för logbok)" #: application/views/user/edit.php:361 msgid "QSO Logging Options" -msgstr "" +msgstr "QSO-loggningsalternativ" #: application/views/user/edit.php:364 msgid "Log End Times for QSOs Separately" -msgstr "" +msgstr "Logga sluttider för QSOn separat" #: application/views/user/edit.php:370 msgid "" "Choose yes here if you want to log QSO start and end times separately. If " "set to 'No' the end time will be the same as start time." msgstr "" +"Välj ja här om du vill logga QSO start- och sluttider separat. Om det är " +"inställt på 'Nej' kommer sluttiden att vara densamma som starttiden." #: application/views/user/edit.php:375 msgid "" @@ -14484,7 +14673,7 @@ msgstr "" #: application/views/user/edit.php:386 msgid "Location auto lookup." -msgstr "" +msgstr "Automatisk platsuppslagning." #: application/views/user/edit.php:392 msgid "If set, gridsquare is fetched based on location name." @@ -14513,7 +14702,7 @@ msgstr "POTA auto lookup gridsquare och namn för park." #: application/views/user/edit.php:425 msgid "Number of previous contacts displayed on QSO page." -msgstr "" +msgstr "Antalet tidigare kontakter att visa på QSO-sidan." #: application/views/user/edit.php:442 msgid "Menu Options" @@ -14525,74 +14714,80 @@ msgstr "Visa anteckningar i huvudmenyn." #: application/views/user/edit.php:456 msgid "Quicklog Field" -msgstr "" +msgstr "Snabblogg-fält" #: application/views/user/edit.php:462 msgid "" "With this feature, you can log callsigns using the search field in the " "header." msgstr "" +"Med den här funktionen kan du logga anropssignaler med hjälp av sökfältet i " +"rubriken." #: application/views/user/edit.php:466 msgid "Quicklog - Action on press Enter" -msgstr "" +msgstr "Snabblogg - Åtgärd vid tryck på Enter" #: application/views/user/edit.php:470 msgid "Log Callsign" -msgstr "" +msgstr "Logga anropssignal" #: application/views/user/edit.php:472 msgid "" "What action should be performed when Enter is pressed in the quicklog field?" -msgstr "" +msgstr "Vilken åtgärd ska utföras när Enter trycks i snabbloggfältet?" #: application/views/user/edit.php:478 msgid "Station Locations Quickswitch" -msgstr "" +msgstr "Snabbväxling av stationsplatser" #: application/views/user/edit.php:483 -msgid "Show the Station Locations Quickswitch in the main menu" +msgid "" +"Show the Station Locations Quickswitch in the main menu. You can add " +"locations by adding them to favourites at the station setup page." msgstr "" +"Visa stationsplatser under Snabbväxling i huvudmenyn. Du kan lägga till " +"platser genom att lägga till dem som favoriter på stationsinställningssidan." #: application/views/user/edit.php:487 msgid "UTC Time in Menu" -msgstr "" +msgstr "UTC-tid i menyn" #: application/views/user/edit.php:492 msgid "Show the current UTC Time in the menu" -msgstr "" +msgstr "Visa aktuell UTC-tid i menyn" #: application/views/user/edit.php:503 msgid "Map Settings" -msgstr "" +msgstr "Kartinställningar" #: application/views/user/edit.php:510 msgid "Icon" -msgstr "" +msgstr "Ikon" #: application/views/user/edit.php:513 msgid "Not display" -msgstr "" +msgstr "Inte visa" #: application/views/user/edit.php:517 msgid "Not displayed" -msgstr "" +msgstr "Inte visad" #: application/views/user/edit.php:526 msgid "QSO (by default)" -msgstr "" +msgstr "QSO (som standard)" #: application/views/user/edit.php:545 msgid "QSO (confirmed)" -msgstr "" +msgstr "QSO (bekräftad)" #: application/views/user/edit.php:546 msgid "(If 'No', displayed as 'QSO (by default))'" -msgstr "" +msgstr "(Om 'Nej', visas som 'QSO (som standard))'" #: application/views/user/edit.php:565 msgid "Show Locator" -msgstr "" +msgstr "Visa lokator" #: application/views/user/edit.php:584 msgid "Previous QSL Type" @@ -14604,48 +14799,52 @@ msgstr "Välj den typ av QSL som ska visas i föregående QSO-avsnitt." #: application/views/user/edit.php:604 msgid "Dashboard Settings" -msgstr "" +msgstr "Instrumentpanelinställningar" #: application/views/user/edit.php:608 msgid "Select the number of latest QSOs to be displayed on dashboard." -msgstr "" +msgstr "Välj antalet senaste QSOn som ska visas på instrumentpanelen." #: application/views/user/edit.php:615 msgid "Choose the number of latest QSOs to be displayed on dashboard." -msgstr "" +msgstr "Välj antalet senaste QSOn som ska visas på instrumentpanelen." #: application/views/user/edit.php:619 msgid "Show Dashboard Map" -msgstr "" +msgstr "Visa instrumentpanelkarta" #: application/views/user/edit.php:623 msgid "Map at right" -msgstr "" +msgstr "Karta till höger" #: application/views/user/edit.php:626 msgid "Choose whether to show map on dashboard or not" -msgstr "" +msgstr "Välj om kartan ska visas på instrumentpanelen eller inte" #: application/views/user/edit.php:630 msgid "Dashboard Notification Banner" -msgstr "" +msgstr "Instrumentpanelens notifikations fält" #: application/views/user/edit.php:636 msgid "This allows to disable the global notification banner on the dashboard." msgstr "" +"Detta gör det möjligt att inaktivera det globala notifikations fältet på " +"instrumentpanelen." #: application/views/user/edit.php:644 msgid "Show Reference Fields on QSO Tab" -msgstr "" +msgstr "Visa referensfält på QSO-fliken" #: application/views/user/edit.php:648 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" +"De aktiverade objekten kommer att visas på QSO-fliken istället för på den " +"allmänna fliken." #: application/views/user/edit.php:686 msgid "Online QSL request (OQRS) settings" -msgstr "" +msgstr "Inställningar för online QSL-begäran (OQRS)" #: application/views/user/edit.php:690 msgid "Global text" @@ -14692,29 +14891,33 @@ msgstr "" #: application/views/user/edit.php:713 msgid "Automatic OQRS matching" -msgstr "" +msgstr "Automatisk OQRS-matchning" #: application/views/user/edit.php:718 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" +"Om detta är på, kommer automatisk OQRS-matchning att ske, och systemet " +"kommer att försöka matcha inkommande förfrågningar med befintliga loggar " +"automatiskt." #: application/views/user/edit.php:722 msgid "Automatic OQRS matching for direct requests" -msgstr "" +msgstr "Automatisk OQRS-matchning för direkta förfrågningar" #: application/views/user/edit.php:727 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" +"Om detta är på, kommer automatisk OQRS-matchning för direktförfrågan att ske." #: application/views/user/edit.php:743 msgid "Default Values" -msgstr "" +msgstr "Standardvärden" #: application/views/user/edit.php:751 msgid "Settings for Default Band and Confirmation" -msgstr "" +msgstr "Inställningar för standardband och bekräftelse" #: application/views/user/edit.php:754 msgid "Default Band" @@ -14722,11 +14925,11 @@ msgstr "Standard Band" #: application/views/user/edit.php:764 msgid "Default QSL-Methods" -msgstr "" +msgstr "Standard-QSL-metoder" #: application/views/user/edit.php:821 msgid "Third Party Services" -msgstr "" +msgstr "Tredjepartstjänster" #: application/views/user/edit.php:832 msgid "Logbook of The World (LoTW) Username" @@ -14738,7 +14941,7 @@ msgstr "Logbook of The World (LoTW) Lösenord" #: application/views/user/edit.php:842 msgid "Test Login" -msgstr "" +msgstr "Testa inloggning" #: application/views/user/edit.php:860 msgid "eQSL.cc Username" @@ -14750,11 +14953,11 @@ msgstr "eQSL.cc Lösenord" #: application/views/user/edit.php:883 msgid "Club Log" -msgstr "" +msgstr "Club Log" #: application/views/user/edit.php:886 msgid "Club Log Email/Callsign" -msgstr "" +msgstr "Club Log E-post/Anropssignal" #: application/views/user/edit.php:892 msgid "Club Log Password" @@ -14766,43 +14969,50 @@ msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" +"Om du har 2FA aktiverat på Clublog måste du generera ett App-lösenord för " +"att använda Clublog i Wavelog. Besök %sdin Clublog-inställningssida%s för " +"att göra det." #: application/views/user/edit.php:914 msgid "Widgets" -msgstr "" +msgstr "Widgets" #: application/views/user/edit.php:922 msgid "On-Air widget" -msgstr "" +msgstr "On-Air widget" #: application/views/user/edit.php:932 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" +"Observera: För att använda denna widget måste du ha minst en CAT-radio " +"konfigurerad och fungerande." #: application/views/user/edit.php:936 #, php-format msgid "When enabled, widget will be available at %s." -msgstr "" +msgstr "När den är aktiverad kommer widgeten att vara tillgänglig på %s." #: application/views/user/edit.php:941 msgid "Display \"Last seen\" time" -msgstr "" +msgstr "Visa \"Senast sedd\" tid" #: application/views/user/edit.php:947 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" +"Denna inställning styr om tiden för 'Senast sedd' visas i widgeten eller " +"inte." #: application/views/user/edit.php:950 msgid "Display only most recently updated radio" -msgstr "" +msgstr "Visa endast den senast uppdaterade radion" #: application/views/user/edit.php:954 msgid "No, show all radios" -msgstr "" +msgstr "Nej, visa alla radioapparater" #: application/views/user/edit.php:956 msgid "" @@ -14811,24 +15021,29 @@ msgid "" "recently updated one. In case you have only one radio, this setting has no " "effect." msgstr "" +"Om du har flera CAT-radios konfigurerade, så styr den här inställningen om " +"widgeten ska visa alla användarens aktiva radios eller bara den senast " +"uppdaterade. Om du bara har en radio så har den här inställningen ingen " +"effekt." #: application/views/user/edit.php:966 msgid "QSOs widget" -msgstr "" +msgstr "QSO-widget" #: application/views/user/edit.php:969 msgid "Display exact QSO time" -msgstr "" +msgstr "Visa exakt QSO-tid" #: application/views/user/edit.php:975 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" +"Denna inställning styr om exakt QSO-tid ska visas i QSO-widgeten eller inte." #: application/views/user/edit.php:988 msgid "Miscellaneous" -msgstr "" +msgstr "Diverse" #: application/views/user/edit.php:996 msgid "AMSAT Status Upload" @@ -14840,7 +15055,7 @@ msgstr "Ladda upp status för SAT QSOs till" #: application/views/user/edit.php:1013 msgid "Mastodonserver" -msgstr "" +msgstr "Mastodonserver" #: application/views/user/edit.php:1016 msgid "URL of Mastodonserver" @@ -14849,19 +15064,19 @@ msgstr "URL till Mastodonserver" #: application/views/user/edit.php:1018 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" -msgstr "" +msgstr "Huvud-URL för din Mastodon-server, t.ex. %s" #: application/views/user/edit.php:1027 msgid "Experimental" -msgstr "" +msgstr "Experimentell" #: application/views/user/edit.php:1027 msgid "Winkeyer" -msgstr "" +msgstr "Winkeyer" #: application/views/user/edit.php:1030 msgid "Winkeyer Features Enabled" -msgstr "" +msgstr "Winkeyer-funktioner aktiverade" #: application/views/user/edit.php:1036 #, php-format @@ -14869,30 +15084,34 @@ msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" +"Winkeyer-stöd i Wavelog är mycket experimentellt. Läs först wikin på %s " +"innan du aktiverar." #: application/views/user/edit.php:1047 msgid "Hams.at" -msgstr "" +msgstr "Hams.at" #: application/views/user/edit.php:1050 msgid "Private Feed Key" -msgstr "" +msgstr "Privat nyckel" #: application/views/user/edit.php:1052 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." -msgstr "" +msgstr "Se din profil på %s." #: application/views/user/edit.php:1055 msgid "Show Workable Passes Only" -msgstr "" +msgstr "Visa endast användbara passeringar" #: application/views/user/edit.php:1061 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" +"Om aktiverad visar endast användbara pass baserat på rutnätsrutan som anges " +"i ditt hams.at-konto. Kräver att privat nyckel är konfigurerad." #: application/views/user/edit.php:1073 msgid "Save Account" @@ -14905,7 +15124,7 @@ msgstr "Glömt lösenord?" #: application/views/user/forgot_password.php:34 #: application/views/user/reset_password.php:9 msgid "You can reset your password here." -msgstr "" +msgstr "Du kan återställa ditt lösenord här." #: application/views/user/index.php:11 msgid "User List" @@ -14935,6 +15154,10 @@ msgid "" "link to reset their password. To achieve this, ensure that the email " "settings in the global options are configured correctly." msgstr "" +"Med knappen för återställning av lösenord kan du skicka ett e-postmeddelande " +"till en användare med en länk för att återställa deras lösenord. För att " +"uppnå detta, se till att e-postinställningarna i de globala inställningarna " +"är korrekt konfigurerade." #: application/views/user/index.php:19 msgid "Create user" @@ -14942,50 +15165,50 @@ msgstr "Skapa användare" #: application/views/user/index.php:31 application/views/user/index.php:158 msgid "Last seen" -msgstr "" +msgstr "Senast sedd" #: application/views/user/index.php:69 application/views/user/index.php:184 #: application/views/user/modals/admin_impersonate_modal.php:31 msgid "Never" -msgstr "" +msgstr "Aldrig" #: application/views/user/index.php:74 msgid "Account locked" -msgstr "" +msgstr "Konto låst" #: application/views/user/index.php:74 msgid "Account was locked due to too many login attempts." -msgstr "" +msgstr "Kontot låstes på grund av för många inloggningsförsök." #: application/views/user/index.php:76 application/views/user/index.php:188 msgid "Locations" -msgstr "" +msgstr "Platser" #: application/views/user/index.php:78 application/views/user/index.php:190 msgid "Logbooks" -msgstr "" +msgstr "Loggböcker" #: application/views/user/index.php:81 application/views/user/index.php:193 msgid "Last QSO:" -msgstr "" +msgstr "Senaste QSO:" #: application/views/user/index.php:85 application/views/user/index.php:195 msgid "No QSOs in Log" -msgstr "" +msgstr "Inga QSOn i loggen" #: application/views/user/index.php:103 application/views/user/index.php:209 #: application/views/user/modals/admin_impersonate_modal.php:43 msgid "Impersonate" -msgstr "" +msgstr "Efterlikna" #: application/views/user/index.php:110 application/views/user/index.php:219 #: application/views/user/modals/more_actions_modal.php:6 msgid "Other Actions" -msgstr "" +msgstr "Andra åtgärder" #: application/views/user/index.php:138 msgid "Clubstation List" -msgstr "" +msgstr "Klubbstationslista" #: application/views/user/index.php:141 msgid "" @@ -14993,35 +15216,39 @@ msgid "" "events to handle multiple operators. A clubstation is basically a normal " "user account with some special features and some restrictions." msgstr "" +"Klubbstationer i Wavelog är ett unikt sätt för klubbar och " +"specialanropsevenemang att hantera flera operatörer. En klubbstation är i " +"grunden ett vanligt användarkonto med några speciella funktioner och vissa " +"begränsningar." #: application/views/user/index.php:143 msgid "Create Clubstation" -msgstr "" +msgstr "Skapa klubbstation" #: application/views/user/index.php:156 msgid "Last Operator" -msgstr "" +msgstr "Senaste operatör" #: application/views/user/index.php:243 msgid "No Clubstations configures yet." -msgstr "" +msgstr "Inga klubbstationer konfigurerade ännu." #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" -msgstr "" +msgstr "UNDERHÅLLSLÄGE" #: application/views/user/login.php:56 msgid "Welcome to the Demo of Wavelog" -msgstr "" +msgstr "Välkommen till demon av Wavelog" #: application/views/user/login.php:57 msgid "This demo will be reset every night at 0200z." -msgstr "" +msgstr "Denna demo återställs varje natt klockan 0200z." #: application/views/user/login.php:60 #, php-format msgid "More Information about Wavelog on %sGithub%s." -msgstr "" +msgstr "Mer information om Wavelog på %sGithub%s." #: application/views/user/login.php:79 msgid "Forgot your password?" @@ -15029,11 +15256,11 @@ msgstr "Glömt lösenord?" #: application/views/user/login.php:85 msgid "Keep me logged in" -msgstr "" +msgstr "Håll mig inloggad" #: application/views/user/modals/admin_impersonate_modal.php:5 msgid "(with Admin Rights)" -msgstr "" +msgstr "(med administratörsrättigheter)" #: application/views/user/modals/admin_impersonate_modal.php:5 msgid "Impersonate User" @@ -15526,6 +15753,9 @@ msgstr "" msgid "Rcvd" msgstr "" +#~ msgid "Yay, its imported!" +#~ msgstr "Jippie, den är importerad!" + #~ msgid "ADIF File" #~ msgstr "ADIF-fil" diff --git a/application/locale/tr_TR/LC_MESSAGES/messages.po b/application/locale/tr_TR/LC_MESSAGES/messages.po index 759509e9b..39f9d9af1 100644 --- a/application/locale/tr_TR/LC_MESSAGES/messages.po +++ b/application/locale/tr_TR/LC_MESSAGES/messages.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-08-20 19:04+0000\n" +"POT-Creation-Date: 2025-08-24 15:29+0000\n" "PO-Revision-Date: 2025-08-19 17:14+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Turkish \n" +"POT-Creation-Date: 2025-08-24 15:29+0000\n" +"PO-Revision-Date: 2025-08-22 09:26+0000\n" +"Last-Translator: Tao Xu \n" "Language-Team: Chinese (Simplified Han script) \n" "Language: zh_CN\n" @@ -242,16 +242,16 @@ msgstr "ADIF 导入失败!" msgid "Station Profile not valid for User" msgstr "用户台站信息无效" -#: application/controllers/Adif.php:282 +#: application/controllers/Adif.php:283 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "ADIF 导入完成" -#: application/controllers/Adif.php:293 +#: application/controllers/Adif.php:294 msgid "DCL Import" msgstr "导入 DCL" -#: application/controllers/Adif.php:351 +#: application/controllers/Adif.php:352 msgid "DCL Data Imported" msgstr "DCL 数据导入完成" @@ -3145,96 +3145,91 @@ msgstr "HRDlog:无 QSO 可供上传,台站呼号为: " msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "HRDlog:无台站配置信息。" -#: application/models/Logbook_model.php:1291 +#: application/models/Logbook_model.php:1292 msgid "Station ID not allowed" msgstr "集体台站 ID 有误" -#: application/models/Logbook_model.php:1296 +#: application/models/Logbook_model.php:1297 msgid "No Call given" msgstr "未提供呼号" -#: application/models/Logbook_model.php:1366 -#: application/models/Logbook_model.php:1540 +#: application/models/Logbook_model.php:1367 +#: application/models/Logbook_model.php:1541 msgid "DXCC has to be Numeric" msgstr "DXCC 应该是数字" -#: application/models/Logbook_model.php:3987 +#: application/models/Logbook_model.php:4005 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "导入 QSO 时出现错误:本台呼号 %s 对方呼号 %s %s,已跳过" -#: application/models/Logbook_model.php:3988 -#, php-format -msgid "Check %s for hints about errors in ADIF files." -msgstr "请查看 ADIF 错误提示 %s。" - -#: application/models/Logbook_model.php:4000 +#: application/models/Logbook_model.php:4018 msgid "QSO on" msgstr "QSO 时间" -#: application/models/Logbook_model.php:4000 +#: application/models/Logbook_model.php:4018 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" msgstr "试图导入的 QSO 不存在对方呼号(CALL)。此 QSO 无效,未导入" -#: application/models/Logbook_model.php:4299 +#: application/models/Logbook_model.php:4317 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "qslrdate 字段错误(YYYYMMDD)" -#: application/models/Logbook_model.php:4310 +#: application/models/Logbook_model.php:4328 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "qslsdate 字段错误(YYYYMMDD)" -#: application/models/Logbook_model.php:4371 +#: application/models/Logbook_model.php:4389 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "clublog_qso_upload_date 字段错误( YYYYMMDD)" -#: application/models/Logbook_model.php:4391 +#: application/models/Logbook_model.php:4409 msgid "the lotw_qslrdate is invalid (YYYYMMDD)" msgstr "the lotw_qslrdate 字段错误(YYYYMMDD)" -#: application/models/Logbook_model.php:4412 +#: application/models/Logbook_model.php:4430 msgid "the lotw_qslsdate is invalid (YYYYMMDD)" msgstr "lotw_qslsdate 字段错误(YYYYMMDD)" -#: application/models/Logbook_model.php:4704 +#: application/models/Logbook_model.php:4722 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "内容重复" -#: application/models/Logbook_model.php:4765 +#: application/models/Logbook_model.php:4783 msgid "QSO could not be matched" msgstr "QSO 无法匹配" -#: application/models/Logbook_model.php:4771 +#: application/models/Logbook_model.php:4789 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "已经通过 LoTW/Clublog/eQSL/竞赛 确认" -#: application/models/Logbook_model.php:4776 +#: application/models/Logbook_model.php:4794 msgid "confirmed by award manager" msgstr "已经通过奖项管理员确认" -#: application/models/Logbook_model.php:4779 +#: application/models/Logbook_model.php:4797 msgid "confirmed by cross-check of DCL data" msgstr "已经通过 DCL 数据交叉检查确认" -#: application/models/Logbook_model.php:4782 +#: application/models/Logbook_model.php:4800 msgid "confirmation pending" msgstr "等待确认" -#: application/models/Logbook_model.php:4785 +#: application/models/Logbook_model.php:4803 msgid "unconfirmed" msgstr "未确认" -#: application/models/Logbook_model.php:4788 +#: application/models/Logbook_model.php:4806 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:287 msgid "unknown" msgstr "未知" -#: application/models/Logbook_model.php:5626 +#: application/models/Logbook_model.php:5644 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:39 #: application/views/awards/gridmaster/index.php:54 @@ -3944,7 +3939,7 @@ msgstr "最低数量" #: application/views/awards/wapc/index.php:168 #: application/views/awards/was/index.php:201 #: application/views/awards/wwff/index.php:65 -#: application/views/callstats/index.php:129 +#: application/views/callstats/index.php:128 #: application/views/clublog/export.php:60 #: application/views/distancerecords/index.php:52 #: application/views/public_search/empty.php:3 @@ -3961,7 +3956,7 @@ msgstr "未找到!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wwff/index.php:35 #: application/views/cabrillo/index.php:31 -#: application/views/callstats/index.php:148 +#: application/views/callstats/index.php:147 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 #: application/views/contesting/index.php:166 @@ -4005,7 +4000,7 @@ msgid "Count" msgstr "数量" #: application/views/activators/index.php:101 -#: application/views/callstats/index.php:150 +#: application/views/callstats/index.php:151 #: application/views/timeline/index.php:203 #: application/views/timeline/index.php:238 #: application/views/timeline/index.php:266 @@ -4288,7 +4283,7 @@ msgstr "在导入时始终使用登录账户的呼号作为操作员呼号" #: application/views/adif/import.php:151 msgid "Mark QSOs as uploaded (This does NOT upload QSOs to these services!)" -msgstr "" +msgstr "标记QSO为已上传 (仅标记,并不会上传QSO到这些服务!)" #: application/views/adif/import.php:158 msgid "Mark imported QSOs as uploaded to LoTW" @@ -4322,7 +4317,7 @@ msgstr "标记导入的 QSO 为已上传至 DCL Logbook" #: application/views/adif/import.php:207 msgid "Toggle all checkboxes" -msgstr "" +msgstr "全选/全不选" #: application/views/adif/import.php:212 application/views/adif/import.php:355 #: application/views/adif/import.php:393 @@ -4459,7 +4454,7 @@ msgstr "" "Cabrillo文件来在Wavelog中重写该数据。" #: application/views/adif/import.php:370 -#: application/views/adif/import_success.php:31 +#: application/views/adif/import_success.php:40 #: application/views/lotw_views/index.php:137 msgid "Information" msgstr "信息" @@ -4516,27 +4511,31 @@ msgstr "" "有至少一个 ADIF 字段无法解析或插入至数据库,请检查 ADIF 文件。您可以使用在线" "的 ADIF 检查工具,例如:" -#: application/views/adif/import_success.php:17 -msgid "Yay, its imported!" -msgstr "导入成功!" +#: application/views/adif/import_success.php:22 +msgid "Yay, it's imported!" +msgstr "" -#: application/views/adif/import_success.php:18 +#: application/views/adif/import_success.php:23 msgid "The ADIF File has been imported." msgstr "ADIF 文件已成功导入。" -#: application/views/adif/import_success.php:22 +#: application/views/adif/import_success.php:25 +msgid "Number of QSOs imported:" +msgstr "" + +#: application/views/adif/import_success.php:31 msgid "Dupes were inserted!" msgstr "已添加重复项!" -#: application/views/adif/import_success.php:24 +#: application/views/adif/import_success.php:33 msgid "Dupes were skipped." msgstr "已跳过重复项。" -#: application/views/adif/import_success.php:31 +#: application/views/adif/import_success.php:40 msgid "Contest logs imported" msgstr "导入竞赛日志" -#: application/views/adif/import_success.php:33 +#: application/views/adif/import_success.php:42 msgid "" "Sometimes, depending on your contest logging software, your exchanges will " "not be imported properly from that softwares ADIF. If you like to correct " @@ -4545,19 +4544,24 @@ msgstr "" "有时,根据您的竞赛记录软件,您的通联记录无法从该软件ADIF正确导入。如果您想更" "正该问题,请切换到“ADIF导入”页面的“CBP导入”选项卡。" -#: application/views/adif/import_success.php:33 +#: application/views/adif/import_success.php:42 msgid "You imported at least 1 QSO containing a contest ID." msgstr "你已经导入至少一个包含比赛ID的通联记录。" -#: application/views/adif/import_success.php:34 +#: application/views/adif/import_success.php:43 msgid "We found the following numbers of QSOs for the following contest IDs:" msgstr "我们找到了以下竞赛 ID 的以下 QSO 数量:" -#: application/views/adif/import_success.php:47 +#: application/views/adif/import_success.php:57 msgid "Import details / possible problems" msgstr "导入详情 / 存在错误" -#: application/views/adif/import_success.php:48 +#: application/views/adif/import_success.php:58 +#, php-format +msgid "Check %s for hints about errors in ADIF files." +msgstr "请查看 ADIF 错误提示 %s。" + +#: application/views/adif/import_success.php:59 msgid "" "You might have ADIF errors, the QSOs have still been added. Please check the " "following information:" @@ -5427,31 +5431,31 @@ msgstr "显示 DXCC 地图" #: application/views/awards/dxcc/index.php:221 msgid "Legend:" -msgstr "" +msgstr "图例:" #: application/views/awards/dxcc/index.php:222 msgid "(Q)SL-Paper-Card" -msgstr "" +msgstr "纸质QSL卡片(Q)" #: application/views/awards/dxcc/index.php:223 msgid "(L)oTW" -msgstr "" +msgstr "LoTW(L)" #: application/views/awards/dxcc/index.php:224 msgid "(e)QSL" -msgstr "" +msgstr "eQSL(e)" #: application/views/awards/dxcc/index.php:225 msgid "QR(Z)-\"confirmation\"" -msgstr "" +msgstr "QRZ确认(Z)" #: application/views/awards/dxcc/index.php:226 msgid "(C)lublog" -msgstr "" +msgstr "Clublog(C)" #: application/views/awards/dxcc/index.php:227 msgid "(W)orked" -msgstr "" +msgstr "已通联(W)" #: application/views/awards/dxcc/index.php:233 msgid "DXCC Name" @@ -6936,10 +6940,19 @@ msgstr "在日志中未发现任何竞赛。" msgid "All except SAT" msgstr "除卫星以外" -#: application/views/callstats/index.php:149 +#: application/views/callstats/index.php:148 msgid "#QSOs" msgstr "通联数量" +#: application/views/callstats/index.php:149 +msgid "First QSO" +msgstr "" + +#: application/views/callstats/index.php:150 +#: application/views/stationsetup/stationsetup.php:129 +msgid "Last QSO" +msgstr "最近通联" + #: application/views/cfd/index.php:7 #, php-format msgid "Export of CFD-File for DARC-Toplist (See %s)" @@ -13551,6 +13564,11 @@ msgstr "电台所属兴趣组名称(如:GMA).." msgid "Special Interest Group Information" msgstr "电台兴趣组信息" +#: application/views/station_profile/edit.php:309 +#, php-format +msgid "Trouble? Check the %swiki%s." +msgstr "" + #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "台站日志名称" @@ -13685,10 +13703,6 @@ msgstr "维护" msgid "Please reassign them at " msgstr "重新分配 " -#: application/views/stationsetup/stationsetup.php:129 -msgid "Last QSO" -msgstr "最近通联" - #: application/views/stationsetup/stationsetup.php:131 msgid "Linked" msgstr "已绑定" @@ -14282,8 +14296,12 @@ msgid "Station Locations Quickswitch" msgstr "台址快速切换" #: application/views/user/edit.php:483 -msgid "Show the Station Locations Quickswitch in the main menu" -msgstr "在主菜单显示快速切换台址按钮" +msgid "" +"Show the Station Locations Quickswitch in the main menu. You can add " +"locations by adding them to favourites at the station setup page." +msgstr "" +"在主菜单中显示台址快速切换功能。您可以在设置台站页面将台址设置为“喜爱的”来增" +"加可快速切换的台址。" #: application/views/user/edit.php:487 msgid "UTC Time in Menu" @@ -15277,6 +15295,12 @@ msgstr "提交请求" msgid "Rcvd" msgstr "收" +#~ msgid "Yay, its imported!" +#~ msgstr "导入成功!" + +#~ msgid "Show the Station Locations Quickswitch in the main menu" +#~ msgstr "在主菜单显示快速切换台址按钮" + #~ msgid "Mark QSOs as uploaded" #~ msgstr "标记 QSO 为已上传" diff --git a/application/migrations/253_tag_2_1.php b/application/migrations/253_tag_2_1.php new file mode 100644 index 000000000..566f7dc2c --- /dev/null +++ b/application/migrations/253_tag_2_1.php @@ -0,0 +1,33 @@ +db->where('option_name', 'version'); + $this->db->update('options', array('option_value' => '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.0.7')); + } +} diff --git a/application/models/Callstats_model.php b/application/models/Callstats_model.php index cde44b4eb..c475d280d 100644 --- a/application/models/Callstats_model.php +++ b/application/models/Callstats_model.php @@ -25,7 +25,9 @@ class Callstats_model extends CI_Model { $sql = "select `col_call` as `call`, - COUNT(*) as `count` + COUNT(*) as `count`, + min(col_time_on) as first_qso, + max(col_time_on) as last_qso from " . $this->config->item('table_name') . " left join satellite on ".$this->config->item('table_name').".COL_SAT_NAME = satellite.name where station_id in (" . $location_list . ")"; diff --git a/application/models/Dxcluster_model.php b/application/models/Dxcluster_model.php index b5f431dc9..0b6284de9 100644 --- a/application/models/Dxcluster_model.php +++ b/application/models/Dxcluster_model.php @@ -4,12 +4,13 @@ use Wavelog\Dxcc\Dxcc; class Dxcluster_model extends CI_Model { - protected $bandedges = []; + protected $bandedges = []; - public function __construct() { + public function __construct() { + $this->load->Model('Modes'); $this->db->where('bandedges.userid', $this->session->userdata('user_id')); $query = $this->db->get('bandedges'); - $result = $query->result_array(); + $result = $query->result_array(); if ($result) { $this->bandedges = $result; @@ -19,7 +20,7 @@ class Dxcluster_model extends CI_Model { $query = $this->db->get('bandedges'); $this->bandedges = $query->result_array(); } - } + } public function dxc_spotlist($band = '20m', $maxage = 60, $de = '', $mode = 'All') { $this->load->helper(array('psr4_autoloader')); @@ -98,12 +99,12 @@ class Dxcluster_model extends CI_Model { } if ( ($de != '') && ($de != 'Any') && (property_exists($singlespot->dxcc_spotter,'cont')) ){ // If we have a "de continent" and a filter-wish filter on that if (strtolower($de) == strtolower($singlespot->dxcc_spotter->cont ?? '')) { - $singlespot->worked_dxcc = ($this->logbook_model->check_if_dxcc_worked_in_logbook($singlespot->dxcc_spotted->dxcc_id, $logbooks_locations_array, $singlespot->band) >= 1); - $singlespot->cnfmd_dxcc = ($this->logbook_model->check_if_dxcc_cnfmd_in_logbook($singlespot->dxcc_spotted->dxcc_id, $logbooks_locations_array, $singlespot->band) >= 1); - $singlespot->worked_call = ($this->logbook_model->check_if_callsign_worked_in_logbook($singlespot->spotted, $logbooks_locations_array, $singlespot->band) >= 1); - $singlespot->cnfmd_call = ($this->logbook_model->check_if_callsign_cnfmd_in_logbook($singlespot->spotted, $logbooks_locations_array, $singlespot->band) >= 1); - $singlespot->cnfmd_continent = ($this->check_if_continent_cnfmd_in_logbook($singlespot->dxcc_spotted->cont, $logbooks_locations_array, $singlespot->band) >= 1); - $singlespot->worked_continent = ($this->check_if_continent_cnfmd_in_logbook($singlespot->dxcc_spotted->cont, $logbooks_locations_array, $singlespot->band) >= 1); + $singlespot->worked_dxcc = ($this->logbook_model->check_if_dxcc_worked_in_logbook($singlespot->dxcc_spotted->dxcc_id, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); + $singlespot->cnfmd_dxcc = ($this->logbook_model->check_if_dxcc_cnfmd_in_logbook($singlespot->dxcc_spotted->dxcc_id, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); + $singlespot->worked_call = ($this->logbook_model->check_if_callsign_worked_in_logbook($singlespot->spotted, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); + $singlespot->cnfmd_call = ($this->logbook_model->check_if_callsign_cnfmd_in_logbook($singlespot->spotted, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); + $singlespot->cnfmd_continent = ($this->check_if_continent_cnfmd_in_logbook($singlespot->dxcc_spotted->cont, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); + $singlespot->worked_continent = ($this->check_if_continent_cnfmd_in_logbook($singlespot->dxcc_spotted->cont, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); if ($singlespot->worked_call) { $singlespot->last_wked=$this->logbook_model->last_worked_callsign_in_logbook($singlespot->spotted, $logbooks_locations_array, $singlespot->band)[0]; if ($this->session->userdata('user_date_format')) { @@ -116,12 +117,12 @@ class Dxcluster_model extends CI_Model { array_push($spotsout,$singlespot); } } else { // No de continent? No Filter --> Just push - $singlespot->worked_dxcc = ($this->logbook_model->check_if_dxcc_worked_in_logbook($singlespot->dxcc_spotted->dxcc_id, $logbooks_locations_array, $singlespot->band) >= 1); - $singlespot->worked_call = ($this->logbook_model->check_if_callsign_worked_in_logbook($singlespot->spotted, $logbooks_locations_array, $singlespot->band) >= 1); - $singlespot->cnfmd_dxcc = ($this->logbook_model->check_if_dxcc_cnfmd_in_logbook($singlespot->dxcc_spotted->dxcc_id, $logbooks_locations_array, $singlespot->band) >= 1); - $singlespot->cnfmd_call = ($this->logbook_model->check_if_callsign_cnfmd_in_logbook($singlespot->spotted, $logbooks_locations_array, $singlespot->band) >= 1); - $singlespot->cnfmd_continent = ($this->check_if_continent_cnfmd_in_logbook($singlespot->dxcc_spotted->cont, $logbooks_locations_array, $singlespot->band) >= 1); - $singlespot->worked_continent = ($this->check_if_continent_worked_in_logbook($singlespot->dxcc_spotted->cont, $logbooks_locations_array, $singlespot->band) >= 1); + $singlespot->worked_dxcc = ($this->logbook_model->check_if_dxcc_worked_in_logbook($singlespot->dxcc_spotted->dxcc_id, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); + $singlespot->worked_call = ($this->logbook_model->check_if_callsign_worked_in_logbook($singlespot->spotted, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); + $singlespot->cnfmd_dxcc = ($this->logbook_model->check_if_dxcc_cnfmd_in_logbook($singlespot->dxcc_spotted->dxcc_id, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); + $singlespot->cnfmd_call = ($this->logbook_model->check_if_callsign_cnfmd_in_logbook($singlespot->spotted, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); + $singlespot->cnfmd_continent = ($this->check_if_continent_cnfmd_in_logbook($singlespot->dxcc_spotted->cont, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); + $singlespot->worked_continent = ($this->check_if_continent_worked_in_logbook($singlespot->dxcc_spotted->cont, $logbooks_locations_array, $singlespot->band, $singlespot->mode) >= 1); array_push($spotsout,$singlespot); } } @@ -250,7 +251,7 @@ class Dxcluster_model extends CI_Model { } } - function check_if_continent_worked_in_logbook($cont, $StationLocationsArray = null, $band = null) { + function check_if_continent_worked_in_logbook($cont, $StationLocationsArray = null, $band = null, $mode = null) { if ($StationLocationsArray == null) { $this->load->model('logbooks_model'); @@ -263,6 +264,10 @@ class Dxcluster_model extends CI_Model { $this->db->where_in('station_id', $logbooks_locations_array); $this->db->where('COL_CONT', $cont); + if (isset($mode)) { + $this->db->where(" COL_MODE in ".$this->Modes->get_modes_from_qrgmode($mode,true)); + } + $band = ($band == 'All') ? null : $band; if ($band != null && $band != 'SAT') { $this->db->where('COL_BAND', $band); @@ -276,7 +281,7 @@ class Dxcluster_model extends CI_Model { return $query->num_rows(); } - function check_if_continent_cnfmd_in_logbook($cont, $StationLocationsArray = null, $band = null) { + function check_if_continent_cnfmd_in_logbook($cont, $StationLocationsArray = null, $band = null, $mode = null) { if ($StationLocationsArray == null) { $this->load->model('logbooks_model'); @@ -315,6 +320,10 @@ class Dxcluster_model extends CI_Model { $this->db->where_in('station_id', $logbooks_locations_array); $this->db->where('COL_CONT', $cont); + if (isset($mode)) { + $this->db->where(" COL_MODE in ".$this->Modes->get_modes_from_qrgmode($mode,true)); + } + $band = ($band == 'All') ? null : $band; if ($band != null && $band != 'SAT') { $this->db->where('COL_BAND', $band); diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index 4172393f9..084c7eda1 100644 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -5,6 +5,7 @@ class Logbook_model extends CI_Model { private $station_result = []; public function __construct() { $this->oop_populate_modes(); + $this->load->Model('Modes'); } private $oop_modes = []; @@ -2407,7 +2408,7 @@ class Logbook_model extends CI_Model { } } - function check_if_callsign_cnfmd_in_logbook($callsign, $StationLocationsArray = null, $band = null) { + function check_if_callsign_cnfmd_in_logbook($callsign, $StationLocationsArray = null, $band = null, $mode = null) { if ($StationLocationsArray == null) { $this->load->model('logbooks_model'); @@ -2446,6 +2447,10 @@ class Logbook_model extends CI_Model { $this->db->where_in('station_id', $logbooks_locations_array); $this->db->where('COL_CALL', $callsign); + if (isset($mode)) { + $this->db->where(" COL_MODE in ".$this->Modes->get_modes_from_qrgmode($mode,true)); + } + $band = ($band == 'All') ? null : $band; if ($band != null && $band != 'SAT') { $this->db->where('COL_BAND', $band); @@ -2491,7 +2496,7 @@ class Logbook_model extends CI_Model { return $query->result(); } - function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray = null, $band = null) { + function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray = null, $band = null, $mode = null) { if ($StationLocationsArray == null) { $this->load->model('logbooks_model'); @@ -2504,6 +2509,10 @@ class Logbook_model extends CI_Model { $this->db->where_in('station_id', $logbooks_locations_array); $this->db->where('COL_CALL', $callsign); + if (isset($mode)) { + $this->db->where(" COL_MODE in ".$this->Modes->get_modes_from_qrgmode($mode,true)); + } + $band = ($band == 'All') ? null : $band; if ($band != null && $band != 'SAT') { $this->db->where('COL_BAND', $band); @@ -2517,7 +2526,7 @@ class Logbook_model extends CI_Model { return $query->num_rows(); } - function check_if_dxcc_worked_in_logbook($dxcc, $StationLocationsArray = null, $band = null) { + function check_if_dxcc_worked_in_logbook($dxcc, $StationLocationsArray = null, $band = null, $mode = null) { if ($StationLocationsArray == null) { $this->load->model('logbooks_model'); @@ -2530,6 +2539,10 @@ class Logbook_model extends CI_Model { $this->db->where_in('station_id', $logbooks_locations_array); $this->db->where('COL_DXCC', $dxcc); + if (isset($mode)) { + $this->db->where(" COL_MODE in ".$this->Modes->get_modes_from_qrgmode($mode,true)); + } + $band = ($band == 'All') ? null : $band; if ($band != null && $band != 'SAT') { $this->db->where('COL_BAND', $band); @@ -2608,7 +2621,7 @@ class Logbook_model extends CI_Model { } - function check_if_dxcc_cnfmd_in_logbook($dxcc, $StationLocationsArray = null, $band = null) { + function check_if_dxcc_cnfmd_in_logbook($dxcc, $StationLocationsArray = null, $band = null, $mode = null) { if ($StationLocationsArray == null) { $this->load->model('logbooks_model'); @@ -2647,6 +2660,10 @@ class Logbook_model extends CI_Model { $this->db->where_in('station_id', $logbooks_locations_array); $this->db->where('COL_DXCC', $dxcc); + if (isset($mode)) { + $this->db->where(" COL_MODE in ".$this->Modes->get_modes_from_qrgmode($mode,true)); + } + $band = ($band == 'All') ? null : $band; if ($band != null && $band != 'SAT') { $this->db->where('COL_BAND', $band); @@ -3933,7 +3950,7 @@ class Logbook_model extends CI_Model { function import_bulk($records, $station_id = "0", $skipDuplicate = false, $markClublog = false, $markLotw = false, $dxccAdif = false, $markQrz = false, $markEqsl = false, $markHrd = false, $markDcl = false, $skipexport = false, $operatorName = false, $apicall = false, $skipStationCheck = false) { $this->load->model('user_model'); - $custom_errors = ''; + $custom_errors['errormessage'] = ''; $a_qsos = []; $amsat_qsos = []; $today = time(); @@ -3950,7 +3967,7 @@ class Logbook_model extends CI_Model { foreach ($records as $record) { $one_error = $this->import($record, $station_id, $skipDuplicate, $markClublog, $markLotw, $dxccAdif, $markQrz, $markEqsl, $markHrd, $markDcl, $skipexport, trim($operatorName), $apicall, $skipStationCheck, true, $station_id_ok, $station_profile, $station_qslmsg); if ($one_error['error'] ?? '' != '') { - $custom_errors .= $one_error['error'] . "
"; + $custom_errors['errormessage'] .= $one_error['error']; } else { // No Errors / QSO doesn't exist so far array_push($a_qsos, $one_error['raw_qso'] ?? ''); if (isset($record['prop_mode']) && $record['prop_mode'] == 'SAT' && $amsat_status_upload) { @@ -3980,7 +3997,8 @@ class Logbook_model extends CI_Model { $records = ''; gc_collect_cycles(); - if (count($a_qsos) > 0) { + $custom_errors['qsocount'] = count($a_qsos); + if ($custom_errors['qsocount'] > 0) { $this->db->insert_batch($this->config->item('table_name'), $a_qsos); } foreach ($amsat_qsos as $amsat_qso) { @@ -4016,9 +4034,9 @@ class Logbook_model extends CI_Model { $record['station_callsign'] = $station_profile_call; } if ((!$skipStationCheck) && ($station_id != 0) && (trim(strtoupper($record['station_callsign'])) != trim(strtoupper($station_profile_call)))) { // Check if station_call from import matches profile ONLY when submitting via GUI. - $returner['error'] =sprintf(__("Wrong station callsign %s while importing QSO with %s for %s: SKIPPED") . - "
".__("Check %s for hints about errors in ADIF files."), - ''.htmlentities($record['station_callsign'] ?? '').'',($record['call'] ?? ''),''.($station_profile_call ?? '').'',"Wavelog Wiki"); + $returner['error'] = sprintf(__("Wrong station callsign %s while importing QSO with %s for %s: SKIPPED") . + "
", + ''.htmlentities($record['station_callsign'] ?? '').'',($record['call'] ?? ''),''.($station_profile_call ?? '').''); return ($returner); } diff --git a/application/models/Modes.php b/application/models/Modes.php index 66f40ac9b..5eed3a6e2 100644 --- a/application/models/Modes.php +++ b/application/models/Modes.php @@ -15,6 +15,48 @@ class Modes extends CI_Model { return $this->db->get('adif_modes'); } + function get_modes_from_qrgmode($qrgmode = '', $translate_from_ui = false) { + // Clean ID + $bindings=[]; + if ($translate_from_ui) { + if ($qrgmode == 'digi') { + $bindings[] = 'DATA'; + } elseif ($qrgmode == 'cw') { + $bindings[] = 'CW'; + } elseif ($qrgmode == 'phone') { + $bindings[] = 'SSB'; + } else { + $bindings[]=''; + } + } else { + $bindings[]=$this->security->xss_clean($qrgmode); + } + + $query = $this->db->query('select distinct mode from adif_modes where qrgmode = ?', $bindings); + if ($query->num_rows() > 0) { + $modes = []; + foreach ($query->result() as $row) { + $modes[] = "'".$this->security->xss_clean($row->mode)."'"; + } + return '('.implode(',', $modes).')'; + } else { + return "('')"; + } + } + + function get_qrgmode_from_mode($mode = '') { + // Clean ID + $bindings=[]; + $bindings[] = ($this->security->xss_clean($mode) ?? ''); + + $query = $this->db->query('select qrgmode from adif_modes where mode = ?', $bindings); + if ($query->num_rows() > 0) { + return $query->row()->QRGMODE; + } else { + return ''; + } + } + function mode($id) { // Clean ID $clean_id = $this->security->xss_clean($id); @@ -118,4 +160,4 @@ class Modes extends CI_Model { } -?> \ No newline at end of file +?> diff --git a/application/views/adif/import_success.php b/application/views/adif/import_success.php index c59939e81..38759ed09 100644 --- a/application/views/adif/import_success.php +++ b/application/views/adif/import_success.php @@ -1,31 +1,40 @@ -
-
- session->flashdata('message')) { ?> - -
-

session->flashdata('message'); ?>

-
- +
+ session->flashdata('message')): ?> + + + -
-
- -
-
+
+
+ +
+
+ +
+
+ ✔ +
+
+

+

+

+ +

- -

-

+ +

+ + + + + +

- - " . __("Dupes were inserted!") . ""; - } else { - echo " ".__("Dupes were skipped."); - } ?> -

- - + 0) {?> - - -

-

-

- -
-
+ + +
+

+
Wavelog Wiki") ?> +

+
+
+
+
+ +
+
diff --git a/application/views/callstats/index.php b/application/views/callstats/index.php index 7d335fe37..24966a9dc 100644 --- a/application/views/callstats/index.php +++ b/application/views/callstats/index.php @@ -120,11 +120,10 @@ } ?> ' . __("Nothing found!") . '
'; } @@ -135,7 +134,7 @@ # ' . __("Callsign") . ' ' . __("#QSOs") . ' + ' . __("First QSO") . ' + ' . __("Last QSO") . ' ' . __("Show QSOs") . ' '; $activators = array(); + foreach ($activators_array as $line) { $call = $line->call; $count = $line->count; - array_push($activators, array($count, $call)); + $timestamp = strtotime($line->first_qso); + $first_qso = date($custom_date_format, $timestamp); + $timestamp = strtotime($line->last_qso); + $last_qso = date($custom_date_format, $timestamp); + array_push($activators, array($count, $call, $first_qso, $last_qso)); } arsort($activators); foreach ($activators as $line) { @@ -164,6 +170,8 @@ function write_activators($activators_array, $band, $mode, $sat, $orbit, $propag ' . $i++ . ' ' . $line[1] . ' ' . $line[0] . ' + ' . $line[2] . ' + ' . $line[3] . ' '; } diff --git a/application/views/station_profile/edit.php b/application/views/station_profile/edit.php index f8bfcbe16..342195a04 100644 --- a/application/views/station_profile/edit.php +++ b/application/views/station_profile/edit.php @@ -306,7 +306,7 @@ if ($dxcc_list->result() > 0) {
-
+
', ''); ?>
diff --git a/application/views/user/edit.php b/application/views/user/edit.php index 9d76a2192..d74395d11 100644 --- a/application/views/user/edit.php +++ b/application/views/user/edit.php @@ -480,7 +480,7 @@ - +
diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot index 796ac73a7..9270c6666 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-08-20 19:04+0000\n" +"POT-Creation-Date: 2025-08-24 15:29+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -226,16 +226,16 @@ msgstr "" msgid "Station Profile not valid for User" msgstr "" -#: application/controllers/Adif.php:282 +#: application/controllers/Adif.php:283 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "" -#: application/controllers/Adif.php:293 +#: application/controllers/Adif.php:294 msgid "DCL Import" msgstr "" -#: application/controllers/Adif.php:351 +#: application/controllers/Adif.php:352 msgid "DCL Data Imported" msgstr "" @@ -3120,96 +3120,91 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:1291 +#: application/models/Logbook_model.php:1292 msgid "Station ID not allowed" msgstr "" -#: application/models/Logbook_model.php:1296 +#: application/models/Logbook_model.php:1297 msgid "No Call given" msgstr "" -#: application/models/Logbook_model.php:1366 -#: application/models/Logbook_model.php:1540 +#: application/models/Logbook_model.php:1367 +#: application/models/Logbook_model.php:1541 msgid "DXCC has to be Numeric" msgstr "" -#: application/models/Logbook_model.php:3987 +#: application/models/Logbook_model.php:4005 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" -#: application/models/Logbook_model.php:3988 -#, php-format -msgid "Check %s for hints about errors in ADIF files." -msgstr "" - -#: application/models/Logbook_model.php:4000 +#: application/models/Logbook_model.php:4018 msgid "QSO on" msgstr "" -#: application/models/Logbook_model.php:4000 +#: application/models/Logbook_model.php:4018 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:4299 +#: application/models/Logbook_model.php:4317 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4310 +#: application/models/Logbook_model.php:4328 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4371 +#: application/models/Logbook_model.php:4389 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4391 +#: application/models/Logbook_model.php:4409 msgid "the lotw_qslrdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4412 +#: application/models/Logbook_model.php:4430 msgid "the lotw_qslsdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4704 +#: application/models/Logbook_model.php:4722 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "" -#: application/models/Logbook_model.php:4765 +#: application/models/Logbook_model.php:4783 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:4771 +#: application/models/Logbook_model.php:4789 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:4776 +#: application/models/Logbook_model.php:4794 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:4779 +#: application/models/Logbook_model.php:4797 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:4782 +#: application/models/Logbook_model.php:4800 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:4785 +#: application/models/Logbook_model.php:4803 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:4788 +#: application/models/Logbook_model.php:4806 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 #: application/views/view_log/qso.php:287 msgid "unknown" msgstr "" -#: application/models/Logbook_model.php:5626 +#: application/models/Logbook_model.php:5644 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:39 #: application/views/awards/gridmaster/index.php:54 @@ -3920,7 +3915,7 @@ msgstr "" #: application/views/awards/wapc/index.php:168 #: application/views/awards/was/index.php:201 #: application/views/awards/wwff/index.php:65 -#: application/views/callstats/index.php:129 +#: application/views/callstats/index.php:128 #: application/views/clublog/export.php:60 #: application/views/distancerecords/index.php:52 #: application/views/public_search/empty.php:3 @@ -3937,7 +3932,7 @@ msgstr "" #: application/views/awards/sota/index.php:33 #: application/views/awards/wwff/index.php:35 #: application/views/cabrillo/index.php:31 -#: application/views/callstats/index.php:148 +#: application/views/callstats/index.php:147 #: application/views/club/permissions.php:222 #: application/views/components/hamsat/table.php:27 #: application/views/contesting/index.php:166 @@ -3981,7 +3976,7 @@ msgid "Count" msgstr "" #: application/views/activators/index.php:101 -#: application/views/callstats/index.php:150 +#: application/views/callstats/index.php:151 #: application/views/timeline/index.php:203 #: application/views/timeline/index.php:238 #: application/views/timeline/index.php:266 @@ -4428,7 +4423,7 @@ msgid "" msgstr "" #: application/views/adif/import.php:370 -#: application/views/adif/import_success.php:31 +#: application/views/adif/import_success.php:40 #: application/views/lotw_views/index.php:137 msgid "Information" msgstr "" @@ -4478,46 +4473,55 @@ msgid "" "file checker. For example:" msgstr "" -#: application/views/adif/import_success.php:17 -msgid "Yay, its imported!" +#: application/views/adif/import_success.php:22 +msgid "Yay, it's imported!" msgstr "" -#: application/views/adif/import_success.php:18 +#: application/views/adif/import_success.php:23 msgid "The ADIF File has been imported." msgstr "" -#: application/views/adif/import_success.php:22 -msgid "Dupes were inserted!" -msgstr "" - -#: application/views/adif/import_success.php:24 -msgid "Dupes were skipped." +#: application/views/adif/import_success.php:25 +msgid "Number of QSOs imported:" msgstr "" #: application/views/adif/import_success.php:31 -msgid "Contest logs imported" +msgid "Dupes were inserted!" msgstr "" #: application/views/adif/import_success.php:33 +msgid "Dupes were skipped." +msgstr "" + +#: application/views/adif/import_success.php:40 +msgid "Contest logs imported" +msgstr "" + +#: application/views/adif/import_success.php:42 msgid "" "Sometimes, depending on your contest logging software, your exchanges will " "not be imported properly from that softwares ADIF. If you like to correct " "that, switch to the CBR Import Tab of the ADIF Import page." msgstr "" -#: application/views/adif/import_success.php:33 +#: application/views/adif/import_success.php:42 msgid "You imported at least 1 QSO containing a contest ID." msgstr "" -#: application/views/adif/import_success.php:34 +#: application/views/adif/import_success.php:43 msgid "We found the following numbers of QSOs for the following contest IDs:" msgstr "" -#: application/views/adif/import_success.php:47 +#: application/views/adif/import_success.php:57 msgid "Import details / possible problems" msgstr "" -#: application/views/adif/import_success.php:48 +#: application/views/adif/import_success.php:58 +#, php-format +msgid "Check %s for hints about errors in ADIF files." +msgstr "" + +#: application/views/adif/import_success.php:59 msgid "" "You might have ADIF errors, the QSOs have still been added. Please check the " "following information:" @@ -6781,10 +6785,19 @@ msgstr "" msgid "All except SAT" msgstr "" -#: application/views/callstats/index.php:149 +#: application/views/callstats/index.php:148 msgid "#QSOs" msgstr "" +#: application/views/callstats/index.php:149 +msgid "First QSO" +msgstr "" + +#: application/views/callstats/index.php:150 +#: application/views/stationsetup/stationsetup.php:129 +msgid "Last QSO" +msgstr "" + #: application/views/cfd/index.php:7 #, php-format msgid "Export of CFD-File for DARC-Toplist (See %s)" @@ -13270,6 +13283,11 @@ msgstr "" msgid "Special Interest Group Information" msgstr "" +#: application/views/station_profile/edit.php:309 +#, php-format +msgid "Trouble? Check the %swiki%s." +msgstr "" + #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "" @@ -13400,10 +13418,6 @@ msgstr "" msgid "Please reassign them at " msgstr "" -#: application/views/stationsetup/stationsetup.php:129 -msgid "Last QSO" -msgstr "" - #: application/views/stationsetup/stationsetup.php:131 msgid "Linked" msgstr "" @@ -13981,7 +13995,9 @@ msgid "Station Locations Quickswitch" msgstr "" #: application/views/user/edit.php:483 -msgid "Show the Station Locations Quickswitch in the main menu" +msgid "" +"Show the Station Locations Quickswitch in the main menu. You can add " +"locations by adding them to favourites at the station setup page." msgstr "" #: application/views/user/edit.php:487 diff --git a/install/includes/gettext/locale/hy/LC_MESSAGES/installer.mo b/install/includes/gettext/locale/hy/LC_MESSAGES/installer.mo index 2f80b5c21..bf00b17d4 100644 Binary files a/install/includes/gettext/locale/hy/LC_MESSAGES/installer.mo and b/install/includes/gettext/locale/hy/LC_MESSAGES/installer.mo differ diff --git a/install/includes/gettext/locale/hy/LC_MESSAGES/installer.po b/install/includes/gettext/locale/hy/LC_MESSAGES/installer.po index 47b1fde6c..b6994a6b5 100644 --- a/install/includes/gettext/locale/hy/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/hy/LC_MESSAGES/installer.po @@ -3,33 +3,37 @@ # This file is distributed under the MIT licence. # # Fabian Berg , 2024. +# Matthias Jung , 2025. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" "POT-Creation-Date: 2025-07-31 16:28+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2025-08-23 15:21+0000\n" +"Last-Translator: Matthias Jung \n" +"Language-Team: Armenian \n" "Language: hy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 5.12.2\n" #: install/includes/install_config/install_lib.php:123 msgid "not detected" -msgstr "" +msgstr "չի հայտնաբերվում" #: install/includes/interface_assets/footer.php:57 msgid "Albanian" -msgstr "" +msgstr "ալբաներեն" #: install/includes/interface_assets/footer.php:58 msgid "Armenian" -msgstr "" +msgstr "Հայերեն" #: install/includes/interface_assets/footer.php:59 msgid "Bosnian" -msgstr "" +msgstr "բոսնիերեն" #: install/includes/interface_assets/footer.php:60 msgid "Bulgarian" diff --git a/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.mo b/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.mo index fd4ecd3f5..efe7b7d4a 100644 Binary files a/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.mo and b/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.mo differ diff --git a/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.po b/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.po index c6c7dadbe..64ece17a0 100644 --- a/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" "POT-Creation-Date: 2025-07-31 16:28+0000\n" -"PO-Revision-Date: 2025-08-18 05:25+0000\n" +"PO-Revision-Date: 2025-08-21 20:20+0000\n" "Last-Translator: Luca \n" "Language-Team: Italian \n" @@ -535,7 +535,7 @@ msgstr "Indicativo di chiamata" #: install/index.php:906 msgid "Gridsquare/Locator" -msgstr "Griglia/Locator" +msgstr "Griglia/Locatore" #: install/index.php:916 msgid "City" diff --git a/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.mo b/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.mo index 4099737f3..5a29daee6 100644 Binary files a/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.mo and b/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.mo differ diff --git a/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.po b/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.po index 3127f93f4..cbe3f5584 100644 --- a/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" "POT-Creation-Date: 2025-07-31 16:28+0000\n" -"PO-Revision-Date: 2025-07-29 02:35+0000\n" +"PO-Revision-Date: 2025-08-24 12:50+0000\n" "Last-Translator: Michael Skolsky \n" "Language-Team: Russian \n" @@ -93,7 +93,7 @@ msgstr "Итальянский" #: install/includes/interface_assets/footer.php:73 msgid "Japanese" -msgstr "" +msgstr "Японский" #: install/includes/interface_assets/footer.php:74 msgid "Latvian" diff --git a/install/includes/gettext/locale/sv_SE/LC_MESSAGES/installer.mo b/install/includes/gettext/locale/sv_SE/LC_MESSAGES/installer.mo index 2b340c3f6..4e45ac711 100644 Binary files a/install/includes/gettext/locale/sv_SE/LC_MESSAGES/installer.mo and b/install/includes/gettext/locale/sv_SE/LC_MESSAGES/installer.mo differ diff --git a/install/includes/gettext/locale/sv_SE/LC_MESSAGES/installer.po b/install/includes/gettext/locale/sv_SE/LC_MESSAGES/installer.po index d7531b706..1977d6110 100644 --- a/install/includes/gettext/locale/sv_SE/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/sv_SE/LC_MESSAGES/installer.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" "POT-Creation-Date: 2025-07-31 16:28+0000\n" -"PO-Revision-Date: 2025-07-19 14:55+0000\n" +"PO-Revision-Date: 2025-08-24 06:41+0000\n" "Last-Translator: \"Jorgen Dahl, NU1T\" \n" "Language-Team: Swedish \n" @@ -90,7 +90,7 @@ msgstr "Italienska" #: install/includes/interface_assets/footer.php:73 msgid "Japanese" -msgstr "" +msgstr "Japanska" #: install/includes/interface_assets/footer.php:74 msgid "Latvian"