Merge branch 'dev' into clublog_gui

This commit is contained in:
Andreas Kristiansen
2025-01-28 09:47:34 +01:00
committed by GitHub
42 changed files with 3131 additions and 2315 deletions

View File

@@ -7,9 +7,10 @@ class Continents extends CI_Controller {
$this->load->model('user_model');
$this->load->model('bands');
$this->load->model('logbookadvanced_model');
$this->load->model('gridmap_model');
$data['bands'] = $this->bands->get_worked_bands();
$data['modes'] = $this->logbookadvanced_model->get_modes();
$data['modes'] = $this->gridmap_model->get_worked_modes();
if(!$this->user_model->authorize($this->config->item('auth_mode'))) {
if($this->user_model->validate_session()) {
@@ -18,7 +19,7 @@ class Continents extends CI_Controller {
} else {
redirect('user/login');
}
}
}
// Render User Interface
// Set Page Title
@@ -29,7 +30,7 @@ class Continents extends CI_Controller {
$this->load->view('continents/index');
$this->load->view('interface_assets/footer');
}
public function get_continents() {

View File

@@ -53,14 +53,14 @@ class Logbookadvanced extends CI_Controller {
$pageData['modes'] = $this->logbookadvanced_model->get_modes();
$pageData['dxccarray'] = $this->logbook_model->fetchDxcc();
$pageData['iotaarray'] = $this->logbook_model->fetchIota();
$pageData['sats'] = $this->bands->get_worked_sats();
$pageData['sats'] = $this->logbookadvanced_model->get_worked_sats();
$pageData['orbits'] = $this->bands->get_worked_orbits();
$pageData['station_profile'] = $this->stations->all_of_user();
$pageData['active_station_info'] = $station_profile->row();
$pageData['homegrid'] = explode(',', $this->stations->find_gridsquare());
$pageData['active_station_id'] = $active_station_id;
$pageData['bands'] = $this->bands->get_worked_bands();
$pageData['bands'] = $this->logbookadvanced_model->get_worked_bands();
// Get Date format
if($this->session->userdata('user_date_format')) {

View File

@@ -110,6 +110,35 @@ class Statistics extends CI_Controller {
echo json_encode($bandstats);
}
public function get_operators() {
//load logbook model
$this->load->model('logbook_model');
//define stats array
$operatorstats = array();
//get year if present
$yr = xss_clean($this->input->post('yr')) ?? 'All';
//load stats
$total_operators = $this->logbook_model->total_operators($yr);
$i = 0;
//convert to final form
if ($total_operators) {
foreach($total_operators->result() as $qso_numbers) {
$operatorstats[$i]['operator'] = $qso_numbers->operator;
$operatorstats[$i++]['count'] = $qso_numbers->count;
}
}
//return as json
header('Content-Type: application/json');
echo json_encode($operatorstats);
}
public function get_sat() {
$this->load->model('logbook_model');

View File

@@ -313,6 +313,7 @@ function qra2latlong($strQRA) {
if ((strlen($strQRA) % 2 == 0) && (strlen($strQRA) <= 10)) { // Check if QRA is EVEN (the % 2 does that) and smaller/equal 8
$strQRA = strtoupper($strQRA);
if (strlen($strQRA) == 2) $strQRA .= "55"; // Only 2 Chars? Fill with center "55"
if (strlen($strQRA) == 4) $strQRA .= "LL"; // Only 4 Chars? Fill with center "LL" as only A-R allowed
if (strlen($strQRA) == 6) $strQRA .= "55"; // Only 6 Chars? Fill with center "55"
if (strlen($strQRA) == 8) $strQRA .= "LL"; // Only 8 Chars? Fill with center "LL" as only A-R allowed

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2025-01-23 10:57+0000\n"
"POT-Creation-Date: 2025-01-27 13:03+0000\n"
"PO-Revision-Date: 2024-11-01 08:53+0000\n"
"Last-Translator: Plamen Panteleev <lz1ppl@abv.bg>\n"
"Language-Team: Bulgarian <https://translate.wavelog.org/projects/wavelog/"
@@ -569,7 +569,7 @@ msgstr ""
#: application/views/bands/index.php:32
#: application/views/interface_assets/header.php:400
#: application/views/statistics/index.php:16
#: application/views/statistics/index.php:65
#: application/views/statistics/index.php:67
msgid "Bands"
msgstr ""
@@ -716,7 +716,7 @@ msgstr ""
msgid "Update Contest"
msgstr ""
#: application/controllers/Continents.php:25
#: application/controllers/Continents.php:26
#: application/views/awards/dxcc/index.php:83
#: application/views/awards/iota/index.php:57
#: application/views/interface_assets/header.php:163
@@ -1276,8 +1276,8 @@ msgstr ""
#: application/views/simplefle/index.php:157
#: application/views/statistics/antennaanalytics.php:31
#: application/views/statistics/index.php:15
#: application/views/statistics/index.php:20
#: application/views/statistics/index.php:62
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:64
#: application/views/timeline/index.php:19 application/views/user/edit.php:244
#: application/views/user/edit.php:267 application/views/user/edit.php:290
#: application/views/user/edit.php:313 application/views/user/edit.php:337
@@ -1550,7 +1550,7 @@ msgstr ""
#: application/views/simplefle/index.php:156
#: application/views/stationsetup/exportmapoptions.php:31
#: application/views/statistics/antennaanalytics.php:19
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:22
#: application/views/timeline/index.php:7
#: application/views/timeplotter/index.php:14
#: application/views/user/edit.php:242 application/views/user/edit.php:265
@@ -1597,6 +1597,7 @@ msgstr "Честота"
#: application/views/qso/components/previous_contacts.php:90
#: application/views/search/search_result_ajax.php:17
#: application/views/simplefle/index.php:116
#: application/views/statistics/index.php:23
#: application/views/user/edit.php:255 application/views/user/edit.php:278
#: application/views/user/edit.php:301 application/views/user/edit.php:324
#: application/views/user/edit.php:348
@@ -2381,13 +2382,13 @@ msgstr ""
msgid "Statistics"
msgstr ""
#: application/controllers/Statistics.php:209
#: application/controllers/Statistics.php:238
#: application/views/interface_assets/header.php:143
#: application/views/statistics/qsltable.php:5
msgid "QSL Statistics"
msgstr ""
#: application/controllers/Statistics.php:224
#: application/controllers/Statistics.php:253
#: application/views/interface_assets/header.php:141
#: application/views/statistics/antennaanalytics.php:3
msgid "Antenna Analytics"
@@ -2918,82 +2919,82 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:3875
#: application/models/Logbook_model.php:3899
#, php-format
msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED"
msgstr ""
#: application/models/Logbook_model.php:3876
#: application/models/Logbook_model.php:3900
#, php-format
msgid "Check %s for hints about errors in ADIF files."
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid "QSO on"
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
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:4187
#: application/models/Logbook_model.php:4211
msgid "the qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4198
#: application/models/Logbook_model.php:4222
msgid "the qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4259
#: application/models/Logbook_model.php:4283
msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4279
#: application/models/Logbook_model.php:4303
msgid "the lotw_qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4300
#: application/models/Logbook_model.php:4324
msgid "the lotw_qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4581
#: application/models/Logbook_model.php:4605
#: application/views/simplefle/index.php:40
msgid "Duplicate for"
msgstr ""
#: application/models/Logbook_model.php:4642
#: application/models/Logbook_model.php:4666
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4648
#: application/models/Logbook_model.php:4672
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4653
#: application/models/Logbook_model.php:4677
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4656
#: application/models/Logbook_model.php:4680
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4659
#: application/models/Logbook_model.php:4683
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4662
#: application/models/Logbook_model.php:4686
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4665
#: application/models/Logbook_model.php:4689
#: application/views/satellite/index.php:52
#: application/views/view_log/qso.php:287
msgid "unknown"
msgstr ""
#: application/models/Logbook_model.php:5475
#: application/models/Logbook_model.php:5499
#: application/views/activated_gridmap/index.php:110
#: application/views/awards/ffma/index.php:38
#: application/views/awards/gridmaster/index.php:44
@@ -3075,8 +3076,8 @@ msgstr ""
#: application/views/dashboard/index.php:296
#: application/views/dayswithqso/index.php:41
#: application/views/dayswithqso/index.php:81
#: application/views/statistics/index.php:18
#: application/views/statistics/index.php:36
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:38
#: application/views/timeline/index.php:107
#: application/views/visitor/index.php:250
msgid "Year"
@@ -3559,7 +3560,7 @@ msgstr ""
#: application/views/satellite/skedtable.php:7
#: application/views/satellite/skedtable.php:56
#: application/views/sattimers/index.php:38
#: application/views/statistics/index.php:22
#: application/views/statistics/index.php:24
msgid "Satellite"
msgstr "Сателит"
@@ -5923,6 +5924,8 @@ msgstr ""
#: application/views/cabrillo/index.php:164
#: application/views/reg1test/index.php:70
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:73
msgid "Operators"
msgstr ""
@@ -6674,7 +6677,7 @@ msgid "VUCC Gridsquare"
msgstr ""
#: application/views/continents/index.php:63
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:20
msgid "# of QSO's worked"
msgstr ""
@@ -8439,8 +8442,8 @@ msgstr ""
#: application/views/interface_assets/header.php:289
#: application/views/notes/add.php:38 application/views/notes/edit.php:39
#: application/views/satellite/index.php:11
#: application/views/statistics/index.php:48
#: application/views/statistics/index.php:102
#: application/views/statistics/index.php:50
#: application/views/statistics/index.php:111
msgid "Satellites"
msgstr ""
@@ -8779,8 +8782,8 @@ msgid "Label types"
msgstr ""
#: application/views/labels/index.php:81
#: application/views/statistics/index.php:68
#: application/views/statistics/index.php:105
#: application/views/statistics/index.php:70
#: application/views/statistics/index.php:114
#: application/views/widgets/qsos.php:3
msgid "QSOs"
msgstr ""
@@ -9715,7 +9718,7 @@ msgid "Category"
msgstr "Категория"
#: application/views/notes/add.php:36 application/views/notes/edit.php:37
#: application/views/qso/index.php:31 application/views/statistics/index.php:44
#: application/views/qso/index.php:31 application/views/statistics/index.php:46
#: application/views/user/edit.php:169
msgid "General"
msgstr "Общи"
@@ -12217,25 +12220,25 @@ msgid "Elevation"
msgstr ""
#: application/views/statistics/index.php:14
#: application/views/statistics/index.php:59
#: application/views/statistics/index.php:61
msgid "Years"
msgstr ""
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:18
msgid "Number of QSOs worked each year"
msgstr ""
#: application/views/statistics/index.php:29
#: application/views/statistics/index.php:31
msgid "Explore the logbook."
msgstr ""
#: application/views/statistics/index.php:33
#: application/views/statistics/index.php:35
#: application/views/timeline/index.php:111
msgid "All Years"
msgstr ""
#: application/views/statistics/index.php:71
#: application/views/statistics/index.php:108
#: application/views/statistics/index.php:76
#: application/views/statistics/index.php:117
msgid "Unique callsigns"
msgstr ""

View File

@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2025-01-23 10:57+0000\n"
"POT-Creation-Date: 2025-01-27 13:03+0000\n"
"PO-Revision-Date: 2024-11-16 17:03+0000\n"
"Last-Translator: Samir <DL4DCO@users.noreply.translate.wavelog.org>\n"
"Language-Team: Bosnian <https://translate.wavelog.org/projects/wavelog/main-"
@@ -571,7 +571,7 @@ msgstr ""
#: application/views/bands/index.php:32
#: application/views/interface_assets/header.php:400
#: application/views/statistics/index.php:16
#: application/views/statistics/index.php:65
#: application/views/statistics/index.php:67
msgid "Bands"
msgstr ""
@@ -718,7 +718,7 @@ msgstr ""
msgid "Update Contest"
msgstr ""
#: application/controllers/Continents.php:25
#: application/controllers/Continents.php:26
#: application/views/awards/dxcc/index.php:83
#: application/views/awards/iota/index.php:57
#: application/views/interface_assets/header.php:163
@@ -1279,8 +1279,8 @@ msgstr ""
#: application/views/simplefle/index.php:157
#: application/views/statistics/antennaanalytics.php:31
#: application/views/statistics/index.php:15
#: application/views/statistics/index.php:20
#: application/views/statistics/index.php:62
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:64
#: application/views/timeline/index.php:19 application/views/user/edit.php:244
#: application/views/user/edit.php:267 application/views/user/edit.php:290
#: application/views/user/edit.php:313 application/views/user/edit.php:337
@@ -1553,7 +1553,7 @@ msgstr ""
#: application/views/simplefle/index.php:156
#: application/views/stationsetup/exportmapoptions.php:31
#: application/views/statistics/antennaanalytics.php:19
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:22
#: application/views/timeline/index.php:7
#: application/views/timeplotter/index.php:14
#: application/views/user/edit.php:242 application/views/user/edit.php:265
@@ -1600,6 +1600,7 @@ msgstr ""
#: application/views/qso/components/previous_contacts.php:90
#: application/views/search/search_result_ajax.php:17
#: application/views/simplefle/index.php:116
#: application/views/statistics/index.php:23
#: application/views/user/edit.php:255 application/views/user/edit.php:278
#: application/views/user/edit.php:301 application/views/user/edit.php:324
#: application/views/user/edit.php:348
@@ -2387,13 +2388,13 @@ msgstr ""
msgid "Statistics"
msgstr ""
#: application/controllers/Statistics.php:209
#: application/controllers/Statistics.php:238
#: application/views/interface_assets/header.php:143
#: application/views/statistics/qsltable.php:5
msgid "QSL Statistics"
msgstr ""
#: application/controllers/Statistics.php:224
#: application/controllers/Statistics.php:253
#: application/views/interface_assets/header.php:141
#: application/views/statistics/antennaanalytics.php:3
msgid "Antenna Analytics"
@@ -2924,82 +2925,82 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:3875
#: application/models/Logbook_model.php:3899
#, php-format
msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED"
msgstr ""
#: application/models/Logbook_model.php:3876
#: application/models/Logbook_model.php:3900
#, php-format
msgid "Check %s for hints about errors in ADIF files."
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid "QSO on"
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
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:4187
#: application/models/Logbook_model.php:4211
msgid "the qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4198
#: application/models/Logbook_model.php:4222
msgid "the qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4259
#: application/models/Logbook_model.php:4283
msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4279
#: application/models/Logbook_model.php:4303
msgid "the lotw_qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4300
#: application/models/Logbook_model.php:4324
msgid "the lotw_qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4581
#: application/models/Logbook_model.php:4605
#: application/views/simplefle/index.php:40
msgid "Duplicate for"
msgstr ""
#: application/models/Logbook_model.php:4642
#: application/models/Logbook_model.php:4666
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4648
#: application/models/Logbook_model.php:4672
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4653
#: application/models/Logbook_model.php:4677
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4656
#: application/models/Logbook_model.php:4680
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4659
#: application/models/Logbook_model.php:4683
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4662
#: application/models/Logbook_model.php:4686
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4665
#: application/models/Logbook_model.php:4689
#: application/views/satellite/index.php:52
#: application/views/view_log/qso.php:287
msgid "unknown"
msgstr ""
#: application/models/Logbook_model.php:5475
#: application/models/Logbook_model.php:5499
#: application/views/activated_gridmap/index.php:110
#: application/views/awards/ffma/index.php:38
#: application/views/awards/gridmaster/index.php:44
@@ -3081,8 +3082,8 @@ msgstr ""
#: application/views/dashboard/index.php:296
#: application/views/dayswithqso/index.php:41
#: application/views/dayswithqso/index.php:81
#: application/views/statistics/index.php:18
#: application/views/statistics/index.php:36
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:38
#: application/views/timeline/index.php:107
#: application/views/visitor/index.php:250
msgid "Year"
@@ -3565,7 +3566,7 @@ msgstr ""
#: application/views/satellite/skedtable.php:7
#: application/views/satellite/skedtable.php:56
#: application/views/sattimers/index.php:38
#: application/views/statistics/index.php:22
#: application/views/statistics/index.php:24
msgid "Satellite"
msgstr ""
@@ -5929,6 +5930,8 @@ msgstr ""
#: application/views/cabrillo/index.php:164
#: application/views/reg1test/index.php:70
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:73
msgid "Operators"
msgstr ""
@@ -6680,7 +6683,7 @@ msgid "VUCC Gridsquare"
msgstr ""
#: application/views/continents/index.php:63
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:20
msgid "# of QSO's worked"
msgstr ""
@@ -8453,8 +8456,8 @@ msgstr ""
#: application/views/interface_assets/header.php:289
#: application/views/notes/add.php:38 application/views/notes/edit.php:39
#: application/views/satellite/index.php:11
#: application/views/statistics/index.php:48
#: application/views/statistics/index.php:102
#: application/views/statistics/index.php:50
#: application/views/statistics/index.php:111
msgid "Satellites"
msgstr ""
@@ -8793,8 +8796,8 @@ msgid "Label types"
msgstr ""
#: application/views/labels/index.php:81
#: application/views/statistics/index.php:68
#: application/views/statistics/index.php:105
#: application/views/statistics/index.php:70
#: application/views/statistics/index.php:114
#: application/views/widgets/qsos.php:3
msgid "QSOs"
msgstr ""
@@ -9729,7 +9732,7 @@ msgid "Category"
msgstr ""
#: application/views/notes/add.php:36 application/views/notes/edit.php:37
#: application/views/qso/index.php:31 application/views/statistics/index.php:44
#: application/views/qso/index.php:31 application/views/statistics/index.php:46
#: application/views/user/edit.php:169
msgid "General"
msgstr ""
@@ -12230,25 +12233,25 @@ msgid "Elevation"
msgstr ""
#: application/views/statistics/index.php:14
#: application/views/statistics/index.php:59
#: application/views/statistics/index.php:61
msgid "Years"
msgstr ""
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:18
msgid "Number of QSOs worked each year"
msgstr ""
#: application/views/statistics/index.php:29
#: application/views/statistics/index.php:31
msgid "Explore the logbook."
msgstr ""
#: application/views/statistics/index.php:33
#: application/views/statistics/index.php:35
#: application/views/timeline/index.php:111
msgid "All Years"
msgstr ""
#: application/views/statistics/index.php:71
#: application/views/statistics/index.php:108
#: application/views/statistics/index.php:76
#: application/views/statistics/index.php:117
msgid "Unique callsigns"
msgstr ""

View File

@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2025-01-23 10:57+0000\n"
"POT-Creation-Date: 2025-01-27 13:03+0000\n"
"PO-Revision-Date: 2024-11-19 01:22+0000\n"
"Last-Translator: Fabian Berg <fabian.berg@hb9hil.org>\n"
"Language-Team: Montenegrin <https://translate.wavelog.org/projects/wavelog/"
@@ -571,7 +571,7 @@ msgstr ""
#: application/views/bands/index.php:32
#: application/views/interface_assets/header.php:400
#: application/views/statistics/index.php:16
#: application/views/statistics/index.php:65
#: application/views/statistics/index.php:67
msgid "Bands"
msgstr ""
@@ -718,7 +718,7 @@ msgstr ""
msgid "Update Contest"
msgstr ""
#: application/controllers/Continents.php:25
#: application/controllers/Continents.php:26
#: application/views/awards/dxcc/index.php:83
#: application/views/awards/iota/index.php:57
#: application/views/interface_assets/header.php:163
@@ -1279,8 +1279,8 @@ msgstr ""
#: application/views/simplefle/index.php:157
#: application/views/statistics/antennaanalytics.php:31
#: application/views/statistics/index.php:15
#: application/views/statistics/index.php:20
#: application/views/statistics/index.php:62
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:64
#: application/views/timeline/index.php:19 application/views/user/edit.php:244
#: application/views/user/edit.php:267 application/views/user/edit.php:290
#: application/views/user/edit.php:313 application/views/user/edit.php:337
@@ -1553,7 +1553,7 @@ msgstr ""
#: application/views/simplefle/index.php:156
#: application/views/stationsetup/exportmapoptions.php:31
#: application/views/statistics/antennaanalytics.php:19
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:22
#: application/views/timeline/index.php:7
#: application/views/timeplotter/index.php:14
#: application/views/user/edit.php:242 application/views/user/edit.php:265
@@ -1600,6 +1600,7 @@ msgstr ""
#: application/views/qso/components/previous_contacts.php:90
#: application/views/search/search_result_ajax.php:17
#: application/views/simplefle/index.php:116
#: application/views/statistics/index.php:23
#: application/views/user/edit.php:255 application/views/user/edit.php:278
#: application/views/user/edit.php:301 application/views/user/edit.php:324
#: application/views/user/edit.php:348
@@ -2387,13 +2388,13 @@ msgstr ""
msgid "Statistics"
msgstr ""
#: application/controllers/Statistics.php:209
#: application/controllers/Statistics.php:238
#: application/views/interface_assets/header.php:143
#: application/views/statistics/qsltable.php:5
msgid "QSL Statistics"
msgstr ""
#: application/controllers/Statistics.php:224
#: application/controllers/Statistics.php:253
#: application/views/interface_assets/header.php:141
#: application/views/statistics/antennaanalytics.php:3
msgid "Antenna Analytics"
@@ -2924,82 +2925,82 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:3875
#: application/models/Logbook_model.php:3899
#, php-format
msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED"
msgstr ""
#: application/models/Logbook_model.php:3876
#: application/models/Logbook_model.php:3900
#, php-format
msgid "Check %s for hints about errors in ADIF files."
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid "QSO on"
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
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:4187
#: application/models/Logbook_model.php:4211
msgid "the qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4198
#: application/models/Logbook_model.php:4222
msgid "the qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4259
#: application/models/Logbook_model.php:4283
msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4279
#: application/models/Logbook_model.php:4303
msgid "the lotw_qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4300
#: application/models/Logbook_model.php:4324
msgid "the lotw_qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4581
#: application/models/Logbook_model.php:4605
#: application/views/simplefle/index.php:40
msgid "Duplicate for"
msgstr ""
#: application/models/Logbook_model.php:4642
#: application/models/Logbook_model.php:4666
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4648
#: application/models/Logbook_model.php:4672
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4653
#: application/models/Logbook_model.php:4677
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4656
#: application/models/Logbook_model.php:4680
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4659
#: application/models/Logbook_model.php:4683
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4662
#: application/models/Logbook_model.php:4686
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4665
#: application/models/Logbook_model.php:4689
#: application/views/satellite/index.php:52
#: application/views/view_log/qso.php:287
msgid "unknown"
msgstr ""
#: application/models/Logbook_model.php:5475
#: application/models/Logbook_model.php:5499
#: application/views/activated_gridmap/index.php:110
#: application/views/awards/ffma/index.php:38
#: application/views/awards/gridmaster/index.php:44
@@ -3081,8 +3082,8 @@ msgstr ""
#: application/views/dashboard/index.php:296
#: application/views/dayswithqso/index.php:41
#: application/views/dayswithqso/index.php:81
#: application/views/statistics/index.php:18
#: application/views/statistics/index.php:36
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:38
#: application/views/timeline/index.php:107
#: application/views/visitor/index.php:250
msgid "Year"
@@ -3565,7 +3566,7 @@ msgstr ""
#: application/views/satellite/skedtable.php:7
#: application/views/satellite/skedtable.php:56
#: application/views/sattimers/index.php:38
#: application/views/statistics/index.php:22
#: application/views/statistics/index.php:24
msgid "Satellite"
msgstr ""
@@ -5929,6 +5930,8 @@ msgstr ""
#: application/views/cabrillo/index.php:164
#: application/views/reg1test/index.php:70
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:73
msgid "Operators"
msgstr ""
@@ -6680,7 +6683,7 @@ msgid "VUCC Gridsquare"
msgstr ""
#: application/views/continents/index.php:63
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:20
msgid "# of QSO's worked"
msgstr ""
@@ -8448,8 +8451,8 @@ msgstr ""
#: application/views/interface_assets/header.php:289
#: application/views/notes/add.php:38 application/views/notes/edit.php:39
#: application/views/satellite/index.php:11
#: application/views/statistics/index.php:48
#: application/views/statistics/index.php:102
#: application/views/statistics/index.php:50
#: application/views/statistics/index.php:111
msgid "Satellites"
msgstr ""
@@ -8788,8 +8791,8 @@ msgid "Label types"
msgstr ""
#: application/views/labels/index.php:81
#: application/views/statistics/index.php:68
#: application/views/statistics/index.php:105
#: application/views/statistics/index.php:70
#: application/views/statistics/index.php:114
#: application/views/widgets/qsos.php:3
msgid "QSOs"
msgstr ""
@@ -9724,7 +9727,7 @@ msgid "Category"
msgstr ""
#: application/views/notes/add.php:36 application/views/notes/edit.php:37
#: application/views/qso/index.php:31 application/views/statistics/index.php:44
#: application/views/qso/index.php:31 application/views/statistics/index.php:46
#: application/views/user/edit.php:169
msgid "General"
msgstr ""
@@ -12225,25 +12228,25 @@ msgid "Elevation"
msgstr ""
#: application/views/statistics/index.php:14
#: application/views/statistics/index.php:59
#: application/views/statistics/index.php:61
msgid "Years"
msgstr ""
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:18
msgid "Number of QSOs worked each year"
msgstr ""
#: application/views/statistics/index.php:29
#: application/views/statistics/index.php:31
msgid "Explore the logbook."
msgstr ""
#: application/views/statistics/index.php:33
#: application/views/statistics/index.php:35
#: application/views/timeline/index.php:111
msgid "All Years"
msgstr ""
#: application/views/statistics/index.php:71
#: application/views/statistics/index.php:108
#: application/views/statistics/index.php:76
#: application/views/statistics/index.php:117
msgid "Unique callsigns"
msgstr ""

View File

@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2025-01-23 10:57+0000\n"
"POT-Creation-Date: 2025-01-27 13:03+0000\n"
"PO-Revision-Date: 2024-09-23 14:46+0000\n"
"Last-Translator: Filip Melik <filip@melik.cz>\n"
"Language-Team: Czech <https://translate.wavelog.org/projects/wavelog/main-"
@@ -572,7 +572,7 @@ msgstr "Poznámky - Záloha"
#: application/views/bands/index.php:32
#: application/views/interface_assets/header.php:400
#: application/views/statistics/index.php:16
#: application/views/statistics/index.php:65
#: application/views/statistics/index.php:67
msgid "Bands"
msgstr "Pásmo"
@@ -719,7 +719,7 @@ msgstr "Závody"
msgid "Update Contest"
msgstr ""
#: application/controllers/Continents.php:25
#: application/controllers/Continents.php:26
#: application/views/awards/dxcc/index.php:83
#: application/views/awards/iota/index.php:57
#: application/views/interface_assets/header.php:163
@@ -1281,8 +1281,8 @@ msgstr ""
#: application/views/simplefle/index.php:157
#: application/views/statistics/antennaanalytics.php:31
#: application/views/statistics/index.php:15
#: application/views/statistics/index.php:20
#: application/views/statistics/index.php:62
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:64
#: application/views/timeline/index.php:19 application/views/user/edit.php:244
#: application/views/user/edit.php:267 application/views/user/edit.php:290
#: application/views/user/edit.php:313 application/views/user/edit.php:337
@@ -1555,7 +1555,7 @@ msgstr "Vzdálenost"
#: application/views/simplefle/index.php:156
#: application/views/stationsetup/exportmapoptions.php:31
#: application/views/statistics/antennaanalytics.php:19
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:22
#: application/views/timeline/index.php:7
#: application/views/timeplotter/index.php:14
#: application/views/user/edit.php:242 application/views/user/edit.php:265
@@ -1602,6 +1602,7 @@ msgstr "Frekvence"
#: application/views/qso/components/previous_contacts.php:90
#: application/views/search/search_result_ajax.php:17
#: application/views/simplefle/index.php:116
#: application/views/statistics/index.php:23
#: application/views/user/edit.php:255 application/views/user/edit.php:278
#: application/views/user/edit.php:301 application/views/user/edit.php:324
#: application/views/user/edit.php:348
@@ -2389,13 +2390,13 @@ msgstr ""
msgid "Statistics"
msgstr "Statistiky"
#: application/controllers/Statistics.php:209
#: application/controllers/Statistics.php:238
#: application/views/interface_assets/header.php:143
#: application/views/statistics/qsltable.php:5
msgid "QSL Statistics"
msgstr ""
#: application/controllers/Statistics.php:224
#: application/controllers/Statistics.php:253
#: application/views/interface_assets/header.php:141
#: application/views/statistics/antennaanalytics.php:3
msgid "Antenna Analytics"
@@ -2926,82 +2927,82 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:3875
#: application/models/Logbook_model.php:3899
#, php-format
msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED"
msgstr ""
#: application/models/Logbook_model.php:3876
#: application/models/Logbook_model.php:3900
#, php-format
msgid "Check %s for hints about errors in ADIF files."
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid "QSO on"
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
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:4187
#: application/models/Logbook_model.php:4211
msgid "the qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4198
#: application/models/Logbook_model.php:4222
msgid "the qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4259
#: application/models/Logbook_model.php:4283
msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4279
#: application/models/Logbook_model.php:4303
msgid "the lotw_qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4300
#: application/models/Logbook_model.php:4324
msgid "the lotw_qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4581
#: application/models/Logbook_model.php:4605
#: application/views/simplefle/index.php:40
msgid "Duplicate for"
msgstr ""
#: application/models/Logbook_model.php:4642
#: application/models/Logbook_model.php:4666
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4648
#: application/models/Logbook_model.php:4672
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4653
#: application/models/Logbook_model.php:4677
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4656
#: application/models/Logbook_model.php:4680
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4659
#: application/models/Logbook_model.php:4683
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4662
#: application/models/Logbook_model.php:4686
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4665
#: application/models/Logbook_model.php:4689
#: application/views/satellite/index.php:52
#: application/views/view_log/qso.php:287
msgid "unknown"
msgstr ""
#: application/models/Logbook_model.php:5475
#: application/models/Logbook_model.php:5499
#: application/views/activated_gridmap/index.php:110
#: application/views/awards/ffma/index.php:38
#: application/views/awards/gridmaster/index.php:44
@@ -3083,8 +3084,8 @@ msgstr ""
#: application/views/dashboard/index.php:296
#: application/views/dayswithqso/index.php:41
#: application/views/dayswithqso/index.php:81
#: application/views/statistics/index.php:18
#: application/views/statistics/index.php:36
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:38
#: application/views/timeline/index.php:107
#: application/views/visitor/index.php:250
msgid "Year"
@@ -3567,7 +3568,7 @@ msgstr ""
#: application/views/satellite/skedtable.php:7
#: application/views/satellite/skedtable.php:56
#: application/views/sattimers/index.php:38
#: application/views/statistics/index.php:22
#: application/views/statistics/index.php:24
msgid "Satellite"
msgstr "Satelit"
@@ -5931,6 +5932,8 @@ msgstr ""
#: application/views/cabrillo/index.php:164
#: application/views/reg1test/index.php:70
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:73
msgid "Operators"
msgstr ""
@@ -6682,7 +6685,7 @@ msgid "VUCC Gridsquare"
msgstr ""
#: application/views/continents/index.php:63
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:20
msgid "# of QSO's worked"
msgstr ""
@@ -8452,8 +8455,8 @@ msgstr "Globální nastavení"
#: application/views/interface_assets/header.php:289
#: application/views/notes/add.php:38 application/views/notes/edit.php:39
#: application/views/satellite/index.php:11
#: application/views/statistics/index.php:48
#: application/views/statistics/index.php:102
#: application/views/statistics/index.php:50
#: application/views/statistics/index.php:111
msgid "Satellites"
msgstr ""
@@ -8792,8 +8795,8 @@ msgid "Label types"
msgstr ""
#: application/views/labels/index.php:81
#: application/views/statistics/index.php:68
#: application/views/statistics/index.php:105
#: application/views/statistics/index.php:70
#: application/views/statistics/index.php:114
#: application/views/widgets/qsos.php:3
msgid "QSOs"
msgstr "QSO"
@@ -9731,7 +9734,7 @@ msgid "Category"
msgstr "Kategorie"
#: application/views/notes/add.php:36 application/views/notes/edit.php:37
#: application/views/qso/index.php:31 application/views/statistics/index.php:44
#: application/views/qso/index.php:31 application/views/statistics/index.php:46
#: application/views/user/edit.php:169
msgid "General"
msgstr "Obecné"
@@ -12244,25 +12247,25 @@ msgid "Elevation"
msgstr ""
#: application/views/statistics/index.php:14
#: application/views/statistics/index.php:59
#: application/views/statistics/index.php:61
msgid "Years"
msgstr "Roky"
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:18
msgid "Number of QSOs worked each year"
msgstr ""
#: application/views/statistics/index.php:29
#: application/views/statistics/index.php:31
msgid "Explore the logbook."
msgstr "Prozkoumejte logbook."
#: application/views/statistics/index.php:33
#: application/views/statistics/index.php:35
#: application/views/timeline/index.php:111
msgid "All Years"
msgstr ""
#: application/views/statistics/index.php:71
#: application/views/statistics/index.php:108
#: application/views/statistics/index.php:76
#: application/views/statistics/index.php:117
msgid "Unique callsigns"
msgstr "Jedinečné značky"

View File

@@ -22,11 +22,11 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2025-01-23 10:57+0000\n"
"POT-Creation-Date: 2025-01-27 13:03+0000\n"
"PO-Revision-Date: 2025-01-24 15:27+0000\n"
"Last-Translator: Fabian Berg <fabian.berg@hb9hil.org>\n"
"Language-Team: German <https://translate.wavelog.org/projects/wavelog/"
"main-translation/de/>\n"
"Language-Team: German <https://translate.wavelog.org/projects/wavelog/main-"
"translation/de/>\n"
"Language: de_DE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -585,7 +585,7 @@ msgstr "Notizen - Backup"
#: application/views/bands/index.php:32
#: application/views/interface_assets/header.php:400
#: application/views/statistics/index.php:16
#: application/views/statistics/index.php:65
#: application/views/statistics/index.php:67
msgid "Bands"
msgstr "Bänder"
@@ -737,7 +737,7 @@ msgstr "Conteste"
msgid "Update Contest"
msgstr "Aktualisiere Contest"
#: application/controllers/Continents.php:25
#: application/controllers/Continents.php:26
#: application/views/awards/dxcc/index.php:83
#: application/views/awards/iota/index.php:57
#: application/views/interface_assets/header.php:163
@@ -1310,8 +1310,8 @@ msgstr "Clublog"
#: application/views/simplefle/index.php:157
#: application/views/statistics/antennaanalytics.php:31
#: application/views/statistics/index.php:15
#: application/views/statistics/index.php:20
#: application/views/statistics/index.php:62
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:64
#: application/views/timeline/index.php:19 application/views/user/edit.php:244
#: application/views/user/edit.php:267 application/views/user/edit.php:290
#: application/views/user/edit.php:313 application/views/user/edit.php:337
@@ -1584,7 +1584,7 @@ msgstr "Distanz"
#: application/views/simplefle/index.php:156
#: application/views/stationsetup/exportmapoptions.php:31
#: application/views/statistics/antennaanalytics.php:19
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:22
#: application/views/timeline/index.php:7
#: application/views/timeplotter/index.php:14
#: application/views/user/edit.php:242 application/views/user/edit.php:265
@@ -1631,6 +1631,7 @@ msgstr "Frequenz"
#: application/views/qso/components/previous_contacts.php:90
#: application/views/search/search_result_ajax.php:17
#: application/views/simplefle/index.php:116
#: application/views/statistics/index.php:23
#: application/views/user/edit.php:255 application/views/user/edit.php:278
#: application/views/user/edit.php:301 application/views/user/edit.php:324
#: application/views/user/edit.php:348
@@ -2433,13 +2434,13 @@ msgstr "Bearbeite Export-Karte Optionen"
msgid "Statistics"
msgstr "Statistik"
#: application/controllers/Statistics.php:209
#: application/controllers/Statistics.php:238
#: application/views/interface_assets/header.php:143
#: application/views/statistics/qsltable.php:5
msgid "QSL Statistics"
msgstr "QSL-Statistiken"
#: application/controllers/Statistics.php:224
#: application/controllers/Statistics.php:253
#: application/views/interface_assets/header.php:141
#: application/views/statistics/antennaanalytics.php:3
msgid "Antenna Analytics"
@@ -3002,23 +3003,23 @@ 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:3875
#: application/models/Logbook_model.php:3899
#, 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:3876
#: application/models/Logbook_model.php:3900
#, 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:3888
#: application/models/Logbook_model.php:3912
msgid "QSO on"
msgstr "QSO am"
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid ""
"You tried to import a QSO without any given CALL. This QSO wasn't imported. "
"It's invalid"
@@ -3026,62 +3027,62 @@ 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:4187
#: application/models/Logbook_model.php:4211
msgid "the qslrdate is invalid (YYYYMMDD)"
msgstr "Das (Papier-)QSL-Empfangsdatum hat das falsche Format (JJJJMMDD)"
#: application/models/Logbook_model.php:4198
#: application/models/Logbook_model.php:4222
msgid "the qslsdate is invalid (YYYYMMDD)"
msgstr "Das (Papier-)QSL Sendedatum hat das falsche Format (JJJJMMTT)"
#: application/models/Logbook_model.php:4259
#: application/models/Logbook_model.php:4283
msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)"
msgstr "Das Format des Clublog-Upload-Datums ist falsch (JJJJMMTT)"
#: application/models/Logbook_model.php:4279
#: application/models/Logbook_model.php:4303
msgid "the lotw_qslrdate is invalid (YYYYMMDD)"
msgstr "Das Format des LoTW-Empfangs-Datums ist falsch (JJJJMMTT)"
#: application/models/Logbook_model.php:4300
#: application/models/Logbook_model.php:4324
msgid "the lotw_qslsdate is invalid (YYYYMMDD)"
msgstr "Das Format des LoTW-Sende-Datums ist falsch (JJJJMMTT)"
#: application/models/Logbook_model.php:4581
#: application/models/Logbook_model.php:4605
#: application/views/simplefle/index.php:40
msgid "Duplicate for"
msgstr "Doublette zu"
#: application/models/Logbook_model.php:4642
#: application/models/Logbook_model.php:4666
msgid "QSO could not be matched"
msgstr "QSO konnte nicht gefunden werden"
#: application/models/Logbook_model.php:4648
#: application/models/Logbook_model.php:4672
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr "bestätigt durch LoTW/Clublog/eQSL/Contest"
#: application/models/Logbook_model.php:4653
#: application/models/Logbook_model.php:4677
msgid "confirmed by award manager"
msgstr "bestätigt durch Diplommananger"
#: application/models/Logbook_model.php:4656
#: application/models/Logbook_model.php:4680
msgid "confirmed by cross-check of DCL data"
msgstr "bestätigt durch Cross-Check von DCL-Daten"
#: application/models/Logbook_model.php:4659
#: application/models/Logbook_model.php:4683
msgid "confirmation pending"
msgstr "Bestätigung ausstehend"
#: application/models/Logbook_model.php:4662
#: application/models/Logbook_model.php:4686
msgid "unconfirmed"
msgstr "nicht bestätigt"
#: application/models/Logbook_model.php:4665
#: application/models/Logbook_model.php:4689
#: application/views/satellite/index.php:52
#: application/views/view_log/qso.php:287
msgid "unknown"
msgstr "unbekannt"
#: application/models/Logbook_model.php:5475
#: application/models/Logbook_model.php:5499
#: application/views/activated_gridmap/index.php:110
#: application/views/awards/ffma/index.php:38
#: application/views/awards/gridmaster/index.php:44
@@ -3164,8 +3165,8 @@ msgstr "Kumulierte Anzahl gearbeiteter WAJA"
#: application/views/dashboard/index.php:296
#: application/views/dayswithqso/index.php:41
#: application/views/dayswithqso/index.php:81
#: application/views/statistics/index.php:18
#: application/views/statistics/index.php:36
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:38
#: application/views/timeline/index.php:107
#: application/views/visitor/index.php:250
msgid "Year"
@@ -3648,7 +3649,7 @@ msgstr "Anzeigen"
#: application/views/satellite/skedtable.php:7
#: application/views/satellite/skedtable.php:56
#: application/views/sattimers/index.php:38
#: application/views/statistics/index.php:22
#: application/views/statistics/index.php:24
msgid "Satellite"
msgstr "Satellit"
@@ -6255,6 +6256,8 @@ msgstr "Kategorie Overlay"
#: application/views/cabrillo/index.php:164
#: application/views/reg1test/index.php:70
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:73
msgid "Operators"
msgstr "Operatoren"
@@ -7033,7 +7036,7 @@ msgid "VUCC Gridsquare"
msgstr "VUCC Locator"
#: application/views/continents/index.php:63
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:20
msgid "# of QSO's worked"
msgstr "# gearbeitete QSOs"
@@ -8929,8 +8932,8 @@ msgstr "Globale Optionen"
#: application/views/interface_assets/header.php:289
#: application/views/notes/add.php:38 application/views/notes/edit.php:39
#: application/views/satellite/index.php:11
#: application/views/statistics/index.php:48
#: application/views/statistics/index.php:102
#: application/views/statistics/index.php:50
#: application/views/statistics/index.php:111
msgid "Satellites"
msgstr "Satelliten"
@@ -9274,8 +9277,8 @@ msgid "Label types"
msgstr "Etiketten-Typen"
#: application/views/labels/index.php:81
#: application/views/statistics/index.php:68
#: application/views/statistics/index.php:105
#: application/views/statistics/index.php:70
#: application/views/statistics/index.php:114
#: application/views/widgets/qsos.php:3
msgid "QSOs"
msgstr "QSOs"
@@ -10227,7 +10230,7 @@ msgid "Category"
msgstr "Kategorie"
#: application/views/notes/add.php:36 application/views/notes/edit.php:37
#: application/views/qso/index.php:31 application/views/statistics/index.php:44
#: application/views/qso/index.php:31 application/views/statistics/index.php:46
#: application/views/user/edit.php:169
msgid "General"
msgstr "Allgemeines"
@@ -12922,25 +12925,25 @@ msgid "Elevation"
msgstr "Elevation"
#: application/views/statistics/index.php:14
#: application/views/statistics/index.php:59
#: application/views/statistics/index.php:61
msgid "Years"
msgstr "Jahre"
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:18
msgid "Number of QSOs worked each year"
msgstr "Anzahl der QSOs gearbeitet pro Jahr"
#: application/views/statistics/index.php:29
#: application/views/statistics/index.php:31
msgid "Explore the logbook."
msgstr "Logbuch untersuchen."
#: application/views/statistics/index.php:33
#: application/views/statistics/index.php:35
#: application/views/timeline/index.php:111
msgid "All Years"
msgstr "Alle Jahre"
#: application/views/statistics/index.php:71
#: application/views/statistics/index.php:108
#: application/views/statistics/index.php:76
#: application/views/statistics/index.php:117
msgid "Unique callsigns"
msgstr "Eindeutige Rufzeichen"

View File

@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2025-01-23 10:57+0000\n"
"POT-Creation-Date: 2025-01-27 13:03+0000\n"
"PO-Revision-Date: 2024-11-19 01:22+0000\n"
"Last-Translator: Fabian Berg <fabian.berg@hb9hil.org>\n"
"Language-Team: Greek <https://translate.wavelog.org/projects/wavelog/main-"
@@ -570,7 +570,7 @@ msgstr ""
#: application/views/bands/index.php:32
#: application/views/interface_assets/header.php:400
#: application/views/statistics/index.php:16
#: application/views/statistics/index.php:65
#: application/views/statistics/index.php:67
msgid "Bands"
msgstr ""
@@ -717,7 +717,7 @@ msgstr ""
msgid "Update Contest"
msgstr ""
#: application/controllers/Continents.php:25
#: application/controllers/Continents.php:26
#: application/views/awards/dxcc/index.php:83
#: application/views/awards/iota/index.php:57
#: application/views/interface_assets/header.php:163
@@ -1279,8 +1279,8 @@ msgstr ""
#: application/views/simplefle/index.php:157
#: application/views/statistics/antennaanalytics.php:31
#: application/views/statistics/index.php:15
#: application/views/statistics/index.php:20
#: application/views/statistics/index.php:62
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:64
#: application/views/timeline/index.php:19 application/views/user/edit.php:244
#: application/views/user/edit.php:267 application/views/user/edit.php:290
#: application/views/user/edit.php:313 application/views/user/edit.php:337
@@ -1553,7 +1553,7 @@ msgstr ""
#: application/views/simplefle/index.php:156
#: application/views/stationsetup/exportmapoptions.php:31
#: application/views/statistics/antennaanalytics.php:19
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:22
#: application/views/timeline/index.php:7
#: application/views/timeplotter/index.php:14
#: application/views/user/edit.php:242 application/views/user/edit.php:265
@@ -1600,6 +1600,7 @@ msgstr "Συχνότητα"
#: application/views/qso/components/previous_contacts.php:90
#: application/views/search/search_result_ajax.php:17
#: application/views/simplefle/index.php:116
#: application/views/statistics/index.php:23
#: application/views/user/edit.php:255 application/views/user/edit.php:278
#: application/views/user/edit.php:301 application/views/user/edit.php:324
#: application/views/user/edit.php:348
@@ -2384,13 +2385,13 @@ msgstr ""
msgid "Statistics"
msgstr ""
#: application/controllers/Statistics.php:209
#: application/controllers/Statistics.php:238
#: application/views/interface_assets/header.php:143
#: application/views/statistics/qsltable.php:5
msgid "QSL Statistics"
msgstr ""
#: application/controllers/Statistics.php:224
#: application/controllers/Statistics.php:253
#: application/views/interface_assets/header.php:141
#: application/views/statistics/antennaanalytics.php:3
msgid "Antenna Analytics"
@@ -2921,82 +2922,82 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:3875
#: application/models/Logbook_model.php:3899
#, php-format
msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED"
msgstr ""
#: application/models/Logbook_model.php:3876
#: application/models/Logbook_model.php:3900
#, php-format
msgid "Check %s for hints about errors in ADIF files."
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid "QSO on"
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
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:4187
#: application/models/Logbook_model.php:4211
msgid "the qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4198
#: application/models/Logbook_model.php:4222
msgid "the qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4259
#: application/models/Logbook_model.php:4283
msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4279
#: application/models/Logbook_model.php:4303
msgid "the lotw_qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4300
#: application/models/Logbook_model.php:4324
msgid "the lotw_qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4581
#: application/models/Logbook_model.php:4605
#: application/views/simplefle/index.php:40
msgid "Duplicate for"
msgstr ""
#: application/models/Logbook_model.php:4642
#: application/models/Logbook_model.php:4666
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4648
#: application/models/Logbook_model.php:4672
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4653
#: application/models/Logbook_model.php:4677
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4656
#: application/models/Logbook_model.php:4680
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4659
#: application/models/Logbook_model.php:4683
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4662
#: application/models/Logbook_model.php:4686
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4665
#: application/models/Logbook_model.php:4689
#: application/views/satellite/index.php:52
#: application/views/view_log/qso.php:287
msgid "unknown"
msgstr ""
#: application/models/Logbook_model.php:5475
#: application/models/Logbook_model.php:5499
#: application/views/activated_gridmap/index.php:110
#: application/views/awards/ffma/index.php:38
#: application/views/awards/gridmaster/index.php:44
@@ -3078,8 +3079,8 @@ msgstr ""
#: application/views/dashboard/index.php:296
#: application/views/dayswithqso/index.php:41
#: application/views/dayswithqso/index.php:81
#: application/views/statistics/index.php:18
#: application/views/statistics/index.php:36
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:38
#: application/views/timeline/index.php:107
#: application/views/visitor/index.php:250
msgid "Year"
@@ -3562,7 +3563,7 @@ msgstr ""
#: application/views/satellite/skedtable.php:7
#: application/views/satellite/skedtable.php:56
#: application/views/sattimers/index.php:38
#: application/views/statistics/index.php:22
#: application/views/statistics/index.php:24
msgid "Satellite"
msgstr "Δορυφόρος"
@@ -5926,6 +5927,8 @@ msgstr ""
#: application/views/cabrillo/index.php:164
#: application/views/reg1test/index.php:70
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:73
msgid "Operators"
msgstr ""
@@ -6677,7 +6680,7 @@ msgid "VUCC Gridsquare"
msgstr ""
#: application/views/continents/index.php:63
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:20
msgid "# of QSO's worked"
msgstr ""
@@ -8442,8 +8445,8 @@ msgstr ""
#: application/views/interface_assets/header.php:289
#: application/views/notes/add.php:38 application/views/notes/edit.php:39
#: application/views/satellite/index.php:11
#: application/views/statistics/index.php:48
#: application/views/statistics/index.php:102
#: application/views/statistics/index.php:50
#: application/views/statistics/index.php:111
msgid "Satellites"
msgstr ""
@@ -8782,8 +8785,8 @@ msgid "Label types"
msgstr ""
#: application/views/labels/index.php:81
#: application/views/statistics/index.php:68
#: application/views/statistics/index.php:105
#: application/views/statistics/index.php:70
#: application/views/statistics/index.php:114
#: application/views/widgets/qsos.php:3
msgid "QSOs"
msgstr ""
@@ -9725,7 +9728,7 @@ msgid "Category"
msgstr "Κατηγορία"
#: application/views/notes/add.php:36 application/views/notes/edit.php:37
#: application/views/qso/index.php:31 application/views/statistics/index.php:44
#: application/views/qso/index.php:31 application/views/statistics/index.php:46
#: application/views/user/edit.php:169
msgid "General"
msgstr "Γενικα"
@@ -12227,25 +12230,25 @@ msgid "Elevation"
msgstr ""
#: application/views/statistics/index.php:14
#: application/views/statistics/index.php:59
#: application/views/statistics/index.php:61
msgid "Years"
msgstr ""
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:18
msgid "Number of QSOs worked each year"
msgstr ""
#: application/views/statistics/index.php:29
#: application/views/statistics/index.php:31
msgid "Explore the logbook."
msgstr ""
#: application/views/statistics/index.php:33
#: application/views/statistics/index.php:35
#: application/views/timeline/index.php:111
msgid "All Years"
msgstr ""
#: application/views/statistics/index.php:71
#: application/views/statistics/index.php:108
#: application/views/statistics/index.php:76
#: application/views/statistics/index.php:117
msgid "Unique callsigns"
msgstr ""

View File

@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2025-01-23 10:57+0000\n"
"POT-Creation-Date: 2025-01-27 13:03+0000\n"
"PO-Revision-Date: 2024-12-28 11:43+0000\n"
"Last-Translator: David Quental <ct1drb72@gmail.com>\n"
"Language-Team: Spanish <https://translate.wavelog.org/projects/wavelog/main-"
@@ -573,7 +573,7 @@ msgstr "Notas - Copia de seguridad"
#: application/views/bands/index.php:32
#: application/views/interface_assets/header.php:400
#: application/views/statistics/index.php:16
#: application/views/statistics/index.php:65
#: application/views/statistics/index.php:67
msgid "Bands"
msgstr "Bandas"
@@ -722,7 +722,7 @@ msgstr "Concursos"
msgid "Update Contest"
msgstr "Actualizar Concurso"
#: application/controllers/Continents.php:25
#: application/controllers/Continents.php:26
#: application/views/awards/dxcc/index.php:83
#: application/views/awards/iota/index.php:57
#: application/views/interface_assets/header.php:163
@@ -1297,8 +1297,8 @@ msgstr "Clublog"
#: application/views/simplefle/index.php:157
#: application/views/statistics/antennaanalytics.php:31
#: application/views/statistics/index.php:15
#: application/views/statistics/index.php:20
#: application/views/statistics/index.php:62
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:64
#: application/views/timeline/index.php:19 application/views/user/edit.php:244
#: application/views/user/edit.php:267 application/views/user/edit.php:290
#: application/views/user/edit.php:313 application/views/user/edit.php:337
@@ -1571,7 +1571,7 @@ msgstr "Distancia"
#: application/views/simplefle/index.php:156
#: application/views/stationsetup/exportmapoptions.php:31
#: application/views/statistics/antennaanalytics.php:19
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:22
#: application/views/timeline/index.php:7
#: application/views/timeplotter/index.php:14
#: application/views/user/edit.php:242 application/views/user/edit.php:265
@@ -1618,6 +1618,7 @@ msgstr "Frecuencia"
#: application/views/qso/components/previous_contacts.php:90
#: application/views/search/search_result_ajax.php:17
#: application/views/simplefle/index.php:116
#: application/views/statistics/index.php:23
#: application/views/user/edit.php:255 application/views/user/edit.php:278
#: application/views/user/edit.php:301 application/views/user/edit.php:324
#: application/views/user/edit.php:348
@@ -2419,13 +2420,13 @@ msgstr "Editar opciones de exportación de mapas"
msgid "Statistics"
msgstr "Estadísticas"
#: application/controllers/Statistics.php:209
#: application/controllers/Statistics.php:238
#: application/views/interface_assets/header.php:143
#: application/views/statistics/qsltable.php:5
msgid "QSL Statistics"
msgstr "Estadísticas de QSL"
#: application/controllers/Statistics.php:224
#: application/controllers/Statistics.php:253
#: application/views/interface_assets/header.php:141
#: application/views/statistics/antennaanalytics.php:3
msgid "Antenna Analytics"
@@ -2978,22 +2979,22 @@ 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:3875
#: application/models/Logbook_model.php:3899
#, 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:3876
#: application/models/Logbook_model.php:3900
#, 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:3888
#: application/models/Logbook_model.php:3912
msgid "QSO on"
msgstr "QSO en"
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid ""
"You tried to import a QSO without any given CALL. This QSO wasn't imported. "
"It's invalid"
@@ -3001,62 +3002,62 @@ msgstr ""
"Intentaste importar un QSO sin ningún indicativo dado. Este QSO no fue "
"importado. Es inválido"
#: application/models/Logbook_model.php:4187
#: application/models/Logbook_model.php:4211
msgid "the qslrdate is invalid (YYYYMMDD)"
msgstr "la qslrfecha es inválida (AAAAMMDD)"
#: application/models/Logbook_model.php:4198
#: application/models/Logbook_model.php:4222
msgid "the qslsdate is invalid (YYYYMMDD)"
msgstr "la qslfecha es inválida (YYYYMMDD)"
#: application/models/Logbook_model.php:4259
#: application/models/Logbook_model.php:4283
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:4279
#: application/models/Logbook_model.php:4303
msgid "the lotw_qslrdate is invalid (YYYYMMDD)"
msgstr "la lotw_qslrdate no es válida (YYYYMMDD)"
#: application/models/Logbook_model.php:4300
#: application/models/Logbook_model.php:4324
msgid "the lotw_qslsdate is invalid (YYYYMMDD)"
msgstr "el lotw_qslsdate es inválido (AAAAMMDD)"
#: application/models/Logbook_model.php:4581
#: application/models/Logbook_model.php:4605
#: application/views/simplefle/index.php:40
msgid "Duplicate for"
msgstr "Duplicado para"
#: application/models/Logbook_model.php:4642
#: application/models/Logbook_model.php:4666
msgid "QSO could not be matched"
msgstr "QSOs que no concuerdan"
#: application/models/Logbook_model.php:4648
#: application/models/Logbook_model.php:4672
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr "confirmados por LoTW/Clublog/eQSL/Concurso"
#: application/models/Logbook_model.php:4653
#: application/models/Logbook_model.php:4677
msgid "confirmed by award manager"
msgstr "confirmados por el administrador del premio"
#: application/models/Logbook_model.php:4656
#: application/models/Logbook_model.php:4680
msgid "confirmed by cross-check of DCL data"
msgstr "confirmados al hacer chequeo cruzadoc on datos de DCL"
#: application/models/Logbook_model.php:4659
#: application/models/Logbook_model.php:4683
msgid "confirmation pending"
msgstr "pendiente de confirmación"
#: application/models/Logbook_model.php:4662
#: application/models/Logbook_model.php:4686
msgid "unconfirmed"
msgstr "sin confirmar"
#: application/models/Logbook_model.php:4665
#: application/models/Logbook_model.php:4689
#: application/views/satellite/index.php:52
#: application/views/view_log/qso.php:287
msgid "unknown"
msgstr "desconocido"
#: application/models/Logbook_model.php:5475
#: application/models/Logbook_model.php:5499
#: application/views/activated_gridmap/index.php:110
#: application/views/awards/ffma/index.php:38
#: application/views/awards/gridmaster/index.php:44
@@ -3138,8 +3139,8 @@ msgstr "Número acumulado de WAJA trabajados"
#: application/views/dashboard/index.php:296
#: application/views/dayswithqso/index.php:41
#: application/views/dayswithqso/index.php:81
#: application/views/statistics/index.php:18
#: application/views/statistics/index.php:36
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:38
#: application/views/timeline/index.php:107
#: application/views/visitor/index.php:250
msgid "Year"
@@ -3622,7 +3623,7 @@ msgstr "Mostrar"
#: application/views/satellite/skedtable.php:7
#: application/views/satellite/skedtable.php:56
#: application/views/sattimers/index.php:38
#: application/views/statistics/index.php:22
#: application/views/statistics/index.php:24
msgid "Satellite"
msgstr "Satélite"
@@ -6213,6 +6214,8 @@ msgstr "Categoría - Overlay"
#: application/views/cabrillo/index.php:164
#: application/views/reg1test/index.php:70
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:73
msgid "Operators"
msgstr "Operadores"
@@ -6980,7 +6983,7 @@ msgid "VUCC Gridsquare"
msgstr "Cuadrícula VUCC"
#: application/views/continents/index.php:63
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:20
msgid "# of QSO's worked"
msgstr "# de QSOs logradas"
@@ -8871,8 +8874,8 @@ msgstr "Opciones Globales"
#: application/views/interface_assets/header.php:289
#: application/views/notes/add.php:38 application/views/notes/edit.php:39
#: application/views/satellite/index.php:11
#: application/views/statistics/index.php:48
#: application/views/statistics/index.php:102
#: application/views/statistics/index.php:50
#: application/views/statistics/index.php:111
msgid "Satellites"
msgstr "Satélites"
@@ -9219,8 +9222,8 @@ msgid "Label types"
msgstr "Tipos de etiquetas"
#: application/views/labels/index.php:81
#: application/views/statistics/index.php:68
#: application/views/statistics/index.php:105
#: application/views/statistics/index.php:70
#: application/views/statistics/index.php:114
#: application/views/widgets/qsos.php:3
msgid "QSOs"
msgstr "QSOs"
@@ -10171,7 +10174,7 @@ msgid "Category"
msgstr "Categoría"
#: application/views/notes/add.php:36 application/views/notes/edit.php:37
#: application/views/qso/index.php:31 application/views/statistics/index.php:44
#: application/views/qso/index.php:31 application/views/statistics/index.php:46
#: application/views/user/edit.php:169
msgid "General"
msgstr "General"
@@ -12866,25 +12869,25 @@ msgid "Elevation"
msgstr "Elevación"
#: application/views/statistics/index.php:14
#: application/views/statistics/index.php:59
#: application/views/statistics/index.php:61
msgid "Years"
msgstr "Años"
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:18
msgid "Number of QSOs worked each year"
msgstr "Número de QSOs logradas cada año"
#: application/views/statistics/index.php:29
#: application/views/statistics/index.php:31
msgid "Explore the logbook."
msgstr "Explore el libro de guardia."
#: application/views/statistics/index.php:33
#: application/views/statistics/index.php:35
#: application/views/timeline/index.php:111
msgid "All Years"
msgstr "Todos los años"
#: application/views/statistics/index.php:71
#: application/views/statistics/index.php:108
#: application/views/statistics/index.php:76
#: application/views/statistics/index.php:117
msgid "Unique callsigns"
msgstr "Indicativos únicos"

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2025-01-23 10:57+0000\n"
"POT-Creation-Date: 2025-01-27 13:03+0000\n"
"PO-Revision-Date: 2024-11-24 17:28+0000\n"
"Last-Translator: tviitkar <tambet@viitkar.ee>\n"
"Language-Team: Estonian <https://translate.wavelog.org/projects/wavelog/main-"
@@ -569,7 +569,7 @@ msgstr "Märkmed - Tagavara"
#: application/views/bands/index.php:32
#: application/views/interface_assets/header.php:400
#: application/views/statistics/index.php:16
#: application/views/statistics/index.php:65
#: application/views/statistics/index.php:67
msgid "Bands"
msgstr "Lainealad"
@@ -716,7 +716,7 @@ msgstr "Võistlused"
msgid "Update Contest"
msgstr "Uuenda võislust"
#: application/controllers/Continents.php:25
#: application/controllers/Continents.php:26
#: application/views/awards/dxcc/index.php:83
#: application/views/awards/iota/index.php:57
#: application/views/interface_assets/header.php:163
@@ -1276,8 +1276,8 @@ msgstr "Clublog"
#: application/views/simplefle/index.php:157
#: application/views/statistics/antennaanalytics.php:31
#: application/views/statistics/index.php:15
#: application/views/statistics/index.php:20
#: application/views/statistics/index.php:62
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:64
#: application/views/timeline/index.php:19 application/views/user/edit.php:244
#: application/views/user/edit.php:267 application/views/user/edit.php:290
#: application/views/user/edit.php:313 application/views/user/edit.php:337
@@ -1550,7 +1550,7 @@ msgstr "Distants"
#: application/views/simplefle/index.php:156
#: application/views/stationsetup/exportmapoptions.php:31
#: application/views/statistics/antennaanalytics.php:19
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:22
#: application/views/timeline/index.php:7
#: application/views/timeplotter/index.php:14
#: application/views/user/edit.php:242 application/views/user/edit.php:265
@@ -1597,6 +1597,7 @@ msgstr "Sagedus"
#: application/views/qso/components/previous_contacts.php:90
#: application/views/search/search_result_ajax.php:17
#: application/views/simplefle/index.php:116
#: application/views/statistics/index.php:23
#: application/views/user/edit.php:255 application/views/user/edit.php:278
#: application/views/user/edit.php:301 application/views/user/edit.php:324
#: application/views/user/edit.php:348
@@ -2381,13 +2382,13 @@ msgstr ""
msgid "Statistics"
msgstr ""
#: application/controllers/Statistics.php:209
#: application/controllers/Statistics.php:238
#: application/views/interface_assets/header.php:143
#: application/views/statistics/qsltable.php:5
msgid "QSL Statistics"
msgstr ""
#: application/controllers/Statistics.php:224
#: application/controllers/Statistics.php:253
#: application/views/interface_assets/header.php:141
#: application/views/statistics/antennaanalytics.php:3
msgid "Antenna Analytics"
@@ -2918,82 +2919,82 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:3875
#: application/models/Logbook_model.php:3899
#, php-format
msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED"
msgstr ""
#: application/models/Logbook_model.php:3876
#: application/models/Logbook_model.php:3900
#, php-format
msgid "Check %s for hints about errors in ADIF files."
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid "QSO on"
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
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:4187
#: application/models/Logbook_model.php:4211
msgid "the qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4198
#: application/models/Logbook_model.php:4222
msgid "the qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4259
#: application/models/Logbook_model.php:4283
msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4279
#: application/models/Logbook_model.php:4303
msgid "the lotw_qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4300
#: application/models/Logbook_model.php:4324
msgid "the lotw_qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4581
#: application/models/Logbook_model.php:4605
#: application/views/simplefle/index.php:40
msgid "Duplicate for"
msgstr ""
#: application/models/Logbook_model.php:4642
#: application/models/Logbook_model.php:4666
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4648
#: application/models/Logbook_model.php:4672
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4653
#: application/models/Logbook_model.php:4677
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4656
#: application/models/Logbook_model.php:4680
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4659
#: application/models/Logbook_model.php:4683
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4662
#: application/models/Logbook_model.php:4686
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4665
#: application/models/Logbook_model.php:4689
#: application/views/satellite/index.php:52
#: application/views/view_log/qso.php:287
msgid "unknown"
msgstr ""
#: application/models/Logbook_model.php:5475
#: application/models/Logbook_model.php:5499
#: application/views/activated_gridmap/index.php:110
#: application/views/awards/ffma/index.php:38
#: application/views/awards/gridmaster/index.php:44
@@ -3075,8 +3076,8 @@ msgstr ""
#: application/views/dashboard/index.php:296
#: application/views/dayswithqso/index.php:41
#: application/views/dayswithqso/index.php:81
#: application/views/statistics/index.php:18
#: application/views/statistics/index.php:36
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:38
#: application/views/timeline/index.php:107
#: application/views/visitor/index.php:250
msgid "Year"
@@ -3559,7 +3560,7 @@ msgstr ""
#: application/views/satellite/skedtable.php:7
#: application/views/satellite/skedtable.php:56
#: application/views/sattimers/index.php:38
#: application/views/statistics/index.php:22
#: application/views/statistics/index.php:24
msgid "Satellite"
msgstr ""
@@ -5923,6 +5924,8 @@ msgstr ""
#: application/views/cabrillo/index.php:164
#: application/views/reg1test/index.php:70
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:73
msgid "Operators"
msgstr ""
@@ -6674,7 +6677,7 @@ msgid "VUCC Gridsquare"
msgstr ""
#: application/views/continents/index.php:63
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:20
msgid "# of QSO's worked"
msgstr ""
@@ -8442,8 +8445,8 @@ msgstr ""
#: application/views/interface_assets/header.php:289
#: application/views/notes/add.php:38 application/views/notes/edit.php:39
#: application/views/satellite/index.php:11
#: application/views/statistics/index.php:48
#: application/views/statistics/index.php:102
#: application/views/statistics/index.php:50
#: application/views/statistics/index.php:111
msgid "Satellites"
msgstr ""
@@ -8782,8 +8785,8 @@ msgid "Label types"
msgstr ""
#: application/views/labels/index.php:81
#: application/views/statistics/index.php:68
#: application/views/statistics/index.php:105
#: application/views/statistics/index.php:70
#: application/views/statistics/index.php:114
#: application/views/widgets/qsos.php:3
msgid "QSOs"
msgstr ""
@@ -9717,7 +9720,7 @@ msgid "Category"
msgstr ""
#: application/views/notes/add.php:36 application/views/notes/edit.php:37
#: application/views/qso/index.php:31 application/views/statistics/index.php:44
#: application/views/qso/index.php:31 application/views/statistics/index.php:46
#: application/views/user/edit.php:169
msgid "General"
msgstr ""
@@ -12216,25 +12219,25 @@ msgid "Elevation"
msgstr ""
#: application/views/statistics/index.php:14
#: application/views/statistics/index.php:59
#: application/views/statistics/index.php:61
msgid "Years"
msgstr ""
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:18
msgid "Number of QSOs worked each year"
msgstr ""
#: application/views/statistics/index.php:29
#: application/views/statistics/index.php:31
msgid "Explore the logbook."
msgstr ""
#: application/views/statistics/index.php:33
#: application/views/statistics/index.php:35
#: application/views/timeline/index.php:111
msgid "All Years"
msgstr ""
#: application/views/statistics/index.php:71
#: application/views/statistics/index.php:108
#: application/views/statistics/index.php:76
#: application/views/statistics/index.php:117
msgid "Unique callsigns"
msgstr ""

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2025-01-23 10:57+0000\n"
"POT-Creation-Date: 2025-01-27 13:03+0000\n"
"PO-Revision-Date: 2024-11-19 01:22+0000\n"
"Last-Translator: Fabian Berg <fabian.berg@hb9hil.org>\n"
"Language-Team: Finnish <https://translate.wavelog.org/projects/wavelog/main-"
@@ -569,7 +569,7 @@ msgstr ""
#: application/views/bands/index.php:32
#: application/views/interface_assets/header.php:400
#: application/views/statistics/index.php:16
#: application/views/statistics/index.php:65
#: application/views/statistics/index.php:67
msgid "Bands"
msgstr "Bandit"
@@ -716,7 +716,7 @@ msgstr "Kontestit"
msgid "Update Contest"
msgstr ""
#: application/controllers/Continents.php:25
#: application/controllers/Continents.php:26
#: application/views/awards/dxcc/index.php:83
#: application/views/awards/iota/index.php:57
#: application/views/interface_assets/header.php:163
@@ -1276,8 +1276,8 @@ msgstr ""
#: application/views/simplefle/index.php:157
#: application/views/statistics/antennaanalytics.php:31
#: application/views/statistics/index.php:15
#: application/views/statistics/index.php:20
#: application/views/statistics/index.php:62
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:64
#: application/views/timeline/index.php:19 application/views/user/edit.php:244
#: application/views/user/edit.php:267 application/views/user/edit.php:290
#: application/views/user/edit.php:313 application/views/user/edit.php:337
@@ -1550,7 +1550,7 @@ msgstr "Etäisyys"
#: application/views/simplefle/index.php:156
#: application/views/stationsetup/exportmapoptions.php:31
#: application/views/statistics/antennaanalytics.php:19
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:22
#: application/views/timeline/index.php:7
#: application/views/timeplotter/index.php:14
#: application/views/user/edit.php:242 application/views/user/edit.php:265
@@ -1597,6 +1597,7 @@ msgstr "Taajuus"
#: application/views/qso/components/previous_contacts.php:90
#: application/views/search/search_result_ajax.php:17
#: application/views/simplefle/index.php:116
#: application/views/statistics/index.php:23
#: application/views/user/edit.php:255 application/views/user/edit.php:278
#: application/views/user/edit.php:301 application/views/user/edit.php:324
#: application/views/user/edit.php:348
@@ -2381,13 +2382,13 @@ msgstr ""
msgid "Statistics"
msgstr "Statistiikkaa"
#: application/controllers/Statistics.php:209
#: application/controllers/Statistics.php:238
#: application/views/interface_assets/header.php:143
#: application/views/statistics/qsltable.php:5
msgid "QSL Statistics"
msgstr ""
#: application/controllers/Statistics.php:224
#: application/controllers/Statistics.php:253
#: application/views/interface_assets/header.php:141
#: application/views/statistics/antennaanalytics.php:3
msgid "Antenna Analytics"
@@ -2918,82 +2919,82 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:3875
#: application/models/Logbook_model.php:3899
#, php-format
msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED"
msgstr ""
#: application/models/Logbook_model.php:3876
#: application/models/Logbook_model.php:3900
#, php-format
msgid "Check %s for hints about errors in ADIF files."
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid "QSO on"
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
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:4187
#: application/models/Logbook_model.php:4211
msgid "the qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4198
#: application/models/Logbook_model.php:4222
msgid "the qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4259
#: application/models/Logbook_model.php:4283
msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4279
#: application/models/Logbook_model.php:4303
msgid "the lotw_qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4300
#: application/models/Logbook_model.php:4324
msgid "the lotw_qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4581
#: application/models/Logbook_model.php:4605
#: application/views/simplefle/index.php:40
msgid "Duplicate for"
msgstr ""
#: application/models/Logbook_model.php:4642
#: application/models/Logbook_model.php:4666
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4648
#: application/models/Logbook_model.php:4672
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4653
#: application/models/Logbook_model.php:4677
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4656
#: application/models/Logbook_model.php:4680
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4659
#: application/models/Logbook_model.php:4683
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4662
#: application/models/Logbook_model.php:4686
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4665
#: application/models/Logbook_model.php:4689
#: application/views/satellite/index.php:52
#: application/views/view_log/qso.php:287
msgid "unknown"
msgstr ""
#: application/models/Logbook_model.php:5475
#: application/models/Logbook_model.php:5499
#: application/views/activated_gridmap/index.php:110
#: application/views/awards/ffma/index.php:38
#: application/views/awards/gridmaster/index.php:44
@@ -3075,8 +3076,8 @@ msgstr ""
#: application/views/dashboard/index.php:296
#: application/views/dayswithqso/index.php:41
#: application/views/dayswithqso/index.php:81
#: application/views/statistics/index.php:18
#: application/views/statistics/index.php:36
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:38
#: application/views/timeline/index.php:107
#: application/views/visitor/index.php:250
msgid "Year"
@@ -3559,7 +3560,7 @@ msgstr ""
#: application/views/satellite/skedtable.php:7
#: application/views/satellite/skedtable.php:56
#: application/views/sattimers/index.php:38
#: application/views/statistics/index.php:22
#: application/views/statistics/index.php:24
msgid "Satellite"
msgstr "Satelliitti"
@@ -5923,6 +5924,8 @@ msgstr ""
#: application/views/cabrillo/index.php:164
#: application/views/reg1test/index.php:70
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:73
msgid "Operators"
msgstr ""
@@ -6674,7 +6677,7 @@ msgid "VUCC Gridsquare"
msgstr ""
#: application/views/continents/index.php:63
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:20
msgid "# of QSO's worked"
msgstr ""
@@ -8439,8 +8442,8 @@ msgstr "Yleiset asetukset"
#: application/views/interface_assets/header.php:289
#: application/views/notes/add.php:38 application/views/notes/edit.php:39
#: application/views/satellite/index.php:11
#: application/views/statistics/index.php:48
#: application/views/statistics/index.php:102
#: application/views/statistics/index.php:50
#: application/views/statistics/index.php:111
msgid "Satellites"
msgstr ""
@@ -8779,8 +8782,8 @@ msgid "Label types"
msgstr ""
#: application/views/labels/index.php:81
#: application/views/statistics/index.php:68
#: application/views/statistics/index.php:105
#: application/views/statistics/index.php:70
#: application/views/statistics/index.php:114
#: application/views/widgets/qsos.php:3
msgid "QSOs"
msgstr "QSO:t"
@@ -9722,7 +9725,7 @@ msgid "Category"
msgstr "Kategoria"
#: application/views/notes/add.php:36 application/views/notes/edit.php:37
#: application/views/qso/index.php:31 application/views/statistics/index.php:44
#: application/views/qso/index.php:31 application/views/statistics/index.php:46
#: application/views/user/edit.php:169
msgid "General"
msgstr "Yleinen"
@@ -12225,25 +12228,25 @@ msgid "Elevation"
msgstr ""
#: application/views/statistics/index.php:14
#: application/views/statistics/index.php:59
#: application/views/statistics/index.php:61
msgid "Years"
msgstr "Vuodet"
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:18
msgid "Number of QSOs worked each year"
msgstr ""
#: application/views/statistics/index.php:29
#: application/views/statistics/index.php:31
msgid "Explore the logbook."
msgstr "Uppoudu lokiisi tarkemmin"
#: application/views/statistics/index.php:33
#: application/views/statistics/index.php:35
#: application/views/timeline/index.php:111
msgid "All Years"
msgstr ""
#: application/views/statistics/index.php:71
#: application/views/statistics/index.php:108
#: application/views/statistics/index.php:76
#: application/views/statistics/index.php:117
msgid "Unique callsigns"
msgstr "Erillisiä kutsuja"

View File

@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2025-01-23 10:57+0000\n"
"POT-Creation-Date: 2025-01-27 13:03+0000\n"
"PO-Revision-Date: 2024-12-04 07:53+0000\n"
"Last-Translator: F4JSU <f4jsu.radio@gmail.com>\n"
"Language-Team: French <https://translate.wavelog.org/projects/wavelog/main-"
@@ -573,7 +573,7 @@ msgstr "Notes - Sauvegarde"
#: application/views/bands/index.php:32
#: application/views/interface_assets/header.php:400
#: application/views/statistics/index.php:16
#: application/views/statistics/index.php:65
#: application/views/statistics/index.php:67
msgid "Bands"
msgstr "Bandes"
@@ -720,7 +720,7 @@ msgstr "Concours"
msgid "Update Contest"
msgstr "Mettre à jour"
#: application/controllers/Continents.php:25
#: application/controllers/Continents.php:26
#: application/views/awards/dxcc/index.php:83
#: application/views/awards/iota/index.php:57
#: application/views/interface_assets/header.php:163
@@ -1297,8 +1297,8 @@ msgstr "Clublog"
#: application/views/simplefle/index.php:157
#: application/views/statistics/antennaanalytics.php:31
#: application/views/statistics/index.php:15
#: application/views/statistics/index.php:20
#: application/views/statistics/index.php:62
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:64
#: application/views/timeline/index.php:19 application/views/user/edit.php:244
#: application/views/user/edit.php:267 application/views/user/edit.php:290
#: application/views/user/edit.php:313 application/views/user/edit.php:337
@@ -1571,7 +1571,7 @@ msgstr "Distance"
#: application/views/simplefle/index.php:156
#: application/views/stationsetup/exportmapoptions.php:31
#: application/views/statistics/antennaanalytics.php:19
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:22
#: application/views/timeline/index.php:7
#: application/views/timeplotter/index.php:14
#: application/views/user/edit.php:242 application/views/user/edit.php:265
@@ -1618,6 +1618,7 @@ msgstr "Frequence"
#: application/views/qso/components/previous_contacts.php:90
#: application/views/search/search_result_ajax.php:17
#: application/views/simplefle/index.php:116
#: application/views/statistics/index.php:23
#: application/views/user/edit.php:255 application/views/user/edit.php:278
#: application/views/user/edit.php:301 application/views/user/edit.php:324
#: application/views/user/edit.php:348
@@ -2415,13 +2416,13 @@ msgstr "Modifier les options d'exportation de la carte"
msgid "Statistics"
msgstr "Statistiques"
#: application/controllers/Statistics.php:209
#: application/controllers/Statistics.php:238
#: application/views/interface_assets/header.php:143
#: application/views/statistics/qsltable.php:5
msgid "QSL Statistics"
msgstr "Statistiques QSL"
#: application/controllers/Statistics.php:224
#: application/controllers/Statistics.php:253
#: application/views/interface_assets/header.php:141
#: application/views/statistics/antennaanalytics.php:3
msgid "Antenna Analytics"
@@ -2973,23 +2974,23 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr "HRDlog : Aucun profil de station avec les identifiants HRDlog trouvé."
#: application/models/Logbook_model.php:3875
#: application/models/Logbook_model.php:3899
#, php-format
msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED"
msgstr ""
"Indicatif d'appel de station incorrect %s lors de l'importation du QSO avec "
"%s pour %s : IGNORÉ"
#: application/models/Logbook_model.php:3876
#: application/models/Logbook_model.php:3900
#, php-format
msgid "Check %s for hints about errors in ADIF files."
msgstr "Vérifie %s pour des indices sur les erreurs dans les fichiers ADIF."
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid "QSO on"
msgstr "QSO en"
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid ""
"You tried to import a QSO without any given CALL. This QSO wasn't imported. "
"It's invalid"
@@ -2997,62 +2998,62 @@ msgstr ""
"Vous avez essayé d'importer un QSO sans indicatif donné. Ce QSO n'a pas été "
"importé. Il est invalide"
#: application/models/Logbook_model.php:4187
#: application/models/Logbook_model.php:4211
msgid "the qslrdate is invalid (YYYYMMDD)"
msgstr "la qslrdate est invalide (AAAAMMJJ)"
#: application/models/Logbook_model.php:4198
#: application/models/Logbook_model.php:4222
msgid "the qslsdate is invalid (YYYYMMDD)"
msgstr "la qslsdate est invalide (AAAAMMJJ)"
#: application/models/Logbook_model.php:4259
#: application/models/Logbook_model.php:4283
msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)"
msgstr "la clublog_qso_upload_date est invalide (AAAAMMJJ)"
#: application/models/Logbook_model.php:4279
#: application/models/Logbook_model.php:4303
msgid "the lotw_qslrdate is invalid (YYYYMMDD)"
msgstr "la lotw_qslrdate est invalide (AAAAMMJJ)"
#: application/models/Logbook_model.php:4300
#: application/models/Logbook_model.php:4324
msgid "the lotw_qslsdate is invalid (YYYYMMDD)"
msgstr "la lotw_qslsdate est invalide (AAAAMMJJ)"
#: application/models/Logbook_model.php:4581
#: application/models/Logbook_model.php:4605
#: application/views/simplefle/index.php:40
msgid "Duplicate for"
msgstr "Dupliquer pour"
#: application/models/Logbook_model.php:4642
#: application/models/Logbook_model.php:4666
msgid "QSO could not be matched"
msgstr "pas de correspondance pour le QSO"
#: application/models/Logbook_model.php:4648
#: application/models/Logbook_model.php:4672
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr "confirmé par LoTW/Clublog/eQSL/Contest"
#: application/models/Logbook_model.php:4653
#: application/models/Logbook_model.php:4677
msgid "confirmed by award manager"
msgstr "confirmé par le manager de l'Award"
#: application/models/Logbook_model.php:4656
#: application/models/Logbook_model.php:4680
msgid "confirmed by cross-check of DCL data"
msgstr "confirmé par recoupement des données DCL"
#: application/models/Logbook_model.php:4659
#: application/models/Logbook_model.php:4683
msgid "confirmation pending"
msgstr "confirmation en attente"
#: application/models/Logbook_model.php:4662
#: application/models/Logbook_model.php:4686
msgid "unconfirmed"
msgstr "non confirmé"
#: application/models/Logbook_model.php:4665
#: application/models/Logbook_model.php:4689
#: application/views/satellite/index.php:52
#: application/views/view_log/qso.php:287
msgid "unknown"
msgstr "inconnu"
#: application/models/Logbook_model.php:5475
#: application/models/Logbook_model.php:5499
#: application/views/activated_gridmap/index.php:110
#: application/views/awards/ffma/index.php:38
#: application/views/awards/gridmaster/index.php:44
@@ -3134,8 +3135,8 @@ msgstr "Nombre total de WAJA contactés"
#: application/views/dashboard/index.php:296
#: application/views/dayswithqso/index.php:41
#: application/views/dayswithqso/index.php:81
#: application/views/statistics/index.php:18
#: application/views/statistics/index.php:36
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:38
#: application/views/timeline/index.php:107
#: application/views/visitor/index.php:250
msgid "Year"
@@ -3618,7 +3619,7 @@ msgstr "Afficher"
#: application/views/satellite/skedtable.php:7
#: application/views/satellite/skedtable.php:56
#: application/views/sattimers/index.php:38
#: application/views/statistics/index.php:22
#: application/views/statistics/index.php:24
msgid "Satellite"
msgstr "Satellite"
@@ -6167,6 +6168,8 @@ msgstr "Catégorie - Overlay"
#: application/views/cabrillo/index.php:164
#: application/views/reg1test/index.php:70
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:73
msgid "Operators"
msgstr "Operateurs"
@@ -6926,7 +6929,7 @@ msgid "VUCC Gridsquare"
msgstr ""
#: application/views/continents/index.php:63
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:20
msgid "# of QSO's worked"
msgstr "QSOs réalisés"
@@ -8698,8 +8701,8 @@ msgstr ""
#: application/views/interface_assets/header.php:289
#: application/views/notes/add.php:38 application/views/notes/edit.php:39
#: application/views/satellite/index.php:11
#: application/views/statistics/index.php:48
#: application/views/statistics/index.php:102
#: application/views/statistics/index.php:50
#: application/views/statistics/index.php:111
msgid "Satellites"
msgstr ""
@@ -9040,8 +9043,8 @@ msgid "Label types"
msgstr ""
#: application/views/labels/index.php:81
#: application/views/statistics/index.php:68
#: application/views/statistics/index.php:105
#: application/views/statistics/index.php:70
#: application/views/statistics/index.php:114
#: application/views/widgets/qsos.php:3
msgid "QSOs"
msgstr "Nb QSOs /Bandes /Modes"
@@ -9982,7 +9985,7 @@ msgid "Category"
msgstr "Catégorie"
#: application/views/notes/add.php:36 application/views/notes/edit.php:37
#: application/views/qso/index.php:31 application/views/statistics/index.php:44
#: application/views/qso/index.php:31 application/views/statistics/index.php:46
#: application/views/user/edit.php:169
msgid "General"
msgstr "Général"
@@ -12492,25 +12495,25 @@ msgid "Elevation"
msgstr ""
#: application/views/statistics/index.php:14
#: application/views/statistics/index.php:59
#: application/views/statistics/index.php:61
msgid "Years"
msgstr "Nb QSOs /An"
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:18
msgid "Number of QSOs worked each year"
msgstr "Nombre de QSOs réalisés par an"
#: application/views/statistics/index.php:29
#: application/views/statistics/index.php:31
msgid "Explore the logbook."
msgstr "Informations sur le journal de trafic."
#: application/views/statistics/index.php:33
#: application/views/statistics/index.php:35
#: application/views/timeline/index.php:111
msgid "All Years"
msgstr ""
#: application/views/statistics/index.php:71
#: application/views/statistics/index.php:108
#: application/views/statistics/index.php:76
#: application/views/statistics/index.php:117
msgid "Unique callsigns"
msgstr "Indicatif unique /Bandes /Modes"

View File

@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2025-01-23 10:57+0000\n"
"POT-Creation-Date: 2025-01-27 13:03+0000\n"
"PO-Revision-Date: 2024-11-23 16:17+0000\n"
"Last-Translator: Fabian Berg <fabian.berg@hb9hil.org>\n"
"Language-Team: Croatian <https://translate.wavelog.org/projects/wavelog/main-"
@@ -571,7 +571,7 @@ msgstr ""
#: application/views/bands/index.php:32
#: application/views/interface_assets/header.php:400
#: application/views/statistics/index.php:16
#: application/views/statistics/index.php:65
#: application/views/statistics/index.php:67
msgid "Bands"
msgstr ""
@@ -718,7 +718,7 @@ msgstr ""
msgid "Update Contest"
msgstr ""
#: application/controllers/Continents.php:25
#: application/controllers/Continents.php:26
#: application/views/awards/dxcc/index.php:83
#: application/views/awards/iota/index.php:57
#: application/views/interface_assets/header.php:163
@@ -1279,8 +1279,8 @@ msgstr ""
#: application/views/simplefle/index.php:157
#: application/views/statistics/antennaanalytics.php:31
#: application/views/statistics/index.php:15
#: application/views/statistics/index.php:20
#: application/views/statistics/index.php:62
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:64
#: application/views/timeline/index.php:19 application/views/user/edit.php:244
#: application/views/user/edit.php:267 application/views/user/edit.php:290
#: application/views/user/edit.php:313 application/views/user/edit.php:337
@@ -1553,7 +1553,7 @@ msgstr ""
#: application/views/simplefle/index.php:156
#: application/views/stationsetup/exportmapoptions.php:31
#: application/views/statistics/antennaanalytics.php:19
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:22
#: application/views/timeline/index.php:7
#: application/views/timeplotter/index.php:14
#: application/views/user/edit.php:242 application/views/user/edit.php:265
@@ -1600,6 +1600,7 @@ msgstr ""
#: application/views/qso/components/previous_contacts.php:90
#: application/views/search/search_result_ajax.php:17
#: application/views/simplefle/index.php:116
#: application/views/statistics/index.php:23
#: application/views/user/edit.php:255 application/views/user/edit.php:278
#: application/views/user/edit.php:301 application/views/user/edit.php:324
#: application/views/user/edit.php:348
@@ -2387,13 +2388,13 @@ msgstr ""
msgid "Statistics"
msgstr ""
#: application/controllers/Statistics.php:209
#: application/controllers/Statistics.php:238
#: application/views/interface_assets/header.php:143
#: application/views/statistics/qsltable.php:5
msgid "QSL Statistics"
msgstr ""
#: application/controllers/Statistics.php:224
#: application/controllers/Statistics.php:253
#: application/views/interface_assets/header.php:141
#: application/views/statistics/antennaanalytics.php:3
msgid "Antenna Analytics"
@@ -2924,82 +2925,82 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:3875
#: application/models/Logbook_model.php:3899
#, php-format
msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED"
msgstr ""
#: application/models/Logbook_model.php:3876
#: application/models/Logbook_model.php:3900
#, php-format
msgid "Check %s for hints about errors in ADIF files."
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid "QSO on"
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
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:4187
#: application/models/Logbook_model.php:4211
msgid "the qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4198
#: application/models/Logbook_model.php:4222
msgid "the qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4259
#: application/models/Logbook_model.php:4283
msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4279
#: application/models/Logbook_model.php:4303
msgid "the lotw_qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4300
#: application/models/Logbook_model.php:4324
msgid "the lotw_qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4581
#: application/models/Logbook_model.php:4605
#: application/views/simplefle/index.php:40
msgid "Duplicate for"
msgstr ""
#: application/models/Logbook_model.php:4642
#: application/models/Logbook_model.php:4666
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4648
#: application/models/Logbook_model.php:4672
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4653
#: application/models/Logbook_model.php:4677
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4656
#: application/models/Logbook_model.php:4680
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4659
#: application/models/Logbook_model.php:4683
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4662
#: application/models/Logbook_model.php:4686
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4665
#: application/models/Logbook_model.php:4689
#: application/views/satellite/index.php:52
#: application/views/view_log/qso.php:287
msgid "unknown"
msgstr ""
#: application/models/Logbook_model.php:5475
#: application/models/Logbook_model.php:5499
#: application/views/activated_gridmap/index.php:110
#: application/views/awards/ffma/index.php:38
#: application/views/awards/gridmaster/index.php:44
@@ -3081,8 +3082,8 @@ msgstr ""
#: application/views/dashboard/index.php:296
#: application/views/dayswithqso/index.php:41
#: application/views/dayswithqso/index.php:81
#: application/views/statistics/index.php:18
#: application/views/statistics/index.php:36
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:38
#: application/views/timeline/index.php:107
#: application/views/visitor/index.php:250
msgid "Year"
@@ -3565,7 +3566,7 @@ msgstr ""
#: application/views/satellite/skedtable.php:7
#: application/views/satellite/skedtable.php:56
#: application/views/sattimers/index.php:38
#: application/views/statistics/index.php:22
#: application/views/statistics/index.php:24
msgid "Satellite"
msgstr ""
@@ -5929,6 +5930,8 @@ msgstr ""
#: application/views/cabrillo/index.php:164
#: application/views/reg1test/index.php:70
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:73
msgid "Operators"
msgstr ""
@@ -6680,7 +6683,7 @@ msgid "VUCC Gridsquare"
msgstr ""
#: application/views/continents/index.php:63
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:20
msgid "# of QSO's worked"
msgstr ""
@@ -8448,8 +8451,8 @@ msgstr ""
#: application/views/interface_assets/header.php:289
#: application/views/notes/add.php:38 application/views/notes/edit.php:39
#: application/views/satellite/index.php:11
#: application/views/statistics/index.php:48
#: application/views/statistics/index.php:102
#: application/views/statistics/index.php:50
#: application/views/statistics/index.php:111
msgid "Satellites"
msgstr ""
@@ -8788,8 +8791,8 @@ msgid "Label types"
msgstr ""
#: application/views/labels/index.php:81
#: application/views/statistics/index.php:68
#: application/views/statistics/index.php:105
#: application/views/statistics/index.php:70
#: application/views/statistics/index.php:114
#: application/views/widgets/qsos.php:3
msgid "QSOs"
msgstr ""
@@ -9724,7 +9727,7 @@ msgid "Category"
msgstr ""
#: application/views/notes/add.php:36 application/views/notes/edit.php:37
#: application/views/qso/index.php:31 application/views/statistics/index.php:44
#: application/views/qso/index.php:31 application/views/statistics/index.php:46
#: application/views/user/edit.php:169
msgid "General"
msgstr ""
@@ -12225,25 +12228,25 @@ msgid "Elevation"
msgstr ""
#: application/views/statistics/index.php:14
#: application/views/statistics/index.php:59
#: application/views/statistics/index.php:61
msgid "Years"
msgstr ""
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:18
msgid "Number of QSOs worked each year"
msgstr ""
#: application/views/statistics/index.php:29
#: application/views/statistics/index.php:31
msgid "Explore the logbook."
msgstr ""
#: application/views/statistics/index.php:33
#: application/views/statistics/index.php:35
#: application/views/timeline/index.php:111
msgid "All Years"
msgstr ""
#: application/views/statistics/index.php:71
#: application/views/statistics/index.php:108
#: application/views/statistics/index.php:76
#: application/views/statistics/index.php:117
msgid "Unique callsigns"
msgstr ""

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2025-01-23 10:57+0000\n"
"POT-Creation-Date: 2025-01-27 13:03+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -567,7 +567,7 @@ msgstr ""
#: application/views/bands/index.php:32
#: application/views/interface_assets/header.php:400
#: application/views/statistics/index.php:16
#: application/views/statistics/index.php:65
#: application/views/statistics/index.php:67
msgid "Bands"
msgstr ""
@@ -714,7 +714,7 @@ msgstr ""
msgid "Update Contest"
msgstr ""
#: application/controllers/Continents.php:25
#: application/controllers/Continents.php:26
#: application/views/awards/dxcc/index.php:83
#: application/views/awards/iota/index.php:57
#: application/views/interface_assets/header.php:163
@@ -1274,8 +1274,8 @@ msgstr ""
#: application/views/simplefle/index.php:157
#: application/views/statistics/antennaanalytics.php:31
#: application/views/statistics/index.php:15
#: application/views/statistics/index.php:20
#: application/views/statistics/index.php:62
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:64
#: application/views/timeline/index.php:19 application/views/user/edit.php:244
#: application/views/user/edit.php:267 application/views/user/edit.php:290
#: application/views/user/edit.php:313 application/views/user/edit.php:337
@@ -1548,7 +1548,7 @@ msgstr ""
#: application/views/simplefle/index.php:156
#: application/views/stationsetup/exportmapoptions.php:31
#: application/views/statistics/antennaanalytics.php:19
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:22
#: application/views/timeline/index.php:7
#: application/views/timeplotter/index.php:14
#: application/views/user/edit.php:242 application/views/user/edit.php:265
@@ -1595,6 +1595,7 @@ msgstr ""
#: application/views/qso/components/previous_contacts.php:90
#: application/views/search/search_result_ajax.php:17
#: application/views/simplefle/index.php:116
#: application/views/statistics/index.php:23
#: application/views/user/edit.php:255 application/views/user/edit.php:278
#: application/views/user/edit.php:301 application/views/user/edit.php:324
#: application/views/user/edit.php:348
@@ -2379,13 +2380,13 @@ msgstr ""
msgid "Statistics"
msgstr ""
#: application/controllers/Statistics.php:209
#: application/controllers/Statistics.php:238
#: application/views/interface_assets/header.php:143
#: application/views/statistics/qsltable.php:5
msgid "QSL Statistics"
msgstr ""
#: application/controllers/Statistics.php:224
#: application/controllers/Statistics.php:253
#: application/views/interface_assets/header.php:141
#: application/views/statistics/antennaanalytics.php:3
msgid "Antenna Analytics"
@@ -2916,82 +2917,82 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:3875
#: application/models/Logbook_model.php:3899
#, php-format
msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED"
msgstr ""
#: application/models/Logbook_model.php:3876
#: application/models/Logbook_model.php:3900
#, php-format
msgid "Check %s for hints about errors in ADIF files."
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid "QSO on"
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
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:4187
#: application/models/Logbook_model.php:4211
msgid "the qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4198
#: application/models/Logbook_model.php:4222
msgid "the qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4259
#: application/models/Logbook_model.php:4283
msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4279
#: application/models/Logbook_model.php:4303
msgid "the lotw_qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4300
#: application/models/Logbook_model.php:4324
msgid "the lotw_qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4581
#: application/models/Logbook_model.php:4605
#: application/views/simplefle/index.php:40
msgid "Duplicate for"
msgstr ""
#: application/models/Logbook_model.php:4642
#: application/models/Logbook_model.php:4666
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4648
#: application/models/Logbook_model.php:4672
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4653
#: application/models/Logbook_model.php:4677
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4656
#: application/models/Logbook_model.php:4680
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4659
#: application/models/Logbook_model.php:4683
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4662
#: application/models/Logbook_model.php:4686
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4665
#: application/models/Logbook_model.php:4689
#: application/views/satellite/index.php:52
#: application/views/view_log/qso.php:287
msgid "unknown"
msgstr ""
#: application/models/Logbook_model.php:5475
#: application/models/Logbook_model.php:5499
#: application/views/activated_gridmap/index.php:110
#: application/views/awards/ffma/index.php:38
#: application/views/awards/gridmaster/index.php:44
@@ -3073,8 +3074,8 @@ msgstr ""
#: application/views/dashboard/index.php:296
#: application/views/dayswithqso/index.php:41
#: application/views/dayswithqso/index.php:81
#: application/views/statistics/index.php:18
#: application/views/statistics/index.php:36
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:38
#: application/views/timeline/index.php:107
#: application/views/visitor/index.php:250
msgid "Year"
@@ -3557,7 +3558,7 @@ msgstr ""
#: application/views/satellite/skedtable.php:7
#: application/views/satellite/skedtable.php:56
#: application/views/sattimers/index.php:38
#: application/views/statistics/index.php:22
#: application/views/statistics/index.php:24
msgid "Satellite"
msgstr ""
@@ -5921,6 +5922,8 @@ msgstr ""
#: application/views/cabrillo/index.php:164
#: application/views/reg1test/index.php:70
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:73
msgid "Operators"
msgstr ""
@@ -6672,7 +6675,7 @@ msgid "VUCC Gridsquare"
msgstr ""
#: application/views/continents/index.php:63
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:20
msgid "# of QSO's worked"
msgstr ""
@@ -8437,8 +8440,8 @@ msgstr ""
#: application/views/interface_assets/header.php:289
#: application/views/notes/add.php:38 application/views/notes/edit.php:39
#: application/views/satellite/index.php:11
#: application/views/statistics/index.php:48
#: application/views/statistics/index.php:102
#: application/views/statistics/index.php:50
#: application/views/statistics/index.php:111
msgid "Satellites"
msgstr ""
@@ -8777,8 +8780,8 @@ msgid "Label types"
msgstr ""
#: application/views/labels/index.php:81
#: application/views/statistics/index.php:68
#: application/views/statistics/index.php:105
#: application/views/statistics/index.php:70
#: application/views/statistics/index.php:114
#: application/views/widgets/qsos.php:3
msgid "QSOs"
msgstr ""
@@ -9712,7 +9715,7 @@ msgid "Category"
msgstr ""
#: application/views/notes/add.php:36 application/views/notes/edit.php:37
#: application/views/qso/index.php:31 application/views/statistics/index.php:44
#: application/views/qso/index.php:31 application/views/statistics/index.php:46
#: application/views/user/edit.php:169
msgid "General"
msgstr ""
@@ -12211,25 +12214,25 @@ msgid "Elevation"
msgstr ""
#: application/views/statistics/index.php:14
#: application/views/statistics/index.php:59
#: application/views/statistics/index.php:61
msgid "Years"
msgstr ""
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:18
msgid "Number of QSOs worked each year"
msgstr ""
#: application/views/statistics/index.php:29
#: application/views/statistics/index.php:31
msgid "Explore the logbook."
msgstr ""
#: application/views/statistics/index.php:33
#: application/views/statistics/index.php:35
#: application/views/timeline/index.php:111
msgid "All Years"
msgstr ""
#: application/views/statistics/index.php:71
#: application/views/statistics/index.php:108
#: application/views/statistics/index.php:76
#: application/views/statistics/index.php:117
msgid "Unique callsigns"
msgstr ""

View File

@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2025-01-23 10:57+0000\n"
"POT-Creation-Date: 2025-01-27 13:03+0000\n"
"PO-Revision-Date: 2024-11-23 00:21+0000\n"
"Last-Translator: Fabian Berg <fabian.berg@hb9hil.org>\n"
"Language-Team: Italian <https://translate.wavelog.org/projects/wavelog/main-"
@@ -571,7 +571,7 @@ msgstr "Note - Backup"
#: application/views/bands/index.php:32
#: application/views/interface_assets/header.php:400
#: application/views/statistics/index.php:16
#: application/views/statistics/index.php:65
#: application/views/statistics/index.php:67
msgid "Bands"
msgstr "Bande"
@@ -718,7 +718,7 @@ msgstr "Contest"
msgid "Update Contest"
msgstr "Aggiorna contest"
#: application/controllers/Continents.php:25
#: application/controllers/Continents.php:26
#: application/views/awards/dxcc/index.php:83
#: application/views/awards/iota/index.php:57
#: application/views/interface_assets/header.php:163
@@ -1280,8 +1280,8 @@ msgstr ""
#: application/views/simplefle/index.php:157
#: application/views/statistics/antennaanalytics.php:31
#: application/views/statistics/index.php:15
#: application/views/statistics/index.php:20
#: application/views/statistics/index.php:62
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:64
#: application/views/timeline/index.php:19 application/views/user/edit.php:244
#: application/views/user/edit.php:267 application/views/user/edit.php:290
#: application/views/user/edit.php:313 application/views/user/edit.php:337
@@ -1554,7 +1554,7 @@ msgstr ""
#: application/views/simplefle/index.php:156
#: application/views/stationsetup/exportmapoptions.php:31
#: application/views/statistics/antennaanalytics.php:19
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:22
#: application/views/timeline/index.php:7
#: application/views/timeplotter/index.php:14
#: application/views/user/edit.php:242 application/views/user/edit.php:265
@@ -1601,6 +1601,7 @@ msgstr "Frequenza"
#: application/views/qso/components/previous_contacts.php:90
#: application/views/search/search_result_ajax.php:17
#: application/views/simplefle/index.php:116
#: application/views/statistics/index.php:23
#: application/views/user/edit.php:255 application/views/user/edit.php:278
#: application/views/user/edit.php:301 application/views/user/edit.php:324
#: application/views/user/edit.php:348
@@ -2385,13 +2386,13 @@ msgstr ""
msgid "Statistics"
msgstr ""
#: application/controllers/Statistics.php:209
#: application/controllers/Statistics.php:238
#: application/views/interface_assets/header.php:143
#: application/views/statistics/qsltable.php:5
msgid "QSL Statistics"
msgstr ""
#: application/controllers/Statistics.php:224
#: application/controllers/Statistics.php:253
#: application/views/interface_assets/header.php:141
#: application/views/statistics/antennaanalytics.php:3
msgid "Antenna Analytics"
@@ -2922,82 +2923,82 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:3875
#: application/models/Logbook_model.php:3899
#, php-format
msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED"
msgstr ""
#: application/models/Logbook_model.php:3876
#: application/models/Logbook_model.php:3900
#, php-format
msgid "Check %s for hints about errors in ADIF files."
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid "QSO on"
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
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:4187
#: application/models/Logbook_model.php:4211
msgid "the qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4198
#: application/models/Logbook_model.php:4222
msgid "the qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4259
#: application/models/Logbook_model.php:4283
msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4279
#: application/models/Logbook_model.php:4303
msgid "the lotw_qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4300
#: application/models/Logbook_model.php:4324
msgid "the lotw_qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4581
#: application/models/Logbook_model.php:4605
#: application/views/simplefle/index.php:40
msgid "Duplicate for"
msgstr ""
#: application/models/Logbook_model.php:4642
#: application/models/Logbook_model.php:4666
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4648
#: application/models/Logbook_model.php:4672
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4653
#: application/models/Logbook_model.php:4677
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4656
#: application/models/Logbook_model.php:4680
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4659
#: application/models/Logbook_model.php:4683
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4662
#: application/models/Logbook_model.php:4686
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4665
#: application/models/Logbook_model.php:4689
#: application/views/satellite/index.php:52
#: application/views/view_log/qso.php:287
msgid "unknown"
msgstr ""
#: application/models/Logbook_model.php:5475
#: application/models/Logbook_model.php:5499
#: application/views/activated_gridmap/index.php:110
#: application/views/awards/ffma/index.php:38
#: application/views/awards/gridmaster/index.php:44
@@ -3079,8 +3080,8 @@ msgstr ""
#: application/views/dashboard/index.php:296
#: application/views/dayswithqso/index.php:41
#: application/views/dayswithqso/index.php:81
#: application/views/statistics/index.php:18
#: application/views/statistics/index.php:36
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:38
#: application/views/timeline/index.php:107
#: application/views/visitor/index.php:250
msgid "Year"
@@ -3563,7 +3564,7 @@ msgstr ""
#: application/views/satellite/skedtable.php:7
#: application/views/satellite/skedtable.php:56
#: application/views/sattimers/index.php:38
#: application/views/statistics/index.php:22
#: application/views/statistics/index.php:24
msgid "Satellite"
msgstr ""
@@ -5927,6 +5928,8 @@ msgstr ""
#: application/views/cabrillo/index.php:164
#: application/views/reg1test/index.php:70
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:73
msgid "Operators"
msgstr ""
@@ -6678,7 +6681,7 @@ msgid "VUCC Gridsquare"
msgstr ""
#: application/views/continents/index.php:63
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:20
msgid "# of QSO's worked"
msgstr ""
@@ -8446,8 +8449,8 @@ msgstr ""
#: application/views/interface_assets/header.php:289
#: application/views/notes/add.php:38 application/views/notes/edit.php:39
#: application/views/satellite/index.php:11
#: application/views/statistics/index.php:48
#: application/views/statistics/index.php:102
#: application/views/statistics/index.php:50
#: application/views/statistics/index.php:111
msgid "Satellites"
msgstr ""
@@ -8786,8 +8789,8 @@ msgid "Label types"
msgstr ""
#: application/views/labels/index.php:81
#: application/views/statistics/index.php:68
#: application/views/statistics/index.php:105
#: application/views/statistics/index.php:70
#: application/views/statistics/index.php:114
#: application/views/widgets/qsos.php:3
msgid "QSOs"
msgstr ""
@@ -9725,7 +9728,7 @@ msgid "Category"
msgstr "Categoria"
#: application/views/notes/add.php:36 application/views/notes/edit.php:37
#: application/views/qso/index.php:31 application/views/statistics/index.php:44
#: application/views/qso/index.php:31 application/views/statistics/index.php:46
#: application/views/user/edit.php:169
msgid "General"
msgstr "Generale"
@@ -12227,25 +12230,25 @@ msgid "Elevation"
msgstr ""
#: application/views/statistics/index.php:14
#: application/views/statistics/index.php:59
#: application/views/statistics/index.php:61
msgid "Years"
msgstr ""
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:18
msgid "Number of QSOs worked each year"
msgstr ""
#: application/views/statistics/index.php:29
#: application/views/statistics/index.php:31
msgid "Explore the logbook."
msgstr ""
#: application/views/statistics/index.php:33
#: application/views/statistics/index.php:35
#: application/views/timeline/index.php:111
msgid "All Years"
msgstr ""
#: application/views/statistics/index.php:71
#: application/views/statistics/index.php:108
#: application/views/statistics/index.php:76
#: application/views/statistics/index.php:117
msgid "Unique callsigns"
msgstr ""

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2025-01-23 10:57+0000\n"
"POT-Creation-Date: 2025-01-27 13:03+0000\n"
"PO-Revision-Date: 2024-11-19 01:22+0000\n"
"Last-Translator: Fabian Berg <fabian.berg@hb9hil.org>\n"
"Language-Team: Lithuanian <https://translate.wavelog.org/projects/wavelog/"
@@ -571,7 +571,7 @@ msgstr ""
#: application/views/bands/index.php:32
#: application/views/interface_assets/header.php:400
#: application/views/statistics/index.php:16
#: application/views/statistics/index.php:65
#: application/views/statistics/index.php:67
msgid "Bands"
msgstr ""
@@ -718,7 +718,7 @@ msgstr ""
msgid "Update Contest"
msgstr ""
#: application/controllers/Continents.php:25
#: application/controllers/Continents.php:26
#: application/views/awards/dxcc/index.php:83
#: application/views/awards/iota/index.php:57
#: application/views/interface_assets/header.php:163
@@ -1278,8 +1278,8 @@ msgstr ""
#: application/views/simplefle/index.php:157
#: application/views/statistics/antennaanalytics.php:31
#: application/views/statistics/index.php:15
#: application/views/statistics/index.php:20
#: application/views/statistics/index.php:62
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:64
#: application/views/timeline/index.php:19 application/views/user/edit.php:244
#: application/views/user/edit.php:267 application/views/user/edit.php:290
#: application/views/user/edit.php:313 application/views/user/edit.php:337
@@ -1552,7 +1552,7 @@ msgstr ""
#: application/views/simplefle/index.php:156
#: application/views/stationsetup/exportmapoptions.php:31
#: application/views/statistics/antennaanalytics.php:19
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:22
#: application/views/timeline/index.php:7
#: application/views/timeplotter/index.php:14
#: application/views/user/edit.php:242 application/views/user/edit.php:265
@@ -1599,6 +1599,7 @@ msgstr ""
#: application/views/qso/components/previous_contacts.php:90
#: application/views/search/search_result_ajax.php:17
#: application/views/simplefle/index.php:116
#: application/views/statistics/index.php:23
#: application/views/user/edit.php:255 application/views/user/edit.php:278
#: application/views/user/edit.php:301 application/views/user/edit.php:324
#: application/views/user/edit.php:348
@@ -2383,13 +2384,13 @@ msgstr ""
msgid "Statistics"
msgstr ""
#: application/controllers/Statistics.php:209
#: application/controllers/Statistics.php:238
#: application/views/interface_assets/header.php:143
#: application/views/statistics/qsltable.php:5
msgid "QSL Statistics"
msgstr ""
#: application/controllers/Statistics.php:224
#: application/controllers/Statistics.php:253
#: application/views/interface_assets/header.php:141
#: application/views/statistics/antennaanalytics.php:3
msgid "Antenna Analytics"
@@ -2920,82 +2921,82 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:3875
#: application/models/Logbook_model.php:3899
#, php-format
msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED"
msgstr ""
#: application/models/Logbook_model.php:3876
#: application/models/Logbook_model.php:3900
#, php-format
msgid "Check %s for hints about errors in ADIF files."
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid "QSO on"
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
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:4187
#: application/models/Logbook_model.php:4211
msgid "the qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4198
#: application/models/Logbook_model.php:4222
msgid "the qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4259
#: application/models/Logbook_model.php:4283
msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4279
#: application/models/Logbook_model.php:4303
msgid "the lotw_qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4300
#: application/models/Logbook_model.php:4324
msgid "the lotw_qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4581
#: application/models/Logbook_model.php:4605
#: application/views/simplefle/index.php:40
msgid "Duplicate for"
msgstr ""
#: application/models/Logbook_model.php:4642
#: application/models/Logbook_model.php:4666
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4648
#: application/models/Logbook_model.php:4672
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4653
#: application/models/Logbook_model.php:4677
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4656
#: application/models/Logbook_model.php:4680
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4659
#: application/models/Logbook_model.php:4683
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4662
#: application/models/Logbook_model.php:4686
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4665
#: application/models/Logbook_model.php:4689
#: application/views/satellite/index.php:52
#: application/views/view_log/qso.php:287
msgid "unknown"
msgstr ""
#: application/models/Logbook_model.php:5475
#: application/models/Logbook_model.php:5499
#: application/views/activated_gridmap/index.php:110
#: application/views/awards/ffma/index.php:38
#: application/views/awards/gridmaster/index.php:44
@@ -3077,8 +3078,8 @@ msgstr ""
#: application/views/dashboard/index.php:296
#: application/views/dayswithqso/index.php:41
#: application/views/dayswithqso/index.php:81
#: application/views/statistics/index.php:18
#: application/views/statistics/index.php:36
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:38
#: application/views/timeline/index.php:107
#: application/views/visitor/index.php:250
msgid "Year"
@@ -3561,7 +3562,7 @@ msgstr ""
#: application/views/satellite/skedtable.php:7
#: application/views/satellite/skedtable.php:56
#: application/views/sattimers/index.php:38
#: application/views/statistics/index.php:22
#: application/views/statistics/index.php:24
msgid "Satellite"
msgstr ""
@@ -5925,6 +5926,8 @@ msgstr ""
#: application/views/cabrillo/index.php:164
#: application/views/reg1test/index.php:70
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:73
msgid "Operators"
msgstr ""
@@ -6676,7 +6679,7 @@ msgid "VUCC Gridsquare"
msgstr ""
#: application/views/continents/index.php:63
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:20
msgid "# of QSO's worked"
msgstr ""
@@ -8441,8 +8444,8 @@ msgstr ""
#: application/views/interface_assets/header.php:289
#: application/views/notes/add.php:38 application/views/notes/edit.php:39
#: application/views/satellite/index.php:11
#: application/views/statistics/index.php:48
#: application/views/statistics/index.php:102
#: application/views/statistics/index.php:50
#: application/views/statistics/index.php:111
msgid "Satellites"
msgstr ""
@@ -8781,8 +8784,8 @@ msgid "Label types"
msgstr ""
#: application/views/labels/index.php:81
#: application/views/statistics/index.php:68
#: application/views/statistics/index.php:105
#: application/views/statistics/index.php:70
#: application/views/statistics/index.php:114
#: application/views/widgets/qsos.php:3
msgid "QSOs"
msgstr ""
@@ -9716,7 +9719,7 @@ msgid "Category"
msgstr ""
#: application/views/notes/add.php:36 application/views/notes/edit.php:37
#: application/views/qso/index.php:31 application/views/statistics/index.php:44
#: application/views/qso/index.php:31 application/views/statistics/index.php:46
#: application/views/user/edit.php:169
msgid "General"
msgstr ""
@@ -12215,25 +12218,25 @@ msgid "Elevation"
msgstr ""
#: application/views/statistics/index.php:14
#: application/views/statistics/index.php:59
#: application/views/statistics/index.php:61
msgid "Years"
msgstr ""
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:18
msgid "Number of QSOs worked each year"
msgstr ""
#: application/views/statistics/index.php:29
#: application/views/statistics/index.php:31
msgid "Explore the logbook."
msgstr ""
#: application/views/statistics/index.php:33
#: application/views/statistics/index.php:35
#: application/views/timeline/index.php:111
msgid "All Years"
msgstr ""
#: application/views/statistics/index.php:71
#: application/views/statistics/index.php:108
#: application/views/statistics/index.php:76
#: application/views/statistics/index.php:117
msgid "Unique callsigns"
msgstr ""

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2025-01-23 10:57+0000\n"
"POT-Creation-Date: 2025-01-27 13:03+0000\n"
"PO-Revision-Date: 2024-11-19 01:22+0000\n"
"Last-Translator: Fabian Berg <fabian.berg@hb9hil.org>\n"
"Language-Team: Latvian <https://translate.wavelog.org/projects/wavelog/main-"
@@ -570,7 +570,7 @@ msgstr ""
#: application/views/bands/index.php:32
#: application/views/interface_assets/header.php:400
#: application/views/statistics/index.php:16
#: application/views/statistics/index.php:65
#: application/views/statistics/index.php:67
msgid "Bands"
msgstr ""
@@ -717,7 +717,7 @@ msgstr ""
msgid "Update Contest"
msgstr ""
#: application/controllers/Continents.php:25
#: application/controllers/Continents.php:26
#: application/views/awards/dxcc/index.php:83
#: application/views/awards/iota/index.php:57
#: application/views/interface_assets/header.php:163
@@ -1277,8 +1277,8 @@ msgstr ""
#: application/views/simplefle/index.php:157
#: application/views/statistics/antennaanalytics.php:31
#: application/views/statistics/index.php:15
#: application/views/statistics/index.php:20
#: application/views/statistics/index.php:62
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:64
#: application/views/timeline/index.php:19 application/views/user/edit.php:244
#: application/views/user/edit.php:267 application/views/user/edit.php:290
#: application/views/user/edit.php:313 application/views/user/edit.php:337
@@ -1551,7 +1551,7 @@ msgstr ""
#: application/views/simplefle/index.php:156
#: application/views/stationsetup/exportmapoptions.php:31
#: application/views/statistics/antennaanalytics.php:19
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:22
#: application/views/timeline/index.php:7
#: application/views/timeplotter/index.php:14
#: application/views/user/edit.php:242 application/views/user/edit.php:265
@@ -1598,6 +1598,7 @@ msgstr ""
#: application/views/qso/components/previous_contacts.php:90
#: application/views/search/search_result_ajax.php:17
#: application/views/simplefle/index.php:116
#: application/views/statistics/index.php:23
#: application/views/user/edit.php:255 application/views/user/edit.php:278
#: application/views/user/edit.php:301 application/views/user/edit.php:324
#: application/views/user/edit.php:348
@@ -2382,13 +2383,13 @@ msgstr ""
msgid "Statistics"
msgstr ""
#: application/controllers/Statistics.php:209
#: application/controllers/Statistics.php:238
#: application/views/interface_assets/header.php:143
#: application/views/statistics/qsltable.php:5
msgid "QSL Statistics"
msgstr ""
#: application/controllers/Statistics.php:224
#: application/controllers/Statistics.php:253
#: application/views/interface_assets/header.php:141
#: application/views/statistics/antennaanalytics.php:3
msgid "Antenna Analytics"
@@ -2919,82 +2920,82 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:3875
#: application/models/Logbook_model.php:3899
#, php-format
msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED"
msgstr ""
#: application/models/Logbook_model.php:3876
#: application/models/Logbook_model.php:3900
#, php-format
msgid "Check %s for hints about errors in ADIF files."
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid "QSO on"
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
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:4187
#: application/models/Logbook_model.php:4211
msgid "the qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4198
#: application/models/Logbook_model.php:4222
msgid "the qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4259
#: application/models/Logbook_model.php:4283
msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4279
#: application/models/Logbook_model.php:4303
msgid "the lotw_qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4300
#: application/models/Logbook_model.php:4324
msgid "the lotw_qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4581
#: application/models/Logbook_model.php:4605
#: application/views/simplefle/index.php:40
msgid "Duplicate for"
msgstr ""
#: application/models/Logbook_model.php:4642
#: application/models/Logbook_model.php:4666
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4648
#: application/models/Logbook_model.php:4672
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4653
#: application/models/Logbook_model.php:4677
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4656
#: application/models/Logbook_model.php:4680
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4659
#: application/models/Logbook_model.php:4683
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4662
#: application/models/Logbook_model.php:4686
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4665
#: application/models/Logbook_model.php:4689
#: application/views/satellite/index.php:52
#: application/views/view_log/qso.php:287
msgid "unknown"
msgstr ""
#: application/models/Logbook_model.php:5475
#: application/models/Logbook_model.php:5499
#: application/views/activated_gridmap/index.php:110
#: application/views/awards/ffma/index.php:38
#: application/views/awards/gridmaster/index.php:44
@@ -3076,8 +3077,8 @@ msgstr ""
#: application/views/dashboard/index.php:296
#: application/views/dayswithqso/index.php:41
#: application/views/dayswithqso/index.php:81
#: application/views/statistics/index.php:18
#: application/views/statistics/index.php:36
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:38
#: application/views/timeline/index.php:107
#: application/views/visitor/index.php:250
msgid "Year"
@@ -3560,7 +3561,7 @@ msgstr ""
#: application/views/satellite/skedtable.php:7
#: application/views/satellite/skedtable.php:56
#: application/views/sattimers/index.php:38
#: application/views/statistics/index.php:22
#: application/views/statistics/index.php:24
msgid "Satellite"
msgstr ""
@@ -5924,6 +5925,8 @@ msgstr ""
#: application/views/cabrillo/index.php:164
#: application/views/reg1test/index.php:70
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:73
msgid "Operators"
msgstr ""
@@ -6675,7 +6678,7 @@ msgid "VUCC Gridsquare"
msgstr ""
#: application/views/continents/index.php:63
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:20
msgid "# of QSO's worked"
msgstr ""
@@ -8440,8 +8443,8 @@ msgstr ""
#: application/views/interface_assets/header.php:289
#: application/views/notes/add.php:38 application/views/notes/edit.php:39
#: application/views/satellite/index.php:11
#: application/views/statistics/index.php:48
#: application/views/statistics/index.php:102
#: application/views/statistics/index.php:50
#: application/views/statistics/index.php:111
msgid "Satellites"
msgstr ""
@@ -8780,8 +8783,8 @@ msgid "Label types"
msgstr ""
#: application/views/labels/index.php:81
#: application/views/statistics/index.php:68
#: application/views/statistics/index.php:105
#: application/views/statistics/index.php:70
#: application/views/statistics/index.php:114
#: application/views/widgets/qsos.php:3
msgid "QSOs"
msgstr ""
@@ -9715,7 +9718,7 @@ msgid "Category"
msgstr ""
#: application/views/notes/add.php:36 application/views/notes/edit.php:37
#: application/views/qso/index.php:31 application/views/statistics/index.php:44
#: application/views/qso/index.php:31 application/views/statistics/index.php:46
#: application/views/user/edit.php:169
msgid "General"
msgstr ""
@@ -12214,25 +12217,25 @@ msgid "Elevation"
msgstr ""
#: application/views/statistics/index.php:14
#: application/views/statistics/index.php:59
#: application/views/statistics/index.php:61
msgid "Years"
msgstr ""
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:18
msgid "Number of QSOs worked each year"
msgstr ""
#: application/views/statistics/index.php:29
#: application/views/statistics/index.php:31
msgid "Explore the logbook."
msgstr ""
#: application/views/statistics/index.php:33
#: application/views/statistics/index.php:35
#: application/views/timeline/index.php:111
msgid "All Years"
msgstr ""
#: application/views/statistics/index.php:71
#: application/views/statistics/index.php:108
#: application/views/statistics/index.php:76
#: application/views/statistics/index.php:117
msgid "Unique callsigns"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2025-01-23 10:57+0000\n"
"POT-Creation-Date: 2025-01-27 13:03+0000\n"
"PO-Revision-Date: 2025-01-03 01:47+0000\n"
"Last-Translator: Maciej SP2FE <wavelog@sp2fe.eu>\n"
"Language-Team: Polish <https://translate.wavelog.org/projects/wavelog/main-"
@@ -574,7 +574,7 @@ msgstr "Notatki - Kopia zapasowa"
#: application/views/bands/index.php:32
#: application/views/interface_assets/header.php:400
#: application/views/statistics/index.php:16
#: application/views/statistics/index.php:65
#: application/views/statistics/index.php:67
msgid "Bands"
msgstr "Pasma"
@@ -722,7 +722,7 @@ msgstr "Zawody"
msgid "Update Contest"
msgstr "Aktualizacja konkursu"
#: application/controllers/Continents.php:25
#: application/controllers/Continents.php:26
#: application/views/awards/dxcc/index.php:83
#: application/views/awards/iota/index.php:57
#: application/views/interface_assets/header.php:163
@@ -1296,8 +1296,8 @@ msgstr "Clublog"
#: application/views/simplefle/index.php:157
#: application/views/statistics/antennaanalytics.php:31
#: application/views/statistics/index.php:15
#: application/views/statistics/index.php:20
#: application/views/statistics/index.php:62
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:64
#: application/views/timeline/index.php:19 application/views/user/edit.php:244
#: application/views/user/edit.php:267 application/views/user/edit.php:290
#: application/views/user/edit.php:313 application/views/user/edit.php:337
@@ -1570,7 +1570,7 @@ msgstr "Odległość"
#: application/views/simplefle/index.php:156
#: application/views/stationsetup/exportmapoptions.php:31
#: application/views/statistics/antennaanalytics.php:19
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:22
#: application/views/timeline/index.php:7
#: application/views/timeplotter/index.php:14
#: application/views/user/edit.php:242 application/views/user/edit.php:265
@@ -1617,6 +1617,7 @@ msgstr "Częstotliwość"
#: application/views/qso/components/previous_contacts.php:90
#: application/views/search/search_result_ajax.php:17
#: application/views/simplefle/index.php:116
#: application/views/statistics/index.php:23
#: application/views/user/edit.php:255 application/views/user/edit.php:278
#: application/views/user/edit.php:301 application/views/user/edit.php:324
#: application/views/user/edit.php:348
@@ -2418,13 +2419,13 @@ msgstr "Edytuj opcje eksportu mapy"
msgid "Statistics"
msgstr "Statystyki"
#: application/controllers/Statistics.php:209
#: application/controllers/Statistics.php:238
#: application/views/interface_assets/header.php:143
#: application/views/statistics/qsltable.php:5
msgid "QSL Statistics"
msgstr "Statystyki QSL"
#: application/controllers/Statistics.php:224
#: application/controllers/Statistics.php:253
#: application/views/interface_assets/header.php:141
#: application/views/statistics/antennaanalytics.php:3
msgid "Antenna Analytics"
@@ -2971,23 +2972,23 @@ msgstr "HRDlog: Nie znaleziono łączności do przesłania dla stacji o znaku: "
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr "HRDlog: Nie znaleziono profili stacji z danymi logowania HRDlog."
#: application/models/Logbook_model.php:3875
#: application/models/Logbook_model.php:3899
#, php-format
msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED"
msgstr ""
"Nieprawidłowy znak wywoławczy stacji %s podczas importowania QSO z %s dla "
"%s: POMINIĘTO"
#: application/models/Logbook_model.php:3876
#: application/models/Logbook_model.php:3900
#, php-format
msgid "Check %s for hints about errors in ADIF files."
msgstr "Sprawdź %s w celu znalezienia pomocy z błędami w plikach ADIF."
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid "QSO on"
msgstr "QSO włączone"
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid ""
"You tried to import a QSO without any given CALL. This QSO wasn't imported. "
"It's invalid"
@@ -2995,62 +2996,62 @@ msgstr ""
"Spróbowałeś zaimportować QSO bez podanego znaku wywoławczego. To QSO nie "
"zostało zaimportowane, jest nieprawidłowe"
#: application/models/Logbook_model.php:4187
#: application/models/Logbook_model.php:4211
msgid "the qslrdate is invalid (YYYYMMDD)"
msgstr "qslrdate jest nieprawidłowa (RRRRMMDD)"
#: application/models/Logbook_model.php:4198
#: application/models/Logbook_model.php:4222
msgid "the qslsdate is invalid (YYYYMMDD)"
msgstr "qslsdate jest nieprawidłowa (RRRRMMDD)"
#: application/models/Logbook_model.php:4259
#: application/models/Logbook_model.php:4283
msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)"
msgstr "clublog_qso_upload_date jest nieprawidłowy (RRRRMMDD)"
#: application/models/Logbook_model.php:4279
#: application/models/Logbook_model.php:4303
msgid "the lotw_qslrdate is invalid (YYYYMMDD)"
msgstr "lotw_qslrdate jest nieprawidłowy (RRRRMMDD)"
#: application/models/Logbook_model.php:4300
#: application/models/Logbook_model.php:4324
msgid "the lotw_qslsdate is invalid (YYYYMMDD)"
msgstr "lotw_qslsdate jest nieprawidłowy (RRRRMMDD)"
#: application/models/Logbook_model.php:4581
#: application/models/Logbook_model.php:4605
#: application/views/simplefle/index.php:40
msgid "Duplicate for"
msgstr "Duplikat dla"
#: application/models/Logbook_model.php:4642
#: application/models/Logbook_model.php:4666
msgid "QSO could not be matched"
msgstr "QSO nie mogło zostać dopasowane"
#: application/models/Logbook_model.php:4648
#: application/models/Logbook_model.php:4672
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr "potwierdzone przez LoTW/Clublog/eQSL/zawody"
#: application/models/Logbook_model.php:4653
#: application/models/Logbook_model.php:4677
msgid "confirmed by award manager"
msgstr "potwierdzone przez kierownika ds. nagród"
#: application/models/Logbook_model.php:4656
#: application/models/Logbook_model.php:4680
msgid "confirmed by cross-check of DCL data"
msgstr "potwierdzone przez weryfikację danych DCL"
#: application/models/Logbook_model.php:4659
#: application/models/Logbook_model.php:4683
msgid "confirmation pending"
msgstr "oczekiwanie na potwierdzenie"
#: application/models/Logbook_model.php:4662
#: application/models/Logbook_model.php:4686
msgid "unconfirmed"
msgstr "niepotwierdzone"
#: application/models/Logbook_model.php:4665
#: application/models/Logbook_model.php:4689
#: application/views/satellite/index.php:52
#: application/views/view_log/qso.php:287
msgid "unknown"
msgstr "nieznany"
#: application/models/Logbook_model.php:5475
#: application/models/Logbook_model.php:5499
#: application/views/activated_gridmap/index.php:110
#: application/views/awards/ffma/index.php:38
#: application/views/awards/gridmaster/index.php:44
@@ -3132,8 +3133,8 @@ msgstr "Suma przepracowanych WAJA"
#: application/views/dashboard/index.php:296
#: application/views/dayswithqso/index.php:41
#: application/views/dayswithqso/index.php:81
#: application/views/statistics/index.php:18
#: application/views/statistics/index.php:36
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:38
#: application/views/timeline/index.php:107
#: application/views/visitor/index.php:250
msgid "Year"
@@ -3616,7 +3617,7 @@ msgstr "Pokaż"
#: application/views/satellite/skedtable.php:7
#: application/views/satellite/skedtable.php:56
#: application/views/sattimers/index.php:38
#: application/views/statistics/index.php:22
#: application/views/statistics/index.php:24
msgid "Satellite"
msgstr "Satelita"
@@ -6085,6 +6086,8 @@ msgstr ""
#: application/views/cabrillo/index.php:164
#: application/views/reg1test/index.php:70
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:73
msgid "Operators"
msgstr ""
@@ -6836,7 +6839,7 @@ msgid "VUCC Gridsquare"
msgstr ""
#: application/views/continents/index.php:63
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:20
msgid "# of QSO's worked"
msgstr ""
@@ -8621,8 +8624,8 @@ msgstr "Ustawienia globalne"
#: application/views/interface_assets/header.php:289
#: application/views/notes/add.php:38 application/views/notes/edit.php:39
#: application/views/satellite/index.php:11
#: application/views/statistics/index.php:48
#: application/views/statistics/index.php:102
#: application/views/statistics/index.php:50
#: application/views/statistics/index.php:111
msgid "Satellites"
msgstr "Satelity"
@@ -8961,8 +8964,8 @@ msgid "Label types"
msgstr ""
#: application/views/labels/index.php:81
#: application/views/statistics/index.php:68
#: application/views/statistics/index.php:105
#: application/views/statistics/index.php:70
#: application/views/statistics/index.php:114
#: application/views/widgets/qsos.php:3
msgid "QSOs"
msgstr ""
@@ -9901,7 +9904,7 @@ msgid "Category"
msgstr "Kategoria"
#: application/views/notes/add.php:36 application/views/notes/edit.php:37
#: application/views/qso/index.php:31 application/views/statistics/index.php:44
#: application/views/qso/index.php:31 application/views/statistics/index.php:46
#: application/views/user/edit.php:169
msgid "General"
msgstr "Główne"
@@ -12408,25 +12411,25 @@ msgid "Elevation"
msgstr ""
#: application/views/statistics/index.php:14
#: application/views/statistics/index.php:59
#: application/views/statistics/index.php:61
msgid "Years"
msgstr ""
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:18
msgid "Number of QSOs worked each year"
msgstr "Liczba łączności wykonanych w każdym roku"
#: application/views/statistics/index.php:29
#: application/views/statistics/index.php:31
msgid "Explore the logbook."
msgstr ""
#: application/views/statistics/index.php:33
#: application/views/statistics/index.php:35
#: application/views/timeline/index.php:111
msgid "All Years"
msgstr ""
#: application/views/statistics/index.php:71
#: application/views/statistics/index.php:108
#: application/views/statistics/index.php:76
#: application/views/statistics/index.php:117
msgid "Unique callsigns"
msgstr "Unikalne znaki wywoławcze"

View File

@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2025-01-23 10:57+0000\n"
"POT-Creation-Date: 2025-01-27 13:03+0000\n"
"PO-Revision-Date: 2025-01-23 16:03+0000\n"
"Last-Translator: \"Francisco (F4VSE)\" <kikosgc@users.noreply.github.com>\n"
"Language-Team: Portuguese (Portugal) <https://translate.wavelog.org/projects/"
@@ -572,7 +572,7 @@ msgstr "Notas - Backup"
#: application/views/bands/index.php:32
#: application/views/interface_assets/header.php:400
#: application/views/statistics/index.php:16
#: application/views/statistics/index.php:65
#: application/views/statistics/index.php:67
msgid "Bands"
msgstr "Bandas"
@@ -726,7 +726,7 @@ msgstr "Concursos"
msgid "Update Contest"
msgstr "Actualizar Concurso"
#: application/controllers/Continents.php:25
#: application/controllers/Continents.php:26
#: application/views/awards/dxcc/index.php:83
#: application/views/awards/iota/index.php:57
#: application/views/interface_assets/header.php:163
@@ -1300,8 +1300,8 @@ msgstr "Clublog"
#: application/views/simplefle/index.php:157
#: application/views/statistics/antennaanalytics.php:31
#: application/views/statistics/index.php:15
#: application/views/statistics/index.php:20
#: application/views/statistics/index.php:62
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:64
#: application/views/timeline/index.php:19 application/views/user/edit.php:244
#: application/views/user/edit.php:267 application/views/user/edit.php:290
#: application/views/user/edit.php:313 application/views/user/edit.php:337
@@ -1574,7 +1574,7 @@ msgstr "Distância"
#: application/views/simplefle/index.php:156
#: application/views/stationsetup/exportmapoptions.php:31
#: application/views/statistics/antennaanalytics.php:19
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:22
#: application/views/timeline/index.php:7
#: application/views/timeplotter/index.php:14
#: application/views/user/edit.php:242 application/views/user/edit.php:265
@@ -1621,6 +1621,7 @@ msgstr "Frequência"
#: application/views/qso/components/previous_contacts.php:90
#: application/views/search/search_result_ajax.php:17
#: application/views/simplefle/index.php:116
#: application/views/statistics/index.php:23
#: application/views/user/edit.php:255 application/views/user/edit.php:278
#: application/views/user/edit.php:301 application/views/user/edit.php:324
#: application/views/user/edit.php:348
@@ -2424,13 +2425,13 @@ msgstr "Editar opções do mapa de exportação"
msgid "Statistics"
msgstr "Estatísticas"
#: application/controllers/Statistics.php:209
#: application/controllers/Statistics.php:238
#: application/views/interface_assets/header.php:143
#: application/views/statistics/qsltable.php:5
msgid "QSL Statistics"
msgstr "Estatísticas de QSL"
#: application/controllers/Statistics.php:224
#: application/controllers/Statistics.php:253
#: application/views/interface_assets/header.php:141
#: application/views/statistics/antennaanalytics.php:3
msgid "Antenna Analytics"
@@ -2997,22 +2998,22 @@ 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:3875
#: application/models/Logbook_model.php:3899
#, 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:3876
#: application/models/Logbook_model.php:3900
#, 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:3888
#: application/models/Logbook_model.php:3912
msgid "QSO on"
msgstr "Contacto em"
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid ""
"You tried to import a QSO without any given CALL. This QSO wasn't imported. "
"It's invalid"
@@ -3020,62 +3021,62 @@ msgstr ""
"Tentou importar um contacto sem nenhum CALL dado. Este contacto não foi "
"importado. É inválido"
#: application/models/Logbook_model.php:4187
#: application/models/Logbook_model.php:4211
msgid "the qslrdate is invalid (YYYYMMDD)"
msgstr "o qslrdate está inválido (AAAAMMDD)"
#: application/models/Logbook_model.php:4198
#: application/models/Logbook_model.php:4222
msgid "the qslsdate is invalid (YYYYMMDD)"
msgstr "o qslsdate está inválido (AAAAMMDD)"
#: application/models/Logbook_model.php:4259
#: application/models/Logbook_model.php:4283
msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)"
msgstr "o clublog_qso_upload_date está inválido (AAAAMMDD)"
#: application/models/Logbook_model.php:4279
#: application/models/Logbook_model.php:4303
msgid "the lotw_qslrdate is invalid (YYYYMMDD)"
msgstr "o lotw_qslrdate está inválido (AAAAMMDD)"
#: application/models/Logbook_model.php:4300
#: application/models/Logbook_model.php:4324
msgid "the lotw_qslsdate is invalid (YYYYMMDD)"
msgstr "o lotw_qslsdate está inválido (AAAAMMDD)"
#: application/models/Logbook_model.php:4581
#: application/models/Logbook_model.php:4605
#: application/views/simplefle/index.php:40
msgid "Duplicate for"
msgstr "Duplicado para"
#: application/models/Logbook_model.php:4642
#: application/models/Logbook_model.php:4666
msgid "QSO could not be matched"
msgstr "Não há correspondência de contactos"
#: application/models/Logbook_model.php:4648
#: application/models/Logbook_model.php:4672
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr "confirmado por LoTW/Clublog/eQSL/Contest"
#: application/models/Logbook_model.php:4653
#: application/models/Logbook_model.php:4677
msgid "confirmed by award manager"
msgstr "confirmado pelo gestor do diploma"
#: application/models/Logbook_model.php:4656
#: application/models/Logbook_model.php:4680
msgid "confirmed by cross-check of DCL data"
msgstr "confirmado pelo controlo cruzado dos dados da DCL"
#: application/models/Logbook_model.php:4659
#: application/models/Logbook_model.php:4683
msgid "confirmation pending"
msgstr "confirmação pendente"
#: application/models/Logbook_model.php:4662
#: application/models/Logbook_model.php:4686
msgid "unconfirmed"
msgstr "não confirmado"
#: application/models/Logbook_model.php:4665
#: application/models/Logbook_model.php:4689
#: application/views/satellite/index.php:52
#: application/views/view_log/qso.php:287
msgid "unknown"
msgstr "desconhecido"
#: application/models/Logbook_model.php:5475
#: application/models/Logbook_model.php:5499
#: application/views/activated_gridmap/index.php:110
#: application/views/awards/ffma/index.php:38
#: application/views/awards/gridmaster/index.php:44
@@ -3157,8 +3158,8 @@ msgstr "Número acumulado de WAJA contactados"
#: application/views/dashboard/index.php:296
#: application/views/dayswithqso/index.php:41
#: application/views/dayswithqso/index.php:81
#: application/views/statistics/index.php:18
#: application/views/statistics/index.php:36
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:38
#: application/views/timeline/index.php:107
#: application/views/visitor/index.php:250
msgid "Year"
@@ -3641,7 +3642,7 @@ msgstr "Mostrar"
#: application/views/satellite/skedtable.php:7
#: application/views/satellite/skedtable.php:56
#: application/views/sattimers/index.php:38
#: application/views/statistics/index.php:22
#: application/views/statistics/index.php:24
msgid "Satellite"
msgstr "Satélite"
@@ -6246,6 +6247,8 @@ msgstr "Categoria Overlay"
#: application/views/cabrillo/index.php:164
#: application/views/reg1test/index.php:70
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:73
msgid "Operators"
msgstr "Operadores"
@@ -7022,7 +7025,7 @@ msgid "VUCC Gridsquare"
msgstr "Gridsquare VUCC"
#: application/views/continents/index.php:63
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:20
msgid "# of QSO's worked"
msgstr "# of contactos feitos"
@@ -8916,8 +8919,8 @@ msgstr "Opções Globais"
#: application/views/interface_assets/header.php:289
#: application/views/notes/add.php:38 application/views/notes/edit.php:39
#: application/views/satellite/index.php:11
#: application/views/statistics/index.php:48
#: application/views/statistics/index.php:102
#: application/views/statistics/index.php:50
#: application/views/statistics/index.php:111
msgid "Satellites"
msgstr "Satélites"
@@ -9263,8 +9266,8 @@ msgid "Label types"
msgstr "Tipos de etiquetas"
#: application/views/labels/index.php:81
#: application/views/statistics/index.php:68
#: application/views/statistics/index.php:105
#: application/views/statistics/index.php:70
#: application/views/statistics/index.php:114
#: application/views/widgets/qsos.php:3
msgid "QSOs"
msgstr "Contactos"
@@ -10215,7 +10218,7 @@ msgid "Category"
msgstr "Categoria"
#: application/views/notes/add.php:36 application/views/notes/edit.php:37
#: application/views/qso/index.php:31 application/views/statistics/index.php:44
#: application/views/qso/index.php:31 application/views/statistics/index.php:46
#: application/views/user/edit.php:169
msgid "General"
msgstr "Geral"
@@ -12912,25 +12915,25 @@ msgid "Elevation"
msgstr "Elevação"
#: application/views/statistics/index.php:14
#: application/views/statistics/index.php:59
#: application/views/statistics/index.php:61
msgid "Years"
msgstr "Anos"
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:18
msgid "Number of QSOs worked each year"
msgstr "Número de contactos feitos em cada ano"
#: application/views/statistics/index.php:29
#: application/views/statistics/index.php:31
msgid "Explore the logbook."
msgstr "Explorar o logbook."
#: application/views/statistics/index.php:33
#: application/views/statistics/index.php:35
#: application/views/timeline/index.php:111
msgid "All Years"
msgstr "Todos os anos"
#: application/views/statistics/index.php:71
#: application/views/statistics/index.php:108
#: application/views/statistics/index.php:76
#: application/views/statistics/index.php:117
msgid "Unique callsigns"
msgstr "Indicativos únicos"

View File

@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2025-01-23 10:57+0000\n"
"POT-Creation-Date: 2025-01-27 13:03+0000\n"
"PO-Revision-Date: 2025-01-22 19:50+0000\n"
"Last-Translator: Michael Skolsky <r1blh@yandex.ru>\n"
"Language-Team: Russian <https://translate.wavelog.org/projects/wavelog/main-"
@@ -572,7 +572,7 @@ msgstr "Резервное копирование заметок"
#: application/views/bands/index.php:32
#: application/views/interface_assets/header.php:400
#: application/views/statistics/index.php:16
#: application/views/statistics/index.php:65
#: application/views/statistics/index.php:67
msgid "Bands"
msgstr "Диапазоны"
@@ -724,7 +724,7 @@ msgstr "Контесты"
msgid "Update Contest"
msgstr "Обновить контест"
#: application/controllers/Continents.php:25
#: application/controllers/Continents.php:26
#: application/views/awards/dxcc/index.php:83
#: application/views/awards/iota/index.php:57
#: application/views/interface_assets/header.php:163
@@ -1299,8 +1299,8 @@ msgstr "Clublog"
#: application/views/simplefle/index.php:157
#: application/views/statistics/antennaanalytics.php:31
#: application/views/statistics/index.php:15
#: application/views/statistics/index.php:20
#: application/views/statistics/index.php:62
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:64
#: application/views/timeline/index.php:19 application/views/user/edit.php:244
#: application/views/user/edit.php:267 application/views/user/edit.php:290
#: application/views/user/edit.php:313 application/views/user/edit.php:337
@@ -1573,7 +1573,7 @@ msgstr "Дистанция"
#: application/views/simplefle/index.php:156
#: application/views/stationsetup/exportmapoptions.php:31
#: application/views/statistics/antennaanalytics.php:19
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:22
#: application/views/timeline/index.php:7
#: application/views/timeplotter/index.php:14
#: application/views/user/edit.php:242 application/views/user/edit.php:265
@@ -1620,6 +1620,7 @@ msgstr "Частота"
#: application/views/qso/components/previous_contacts.php:90
#: application/views/search/search_result_ajax.php:17
#: application/views/simplefle/index.php:116
#: application/views/statistics/index.php:23
#: application/views/user/edit.php:255 application/views/user/edit.php:278
#: application/views/user/edit.php:301 application/views/user/edit.php:324
#: application/views/user/edit.php:348
@@ -2419,13 +2420,13 @@ msgstr "Редактировать настройка экспорта карт
msgid "Statistics"
msgstr "Статистика"
#: application/controllers/Statistics.php:209
#: application/controllers/Statistics.php:238
#: application/views/interface_assets/header.php:143
#: application/views/statistics/qsltable.php:5
msgid "QSL Statistics"
msgstr "Статистика QSL"
#: application/controllers/Statistics.php:224
#: application/controllers/Statistics.php:253
#: application/views/interface_assets/header.php:141
#: application/views/statistics/antennaanalytics.php:3
msgid "Antenna Analytics"
@@ -2988,21 +2989,21 @@ msgstr "HRDlog: на найдены QSO для загруки для позыв
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr "HRDlog: не найдены профили QTH с данными входя на HRDlog."
#: application/models/Logbook_model.php:3875
#: application/models/Logbook_model.php:3899
#, 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:3876
#: application/models/Logbook_model.php:3900
#, php-format
msgid "Check %s for hints about errors in ADIF files."
msgstr "Проверьте %s на наличие подсказок об ошибках в файлах ADIF."
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid "QSO on"
msgstr "начало QSO"
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid ""
"You tried to import a QSO without any given CALL. This QSO wasn't imported. "
"It's invalid"
@@ -3010,62 +3011,62 @@ msgstr ""
"Вы пытались импортировать QSO без указанного позывного. Это QSO не было "
"импортировано. Оно недействительно"
#: application/models/Logbook_model.php:4187
#: application/models/Logbook_model.php:4211
msgid "the qslrdate is invalid (YYYYMMDD)"
msgstr "дата получения QSL недействительна (ГГГГММДД)"
#: application/models/Logbook_model.php:4198
#: application/models/Logbook_model.php:4222
msgid "the qslsdate is invalid (YYYYMMDD)"
msgstr "дата отправки QSL недействительна (ГГГГММДД)"
#: application/models/Logbook_model.php:4259
#: application/models/Logbook_model.php:4283
msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)"
msgstr "дата загрузки QSO в Clublog недействительна (ГГГГММДД)"
#: application/models/Logbook_model.php:4279
#: application/models/Logbook_model.php:4303
msgid "the lotw_qslrdate is invalid (YYYYMMDD)"
msgstr "дата получения LoTW QSL недействительна (ГГГГММДД)"
#: application/models/Logbook_model.php:4300
#: application/models/Logbook_model.php:4324
msgid "the lotw_qslsdate is invalid (YYYYMMDD)"
msgstr "дата отправки LoTW QSL недействительна (ГГГГММДД)"
#: application/models/Logbook_model.php:4581
#: application/models/Logbook_model.php:4605
#: application/views/simplefle/index.php:40
msgid "Duplicate for"
msgstr "Дубликат для"
#: application/models/Logbook_model.php:4642
#: application/models/Logbook_model.php:4666
msgid "QSO could not be matched"
msgstr "QSO не может быть сопоставлено"
#: application/models/Logbook_model.php:4648
#: application/models/Logbook_model.php:4672
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr "подтверждено LoTW/Clublog/eQSL/Contest"
#: application/models/Logbook_model.php:4653
#: application/models/Logbook_model.php:4677
msgid "confirmed by award manager"
msgstr "подтверждено менеджером диплома"
#: application/models/Logbook_model.php:4656
#: application/models/Logbook_model.php:4680
msgid "confirmed by cross-check of DCL data"
msgstr "подтверждено кросс-проверкой с данными DCL"
#: application/models/Logbook_model.php:4659
#: application/models/Logbook_model.php:4683
msgid "confirmation pending"
msgstr "подтверждение ожидается"
#: application/models/Logbook_model.php:4662
#: application/models/Logbook_model.php:4686
msgid "unconfirmed"
msgstr "не подтверждено"
#: application/models/Logbook_model.php:4665
#: application/models/Logbook_model.php:4689
#: application/views/satellite/index.php:52
#: application/views/view_log/qso.php:287
msgid "unknown"
msgstr "неизвестно"
#: application/models/Logbook_model.php:5475
#: application/models/Logbook_model.php:5499
#: application/views/activated_gridmap/index.php:110
#: application/views/awards/ffma/index.php:38
#: application/views/awards/gridmaster/index.php:44
@@ -3147,8 +3148,8 @@ msgstr "Накопленное количество отработанных WAJ
#: application/views/dashboard/index.php:296
#: application/views/dayswithqso/index.php:41
#: application/views/dayswithqso/index.php:81
#: application/views/statistics/index.php:18
#: application/views/statistics/index.php:36
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:38
#: application/views/timeline/index.php:107
#: application/views/visitor/index.php:250
msgid "Year"
@@ -3631,7 +3632,7 @@ msgstr "Показать"
#: application/views/satellite/skedtable.php:7
#: application/views/satellite/skedtable.php:56
#: application/views/sattimers/index.php:38
#: application/views/statistics/index.php:22
#: application/views/statistics/index.php:24
msgid "Satellite"
msgstr "Спутник"
@@ -6233,6 +6234,8 @@ msgstr "Категория оверлей"
#: application/views/cabrillo/index.php:164
#: application/views/reg1test/index.php:70
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:73
msgid "Operators"
msgstr "Операторы"
@@ -7020,7 +7023,7 @@ msgid "VUCC Gridsquare"
msgstr "Квадрат VUCC"
#: application/views/continents/index.php:63
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:20
msgid "# of QSO's worked"
msgstr "# QSO проведено"
@@ -8910,8 +8913,8 @@ msgstr "Общие настройки"
#: application/views/interface_assets/header.php:289
#: application/views/notes/add.php:38 application/views/notes/edit.php:39
#: application/views/satellite/index.php:11
#: application/views/statistics/index.php:48
#: application/views/statistics/index.php:102
#: application/views/statistics/index.php:50
#: application/views/statistics/index.php:111
msgid "Satellites"
msgstr "Спутники"
@@ -9256,8 +9259,8 @@ msgid "Label types"
msgstr "Тип наклеек"
#: application/views/labels/index.php:81
#: application/views/statistics/index.php:68
#: application/views/statistics/index.php:105
#: application/views/statistics/index.php:70
#: application/views/statistics/index.php:114
#: application/views/widgets/qsos.php:3
msgid "QSOs"
msgstr "QSO"
@@ -10210,7 +10213,7 @@ msgid "Category"
msgstr "Категория"
#: application/views/notes/add.php:36 application/views/notes/edit.php:37
#: application/views/qso/index.php:31 application/views/statistics/index.php:44
#: application/views/qso/index.php:31 application/views/statistics/index.php:46
#: application/views/user/edit.php:169
msgid "General"
msgstr "Общее"
@@ -12876,25 +12879,25 @@ msgid "Elevation"
msgstr "Возвышение"
#: application/views/statistics/index.php:14
#: application/views/statistics/index.php:59
#: application/views/statistics/index.php:61
msgid "Years"
msgstr "по годам"
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:18
msgid "Number of QSOs worked each year"
msgstr "Количество QSO проведённых в каждом году"
#: application/views/statistics/index.php:29
#: application/views/statistics/index.php:31
msgid "Explore the logbook."
msgstr "Статистика журнала."
#: application/views/statistics/index.php:33
#: application/views/statistics/index.php:35
#: application/views/timeline/index.php:111
msgid "All Years"
msgstr "За все годы"
#: application/views/statistics/index.php:71
#: application/views/statistics/index.php:108
#: application/views/statistics/index.php:76
#: application/views/statistics/index.php:117
msgid "Unique callsigns"
msgstr "по уникальным позывным"

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2025-01-23 10:57+0000\n"
"POT-Creation-Date: 2025-01-27 13:03+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -568,7 +568,7 @@ msgstr ""
#: application/views/bands/index.php:32
#: application/views/interface_assets/header.php:400
#: application/views/statistics/index.php:16
#: application/views/statistics/index.php:65
#: application/views/statistics/index.php:67
msgid "Bands"
msgstr ""
@@ -715,7 +715,7 @@ msgstr ""
msgid "Update Contest"
msgstr ""
#: application/controllers/Continents.php:25
#: application/controllers/Continents.php:26
#: application/views/awards/dxcc/index.php:83
#: application/views/awards/iota/index.php:57
#: application/views/interface_assets/header.php:163
@@ -1275,8 +1275,8 @@ msgstr ""
#: application/views/simplefle/index.php:157
#: application/views/statistics/antennaanalytics.php:31
#: application/views/statistics/index.php:15
#: application/views/statistics/index.php:20
#: application/views/statistics/index.php:62
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:64
#: application/views/timeline/index.php:19 application/views/user/edit.php:244
#: application/views/user/edit.php:267 application/views/user/edit.php:290
#: application/views/user/edit.php:313 application/views/user/edit.php:337
@@ -1549,7 +1549,7 @@ msgstr ""
#: application/views/simplefle/index.php:156
#: application/views/stationsetup/exportmapoptions.php:31
#: application/views/statistics/antennaanalytics.php:19
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:22
#: application/views/timeline/index.php:7
#: application/views/timeplotter/index.php:14
#: application/views/user/edit.php:242 application/views/user/edit.php:265
@@ -1596,6 +1596,7 @@ msgstr ""
#: application/views/qso/components/previous_contacts.php:90
#: application/views/search/search_result_ajax.php:17
#: application/views/simplefle/index.php:116
#: application/views/statistics/index.php:23
#: application/views/user/edit.php:255 application/views/user/edit.php:278
#: application/views/user/edit.php:301 application/views/user/edit.php:324
#: application/views/user/edit.php:348
@@ -2380,13 +2381,13 @@ msgstr ""
msgid "Statistics"
msgstr ""
#: application/controllers/Statistics.php:209
#: application/controllers/Statistics.php:238
#: application/views/interface_assets/header.php:143
#: application/views/statistics/qsltable.php:5
msgid "QSL Statistics"
msgstr ""
#: application/controllers/Statistics.php:224
#: application/controllers/Statistics.php:253
#: application/views/interface_assets/header.php:141
#: application/views/statistics/antennaanalytics.php:3
msgid "Antenna Analytics"
@@ -2917,82 +2918,82 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:3875
#: application/models/Logbook_model.php:3899
#, php-format
msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED"
msgstr ""
#: application/models/Logbook_model.php:3876
#: application/models/Logbook_model.php:3900
#, php-format
msgid "Check %s for hints about errors in ADIF files."
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid "QSO on"
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
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:4187
#: application/models/Logbook_model.php:4211
msgid "the qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4198
#: application/models/Logbook_model.php:4222
msgid "the qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4259
#: application/models/Logbook_model.php:4283
msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4279
#: application/models/Logbook_model.php:4303
msgid "the lotw_qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4300
#: application/models/Logbook_model.php:4324
msgid "the lotw_qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4581
#: application/models/Logbook_model.php:4605
#: application/views/simplefle/index.php:40
msgid "Duplicate for"
msgstr ""
#: application/models/Logbook_model.php:4642
#: application/models/Logbook_model.php:4666
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4648
#: application/models/Logbook_model.php:4672
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4653
#: application/models/Logbook_model.php:4677
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4656
#: application/models/Logbook_model.php:4680
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4659
#: application/models/Logbook_model.php:4683
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4662
#: application/models/Logbook_model.php:4686
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4665
#: application/models/Logbook_model.php:4689
#: application/views/satellite/index.php:52
#: application/views/view_log/qso.php:287
msgid "unknown"
msgstr ""
#: application/models/Logbook_model.php:5475
#: application/models/Logbook_model.php:5499
#: application/views/activated_gridmap/index.php:110
#: application/views/awards/ffma/index.php:38
#: application/views/awards/gridmaster/index.php:44
@@ -3074,8 +3075,8 @@ msgstr ""
#: application/views/dashboard/index.php:296
#: application/views/dayswithqso/index.php:41
#: application/views/dayswithqso/index.php:81
#: application/views/statistics/index.php:18
#: application/views/statistics/index.php:36
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:38
#: application/views/timeline/index.php:107
#: application/views/visitor/index.php:250
msgid "Year"
@@ -3558,7 +3559,7 @@ msgstr ""
#: application/views/satellite/skedtable.php:7
#: application/views/satellite/skedtable.php:56
#: application/views/sattimers/index.php:38
#: application/views/statistics/index.php:22
#: application/views/statistics/index.php:24
msgid "Satellite"
msgstr ""
@@ -5922,6 +5923,8 @@ msgstr ""
#: application/views/cabrillo/index.php:164
#: application/views/reg1test/index.php:70
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:73
msgid "Operators"
msgstr ""
@@ -6673,7 +6676,7 @@ msgid "VUCC Gridsquare"
msgstr ""
#: application/views/continents/index.php:63
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:20
msgid "# of QSO's worked"
msgstr ""
@@ -8438,8 +8441,8 @@ msgstr ""
#: application/views/interface_assets/header.php:289
#: application/views/notes/add.php:38 application/views/notes/edit.php:39
#: application/views/satellite/index.php:11
#: application/views/statistics/index.php:48
#: application/views/statistics/index.php:102
#: application/views/statistics/index.php:50
#: application/views/statistics/index.php:111
msgid "Satellites"
msgstr ""
@@ -8778,8 +8781,8 @@ msgid "Label types"
msgstr ""
#: application/views/labels/index.php:81
#: application/views/statistics/index.php:68
#: application/views/statistics/index.php:105
#: application/views/statistics/index.php:70
#: application/views/statistics/index.php:114
#: application/views/widgets/qsos.php:3
msgid "QSOs"
msgstr ""
@@ -9713,7 +9716,7 @@ msgid "Category"
msgstr ""
#: application/views/notes/add.php:36 application/views/notes/edit.php:37
#: application/views/qso/index.php:31 application/views/statistics/index.php:44
#: application/views/qso/index.php:31 application/views/statistics/index.php:46
#: application/views/user/edit.php:169
msgid "General"
msgstr ""
@@ -12212,25 +12215,25 @@ msgid "Elevation"
msgstr ""
#: application/views/statistics/index.php:14
#: application/views/statistics/index.php:59
#: application/views/statistics/index.php:61
msgid "Years"
msgstr ""
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:18
msgid "Number of QSOs worked each year"
msgstr ""
#: application/views/statistics/index.php:29
#: application/views/statistics/index.php:31
msgid "Explore the logbook."
msgstr ""
#: application/views/statistics/index.php:33
#: application/views/statistics/index.php:35
#: application/views/timeline/index.php:111
msgid "All Years"
msgstr ""
#: application/views/statistics/index.php:71
#: application/views/statistics/index.php:108
#: application/views/statistics/index.php:76
#: application/views/statistics/index.php:117
msgid "Unique callsigns"
msgstr ""

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2025-01-23 10:57+0000\n"
"POT-Creation-Date: 2025-01-27 13:03+0000\n"
"PO-Revision-Date: 2024-08-17 10:49+0000\n"
"Last-Translator: Anonymous <noreply@weblate.org>\n"
"Language-Team: Albanian <https://translate.wavelog.org/projects/wavelog/main-"
@@ -569,7 +569,7 @@ msgstr ""
#: application/views/bands/index.php:32
#: application/views/interface_assets/header.php:400
#: application/views/statistics/index.php:16
#: application/views/statistics/index.php:65
#: application/views/statistics/index.php:67
msgid "Bands"
msgstr ""
@@ -716,7 +716,7 @@ msgstr ""
msgid "Update Contest"
msgstr ""
#: application/controllers/Continents.php:25
#: application/controllers/Continents.php:26
#: application/views/awards/dxcc/index.php:83
#: application/views/awards/iota/index.php:57
#: application/views/interface_assets/header.php:163
@@ -1276,8 +1276,8 @@ msgstr ""
#: application/views/simplefle/index.php:157
#: application/views/statistics/antennaanalytics.php:31
#: application/views/statistics/index.php:15
#: application/views/statistics/index.php:20
#: application/views/statistics/index.php:62
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:64
#: application/views/timeline/index.php:19 application/views/user/edit.php:244
#: application/views/user/edit.php:267 application/views/user/edit.php:290
#: application/views/user/edit.php:313 application/views/user/edit.php:337
@@ -1550,7 +1550,7 @@ msgstr ""
#: application/views/simplefle/index.php:156
#: application/views/stationsetup/exportmapoptions.php:31
#: application/views/statistics/antennaanalytics.php:19
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:22
#: application/views/timeline/index.php:7
#: application/views/timeplotter/index.php:14
#: application/views/user/edit.php:242 application/views/user/edit.php:265
@@ -1597,6 +1597,7 @@ msgstr ""
#: application/views/qso/components/previous_contacts.php:90
#: application/views/search/search_result_ajax.php:17
#: application/views/simplefle/index.php:116
#: application/views/statistics/index.php:23
#: application/views/user/edit.php:255 application/views/user/edit.php:278
#: application/views/user/edit.php:301 application/views/user/edit.php:324
#: application/views/user/edit.php:348
@@ -2381,13 +2382,13 @@ msgstr ""
msgid "Statistics"
msgstr ""
#: application/controllers/Statistics.php:209
#: application/controllers/Statistics.php:238
#: application/views/interface_assets/header.php:143
#: application/views/statistics/qsltable.php:5
msgid "QSL Statistics"
msgstr ""
#: application/controllers/Statistics.php:224
#: application/controllers/Statistics.php:253
#: application/views/interface_assets/header.php:141
#: application/views/statistics/antennaanalytics.php:3
msgid "Antenna Analytics"
@@ -2918,82 +2919,82 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:3875
#: application/models/Logbook_model.php:3899
#, php-format
msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED"
msgstr ""
#: application/models/Logbook_model.php:3876
#: application/models/Logbook_model.php:3900
#, php-format
msgid "Check %s for hints about errors in ADIF files."
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid "QSO on"
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
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:4187
#: application/models/Logbook_model.php:4211
msgid "the qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4198
#: application/models/Logbook_model.php:4222
msgid "the qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4259
#: application/models/Logbook_model.php:4283
msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4279
#: application/models/Logbook_model.php:4303
msgid "the lotw_qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4300
#: application/models/Logbook_model.php:4324
msgid "the lotw_qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4581
#: application/models/Logbook_model.php:4605
#: application/views/simplefle/index.php:40
msgid "Duplicate for"
msgstr ""
#: application/models/Logbook_model.php:4642
#: application/models/Logbook_model.php:4666
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4648
#: application/models/Logbook_model.php:4672
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4653
#: application/models/Logbook_model.php:4677
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4656
#: application/models/Logbook_model.php:4680
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4659
#: application/models/Logbook_model.php:4683
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4662
#: application/models/Logbook_model.php:4686
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4665
#: application/models/Logbook_model.php:4689
#: application/views/satellite/index.php:52
#: application/views/view_log/qso.php:287
msgid "unknown"
msgstr ""
#: application/models/Logbook_model.php:5475
#: application/models/Logbook_model.php:5499
#: application/views/activated_gridmap/index.php:110
#: application/views/awards/ffma/index.php:38
#: application/views/awards/gridmaster/index.php:44
@@ -3075,8 +3076,8 @@ msgstr ""
#: application/views/dashboard/index.php:296
#: application/views/dayswithqso/index.php:41
#: application/views/dayswithqso/index.php:81
#: application/views/statistics/index.php:18
#: application/views/statistics/index.php:36
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:38
#: application/views/timeline/index.php:107
#: application/views/visitor/index.php:250
msgid "Year"
@@ -3559,7 +3560,7 @@ msgstr ""
#: application/views/satellite/skedtable.php:7
#: application/views/satellite/skedtable.php:56
#: application/views/sattimers/index.php:38
#: application/views/statistics/index.php:22
#: application/views/statistics/index.php:24
msgid "Satellite"
msgstr ""
@@ -5923,6 +5924,8 @@ msgstr ""
#: application/views/cabrillo/index.php:164
#: application/views/reg1test/index.php:70
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:73
msgid "Operators"
msgstr ""
@@ -6674,7 +6677,7 @@ msgid "VUCC Gridsquare"
msgstr ""
#: application/views/continents/index.php:63
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:20
msgid "# of QSO's worked"
msgstr ""
@@ -8439,8 +8442,8 @@ msgstr ""
#: application/views/interface_assets/header.php:289
#: application/views/notes/add.php:38 application/views/notes/edit.php:39
#: application/views/satellite/index.php:11
#: application/views/statistics/index.php:48
#: application/views/statistics/index.php:102
#: application/views/statistics/index.php:50
#: application/views/statistics/index.php:111
msgid "Satellites"
msgstr ""
@@ -8779,8 +8782,8 @@ msgid "Label types"
msgstr ""
#: application/views/labels/index.php:81
#: application/views/statistics/index.php:68
#: application/views/statistics/index.php:105
#: application/views/statistics/index.php:70
#: application/views/statistics/index.php:114
#: application/views/widgets/qsos.php:3
msgid "QSOs"
msgstr ""
@@ -9714,7 +9717,7 @@ msgid "Category"
msgstr ""
#: application/views/notes/add.php:36 application/views/notes/edit.php:37
#: application/views/qso/index.php:31 application/views/statistics/index.php:44
#: application/views/qso/index.php:31 application/views/statistics/index.php:46
#: application/views/user/edit.php:169
msgid "General"
msgstr ""
@@ -12213,25 +12216,25 @@ msgid "Elevation"
msgstr ""
#: application/views/statistics/index.php:14
#: application/views/statistics/index.php:59
#: application/views/statistics/index.php:61
msgid "Years"
msgstr ""
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:18
msgid "Number of QSOs worked each year"
msgstr ""
#: application/views/statistics/index.php:29
#: application/views/statistics/index.php:31
msgid "Explore the logbook."
msgstr ""
#: application/views/statistics/index.php:33
#: application/views/statistics/index.php:35
#: application/views/timeline/index.php:111
msgid "All Years"
msgstr ""
#: application/views/statistics/index.php:71
#: application/views/statistics/index.php:108
#: application/views/statistics/index.php:76
#: application/views/statistics/index.php:117
msgid "Unique callsigns"
msgstr ""

View File

@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2025-01-23 10:57+0000\n"
"POT-Creation-Date: 2025-01-27 13:03+0000\n"
"PO-Revision-Date: 2024-12-10 11:09+0000\n"
"Last-Translator: Dragan Đorđević <4o4a.dragan@gmail.com>\n"
"Language-Team: Serbian <https://translate.wavelog.org/projects/wavelog/main-"
@@ -572,7 +572,7 @@ msgstr "Napomene - Rezervna kopija"
#: application/views/bands/index.php:32
#: application/views/interface_assets/header.php:400
#: application/views/statistics/index.php:16
#: application/views/statistics/index.php:65
#: application/views/statistics/index.php:67
msgid "Bands"
msgstr "Opsezi"
@@ -719,7 +719,7 @@ msgstr "Takmičenja"
msgid "Update Contest"
msgstr "Ažuriraj takmičenje"
#: application/controllers/Continents.php:25
#: application/controllers/Continents.php:26
#: application/views/awards/dxcc/index.php:83
#: application/views/awards/iota/index.php:57
#: application/views/interface_assets/header.php:163
@@ -1294,8 +1294,8 @@ msgstr "Clublog"
#: application/views/simplefle/index.php:157
#: application/views/statistics/antennaanalytics.php:31
#: application/views/statistics/index.php:15
#: application/views/statistics/index.php:20
#: application/views/statistics/index.php:62
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:64
#: application/views/timeline/index.php:19 application/views/user/edit.php:244
#: application/views/user/edit.php:267 application/views/user/edit.php:290
#: application/views/user/edit.php:313 application/views/user/edit.php:337
@@ -1568,7 +1568,7 @@ msgstr "Udaljenost"
#: application/views/simplefle/index.php:156
#: application/views/stationsetup/exportmapoptions.php:31
#: application/views/statistics/antennaanalytics.php:19
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:22
#: application/views/timeline/index.php:7
#: application/views/timeplotter/index.php:14
#: application/views/user/edit.php:242 application/views/user/edit.php:265
@@ -1615,6 +1615,7 @@ msgstr "Frekvencija"
#: application/views/qso/components/previous_contacts.php:90
#: application/views/search/search_result_ajax.php:17
#: application/views/simplefle/index.php:116
#: application/views/statistics/index.php:23
#: application/views/user/edit.php:255 application/views/user/edit.php:278
#: application/views/user/edit.php:301 application/views/user/edit.php:324
#: application/views/user/edit.php:348
@@ -2415,13 +2416,13 @@ msgstr "Uredite opcije za izvoz mape"
msgid "Statistics"
msgstr "Statistika"
#: application/controllers/Statistics.php:209
#: application/controllers/Statistics.php:238
#: application/views/interface_assets/header.php:143
#: application/views/statistics/qsltable.php:5
msgid "QSL Statistics"
msgstr "Statistika QSL karata"
#: application/controllers/Statistics.php:224
#: application/controllers/Statistics.php:253
#: application/views/interface_assets/header.php:141
#: application/views/statistics/antennaanalytics.php:3
msgid "Antenna Analytics"
@@ -2969,21 +2970,21 @@ msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
"HRDlog: Nisu pronađeni profili stanice sa odgovarajućim HRDlog akreditivima."
#: application/models/Logbook_model.php:3875
#: application/models/Logbook_model.php:3899
#, php-format
msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED"
msgstr "Prilikom uvoza QSO-ova, pogrešan je znak %s sa %s za %s: PRESKOČENO"
#: application/models/Logbook_model.php:3876
#: application/models/Logbook_model.php:3900
#, php-format
msgid "Check %s for hints about errors in ADIF files."
msgstr "Provjeri %s za savjete oko grešaka u ADIF poljima."
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid "QSO on"
msgstr "Start QSO"
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid ""
"You tried to import a QSO without any given CALL. This QSO wasn't imported. "
"It's invalid"
@@ -2991,62 +2992,62 @@ msgstr ""
"Pokušali ste uvesti QSO bez bilo kojeg znaka. Ovaj QSO nije uvežen, "
"neispravan je"
#: application/models/Logbook_model.php:4187
#: application/models/Logbook_model.php:4211
msgid "the qslrdate is invalid (YYYYMMDD)"
msgstr "datum prijema QSL je neispravan (YYYYMMDD)"
#: application/models/Logbook_model.php:4198
#: application/models/Logbook_model.php:4222
msgid "the qslsdate is invalid (YYYYMMDD)"
msgstr "datum slanja QSL je neispravan (YYYYMMDD)"
#: application/models/Logbook_model.php:4259
#: application/models/Logbook_model.php:4283
msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)"
msgstr "Datum učitavanja veza na Clublog je neispravan (YYYYMMDD)"
#: application/models/Logbook_model.php:4279
#: application/models/Logbook_model.php:4303
msgid "the lotw_qslrdate is invalid (YYYYMMDD)"
msgstr "datum prijama QSL sa LoTW je neispravan (YYYYMMDD)"
#: application/models/Logbook_model.php:4300
#: application/models/Logbook_model.php:4324
msgid "the lotw_qslsdate is invalid (YYYYMMDD)"
msgstr "datum slanja QSL na LoTW je neispravan (YYYYMMDD)"
#: application/models/Logbook_model.php:4581
#: application/models/Logbook_model.php:4605
#: application/views/simplefle/index.php:40
msgid "Duplicate for"
msgstr "Duplikat za"
#: application/models/Logbook_model.php:4642
#: application/models/Logbook_model.php:4666
msgid "QSO could not be matched"
msgstr "QSO se ne poklapa"
#: application/models/Logbook_model.php:4648
#: application/models/Logbook_model.php:4672
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr "potvrđeno preko LoTW/Clublog/eQSL/Kontest"
#: application/models/Logbook_model.php:4653
#: application/models/Logbook_model.php:4677
msgid "confirmed by award manager"
msgstr "potvrđeno od strane menadžera za diplome"
#: application/models/Logbook_model.php:4656
#: application/models/Logbook_model.php:4680
msgid "confirmed by cross-check of DCL data"
msgstr "potvrđeno unakrsnom proverom DCL podataka"
#: application/models/Logbook_model.php:4659
#: application/models/Logbook_model.php:4683
msgid "confirmation pending"
msgstr "čeka potvrđivanje"
#: application/models/Logbook_model.php:4662
#: application/models/Logbook_model.php:4686
msgid "unconfirmed"
msgstr "nepotvrđeno"
#: application/models/Logbook_model.php:4665
#: application/models/Logbook_model.php:4689
#: application/views/satellite/index.php:52
#: application/views/view_log/qso.php:287
msgid "unknown"
msgstr "nepoznato"
#: application/models/Logbook_model.php:5475
#: application/models/Logbook_model.php:5499
#: application/views/activated_gridmap/index.php:110
#: application/views/awards/ffma/index.php:38
#: application/views/awards/gridmaster/index.php:44
@@ -3128,8 +3129,8 @@ msgstr "Ukupan broj rađenih WAJA"
#: application/views/dashboard/index.php:296
#: application/views/dayswithqso/index.php:41
#: application/views/dayswithqso/index.php:81
#: application/views/statistics/index.php:18
#: application/views/statistics/index.php:36
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:38
#: application/views/timeline/index.php:107
#: application/views/visitor/index.php:250
msgid "Year"
@@ -3612,7 +3613,7 @@ msgstr "Prikaži"
#: application/views/satellite/skedtable.php:7
#: application/views/satellite/skedtable.php:56
#: application/views/sattimers/index.php:38
#: application/views/statistics/index.php:22
#: application/views/statistics/index.php:24
msgid "Satellite"
msgstr "Satelit"
@@ -6170,6 +6171,8 @@ msgstr "Overlay kategorija"
#: application/views/cabrillo/index.php:164
#: application/views/reg1test/index.php:70
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:73
msgid "Operators"
msgstr "Operatori"
@@ -6932,7 +6935,7 @@ msgid "VUCC Gridsquare"
msgstr "VUCC polje"
#: application/views/continents/index.php:63
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:20
msgid "# of QSO's worked"
msgstr "Broj rađenih veza"
@@ -8801,8 +8804,8 @@ msgstr "Globalne opcije"
#: application/views/interface_assets/header.php:289
#: application/views/notes/add.php:38 application/views/notes/edit.php:39
#: application/views/satellite/index.php:11
#: application/views/statistics/index.php:48
#: application/views/statistics/index.php:102
#: application/views/statistics/index.php:50
#: application/views/statistics/index.php:111
msgid "Satellites"
msgstr "Sateliti"
@@ -9148,8 +9151,8 @@ msgid "Label types"
msgstr "Vrste etiketa"
#: application/views/labels/index.php:81
#: application/views/statistics/index.php:68
#: application/views/statistics/index.php:105
#: application/views/statistics/index.php:70
#: application/views/statistics/index.php:114
#: application/views/widgets/qsos.php:3
msgid "QSOs"
msgstr "QSOi"
@@ -10102,7 +10105,7 @@ msgid "Category"
msgstr "Kategorija"
#: application/views/notes/add.php:36 application/views/notes/edit.php:37
#: application/views/qso/index.php:31 application/views/statistics/index.php:44
#: application/views/qso/index.php:31 application/views/statistics/index.php:46
#: application/views/user/edit.php:169
msgid "General"
msgstr "Opšte"
@@ -12747,25 +12750,25 @@ msgid "Elevation"
msgstr "Elevacija"
#: application/views/statistics/index.php:14
#: application/views/statistics/index.php:59
#: application/views/statistics/index.php:61
msgid "Years"
msgstr "Godine"
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:18
msgid "Number of QSOs worked each year"
msgstr "Broj održanih veza svake godine"
#: application/views/statistics/index.php:29
#: application/views/statistics/index.php:31
msgid "Explore the logbook."
msgstr "Istražite dnevnik."
#: application/views/statistics/index.php:33
#: application/views/statistics/index.php:35
#: application/views/timeline/index.php:111
msgid "All Years"
msgstr "Sve godine"
#: application/views/statistics/index.php:71
#: application/views/statistics/index.php:108
#: application/views/statistics/index.php:76
#: application/views/statistics/index.php:117
msgid "Unique callsigns"
msgstr "Jedinstvenih pozivnih znakova"

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2025-01-23 10:57+0000\n"
"POT-Creation-Date: 2025-01-27 13:03+0000\n"
"PO-Revision-Date: 2024-11-19 01:22+0000\n"
"Last-Translator: Fabian Berg <fabian.berg@hb9hil.org>\n"
"Language-Team: Swedish <https://translate.wavelog.org/projects/wavelog/main-"
@@ -569,7 +569,7 @@ msgstr ""
#: application/views/bands/index.php:32
#: application/views/interface_assets/header.php:400
#: application/views/statistics/index.php:16
#: application/views/statistics/index.php:65
#: application/views/statistics/index.php:67
msgid "Bands"
msgstr ""
@@ -716,7 +716,7 @@ msgstr "Tävlingar"
msgid "Update Contest"
msgstr ""
#: application/controllers/Continents.php:25
#: application/controllers/Continents.php:26
#: application/views/awards/dxcc/index.php:83
#: application/views/awards/iota/index.php:57
#: application/views/interface_assets/header.php:163
@@ -1278,8 +1278,8 @@ msgstr ""
#: application/views/simplefle/index.php:157
#: application/views/statistics/antennaanalytics.php:31
#: application/views/statistics/index.php:15
#: application/views/statistics/index.php:20
#: application/views/statistics/index.php:62
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:64
#: application/views/timeline/index.php:19 application/views/user/edit.php:244
#: application/views/user/edit.php:267 application/views/user/edit.php:290
#: application/views/user/edit.php:313 application/views/user/edit.php:337
@@ -1552,7 +1552,7 @@ msgstr ""
#: application/views/simplefle/index.php:156
#: application/views/stationsetup/exportmapoptions.php:31
#: application/views/statistics/antennaanalytics.php:19
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:22
#: application/views/timeline/index.php:7
#: application/views/timeplotter/index.php:14
#: application/views/user/edit.php:242 application/views/user/edit.php:265
@@ -1599,6 +1599,7 @@ msgstr "Frekvens"
#: application/views/qso/components/previous_contacts.php:90
#: application/views/search/search_result_ajax.php:17
#: application/views/simplefle/index.php:116
#: application/views/statistics/index.php:23
#: application/views/user/edit.php:255 application/views/user/edit.php:278
#: application/views/user/edit.php:301 application/views/user/edit.php:324
#: application/views/user/edit.php:348
@@ -2383,13 +2384,13 @@ msgstr ""
msgid "Statistics"
msgstr "Statistik"
#: application/controllers/Statistics.php:209
#: application/controllers/Statistics.php:238
#: application/views/interface_assets/header.php:143
#: application/views/statistics/qsltable.php:5
msgid "QSL Statistics"
msgstr ""
#: application/controllers/Statistics.php:224
#: application/controllers/Statistics.php:253
#: application/views/interface_assets/header.php:141
#: application/views/statistics/antennaanalytics.php:3
msgid "Antenna Analytics"
@@ -2920,82 +2921,82 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:3875
#: application/models/Logbook_model.php:3899
#, php-format
msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED"
msgstr ""
#: application/models/Logbook_model.php:3876
#: application/models/Logbook_model.php:3900
#, php-format
msgid "Check %s for hints about errors in ADIF files."
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid "QSO on"
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
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:4187
#: application/models/Logbook_model.php:4211
msgid "the qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4198
#: application/models/Logbook_model.php:4222
msgid "the qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4259
#: application/models/Logbook_model.php:4283
msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4279
#: application/models/Logbook_model.php:4303
msgid "the lotw_qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4300
#: application/models/Logbook_model.php:4324
msgid "the lotw_qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4581
#: application/models/Logbook_model.php:4605
#: application/views/simplefle/index.php:40
msgid "Duplicate for"
msgstr ""
#: application/models/Logbook_model.php:4642
#: application/models/Logbook_model.php:4666
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4648
#: application/models/Logbook_model.php:4672
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4653
#: application/models/Logbook_model.php:4677
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4656
#: application/models/Logbook_model.php:4680
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4659
#: application/models/Logbook_model.php:4683
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4662
#: application/models/Logbook_model.php:4686
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4665
#: application/models/Logbook_model.php:4689
#: application/views/satellite/index.php:52
#: application/views/view_log/qso.php:287
msgid "unknown"
msgstr ""
#: application/models/Logbook_model.php:5475
#: application/models/Logbook_model.php:5499
#: application/views/activated_gridmap/index.php:110
#: application/views/awards/ffma/index.php:38
#: application/views/awards/gridmaster/index.php:44
@@ -3077,8 +3078,8 @@ msgstr ""
#: application/views/dashboard/index.php:296
#: application/views/dayswithqso/index.php:41
#: application/views/dayswithqso/index.php:81
#: application/views/statistics/index.php:18
#: application/views/statistics/index.php:36
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:38
#: application/views/timeline/index.php:107
#: application/views/visitor/index.php:250
msgid "Year"
@@ -3561,7 +3562,7 @@ msgstr ""
#: application/views/satellite/skedtable.php:7
#: application/views/satellite/skedtable.php:56
#: application/views/sattimers/index.php:38
#: application/views/statistics/index.php:22
#: application/views/statistics/index.php:24
msgid "Satellite"
msgstr "Satellit"
@@ -5925,6 +5926,8 @@ msgstr ""
#: application/views/cabrillo/index.php:164
#: application/views/reg1test/index.php:70
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:73
msgid "Operators"
msgstr ""
@@ -6676,7 +6679,7 @@ msgid "VUCC Gridsquare"
msgstr ""
#: application/views/continents/index.php:63
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:20
msgid "# of QSO's worked"
msgstr ""
@@ -8441,8 +8444,8 @@ msgstr "Globala alternativ"
#: application/views/interface_assets/header.php:289
#: application/views/notes/add.php:38 application/views/notes/edit.php:39
#: application/views/satellite/index.php:11
#: application/views/statistics/index.php:48
#: application/views/statistics/index.php:102
#: application/views/statistics/index.php:50
#: application/views/statistics/index.php:111
msgid "Satellites"
msgstr ""
@@ -8781,8 +8784,8 @@ msgid "Label types"
msgstr ""
#: application/views/labels/index.php:81
#: application/views/statistics/index.php:68
#: application/views/statistics/index.php:105
#: application/views/statistics/index.php:70
#: application/views/statistics/index.php:114
#: application/views/widgets/qsos.php:3
msgid "QSOs"
msgstr ""
@@ -9721,7 +9724,7 @@ msgid "Category"
msgstr "Kategori"
#: application/views/notes/add.php:36 application/views/notes/edit.php:37
#: application/views/qso/index.php:31 application/views/statistics/index.php:44
#: application/views/qso/index.php:31 application/views/statistics/index.php:46
#: application/views/user/edit.php:169
msgid "General"
msgstr "Allmänt"
@@ -12228,25 +12231,25 @@ msgid "Elevation"
msgstr ""
#: application/views/statistics/index.php:14
#: application/views/statistics/index.php:59
#: application/views/statistics/index.php:61
msgid "Years"
msgstr "år"
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:18
msgid "Number of QSOs worked each year"
msgstr ""
#: application/views/statistics/index.php:29
#: application/views/statistics/index.php:31
msgid "Explore the logbook."
msgstr "Utforska loggboken."
#: application/views/statistics/index.php:33
#: application/views/statistics/index.php:35
#: application/views/timeline/index.php:111
msgid "All Years"
msgstr ""
#: application/views/statistics/index.php:71
#: application/views/statistics/index.php:108
#: application/views/statistics/index.php:76
#: application/views/statistics/index.php:117
msgid "Unique callsigns"
msgstr "Unika callsigns"

View File

@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2025-01-23 10:57+0000\n"
"POT-Creation-Date: 2025-01-27 13:03+0000\n"
"PO-Revision-Date: 2024-12-23 15:29+0000\n"
"Last-Translator: \"Fatih ÖNDER (TB1TFO)\" <fatih05onder@gmail.com>\n"
"Language-Team: Turkish <https://translate.wavelog.org/projects/wavelog/main-"
@@ -572,7 +572,7 @@ msgstr "Notlar - Yedekleme"
#: application/views/bands/index.php:32
#: application/views/interface_assets/header.php:400
#: application/views/statistics/index.php:16
#: application/views/statistics/index.php:65
#: application/views/statistics/index.php:67
msgid "Bands"
msgstr "Bantlar"
@@ -719,7 +719,7 @@ msgstr "Yarışmalar"
msgid "Update Contest"
msgstr "Yarışmayı Güncelleyin"
#: application/controllers/Continents.php:25
#: application/controllers/Continents.php:26
#: application/views/awards/dxcc/index.php:83
#: application/views/awards/iota/index.php:57
#: application/views/interface_assets/header.php:163
@@ -1287,8 +1287,8 @@ msgstr ""
#: application/views/simplefle/index.php:157
#: application/views/statistics/antennaanalytics.php:31
#: application/views/statistics/index.php:15
#: application/views/statistics/index.php:20
#: application/views/statistics/index.php:62
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:64
#: application/views/timeline/index.php:19 application/views/user/edit.php:244
#: application/views/user/edit.php:267 application/views/user/edit.php:290
#: application/views/user/edit.php:313 application/views/user/edit.php:337
@@ -1561,7 +1561,7 @@ msgstr ""
#: application/views/simplefle/index.php:156
#: application/views/stationsetup/exportmapoptions.php:31
#: application/views/statistics/antennaanalytics.php:19
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:22
#: application/views/timeline/index.php:7
#: application/views/timeplotter/index.php:14
#: application/views/user/edit.php:242 application/views/user/edit.php:265
@@ -1608,6 +1608,7 @@ msgstr "Frekans"
#: application/views/qso/components/previous_contacts.php:90
#: application/views/search/search_result_ajax.php:17
#: application/views/simplefle/index.php:116
#: application/views/statistics/index.php:23
#: application/views/user/edit.php:255 application/views/user/edit.php:278
#: application/views/user/edit.php:301 application/views/user/edit.php:324
#: application/views/user/edit.php:348
@@ -2392,13 +2393,13 @@ msgstr ""
msgid "Statistics"
msgstr ""
#: application/controllers/Statistics.php:209
#: application/controllers/Statistics.php:238
#: application/views/interface_assets/header.php:143
#: application/views/statistics/qsltable.php:5
msgid "QSL Statistics"
msgstr ""
#: application/controllers/Statistics.php:224
#: application/controllers/Statistics.php:253
#: application/views/interface_assets/header.php:141
#: application/views/statistics/antennaanalytics.php:3
msgid "Antenna Analytics"
@@ -2929,82 +2930,82 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:3875
#: application/models/Logbook_model.php:3899
#, php-format
msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED"
msgstr ""
#: application/models/Logbook_model.php:3876
#: application/models/Logbook_model.php:3900
#, php-format
msgid "Check %s for hints about errors in ADIF files."
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid "QSO on"
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
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:4187
#: application/models/Logbook_model.php:4211
msgid "the qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4198
#: application/models/Logbook_model.php:4222
msgid "the qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4259
#: application/models/Logbook_model.php:4283
msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4279
#: application/models/Logbook_model.php:4303
msgid "the lotw_qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4300
#: application/models/Logbook_model.php:4324
msgid "the lotw_qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4581
#: application/models/Logbook_model.php:4605
#: application/views/simplefle/index.php:40
msgid "Duplicate for"
msgstr ""
#: application/models/Logbook_model.php:4642
#: application/models/Logbook_model.php:4666
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4648
#: application/models/Logbook_model.php:4672
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4653
#: application/models/Logbook_model.php:4677
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4656
#: application/models/Logbook_model.php:4680
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4659
#: application/models/Logbook_model.php:4683
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4662
#: application/models/Logbook_model.php:4686
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4665
#: application/models/Logbook_model.php:4689
#: application/views/satellite/index.php:52
#: application/views/view_log/qso.php:287
msgid "unknown"
msgstr ""
#: application/models/Logbook_model.php:5475
#: application/models/Logbook_model.php:5499
#: application/views/activated_gridmap/index.php:110
#: application/views/awards/ffma/index.php:38
#: application/views/awards/gridmaster/index.php:44
@@ -3086,8 +3087,8 @@ msgstr ""
#: application/views/dashboard/index.php:296
#: application/views/dayswithqso/index.php:41
#: application/views/dayswithqso/index.php:81
#: application/views/statistics/index.php:18
#: application/views/statistics/index.php:36
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:38
#: application/views/timeline/index.php:107
#: application/views/visitor/index.php:250
msgid "Year"
@@ -3570,7 +3571,7 @@ msgstr ""
#: application/views/satellite/skedtable.php:7
#: application/views/satellite/skedtable.php:56
#: application/views/sattimers/index.php:38
#: application/views/statistics/index.php:22
#: application/views/statistics/index.php:24
msgid "Satellite"
msgstr "Uydu"
@@ -5942,6 +5943,8 @@ msgstr ""
#: application/views/cabrillo/index.php:164
#: application/views/reg1test/index.php:70
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:73
msgid "Operators"
msgstr ""
@@ -6693,7 +6696,7 @@ msgid "VUCC Gridsquare"
msgstr ""
#: application/views/continents/index.php:63
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:20
msgid "# of QSO's worked"
msgstr ""
@@ -8458,8 +8461,8 @@ msgstr ""
#: application/views/interface_assets/header.php:289
#: application/views/notes/add.php:38 application/views/notes/edit.php:39
#: application/views/satellite/index.php:11
#: application/views/statistics/index.php:48
#: application/views/statistics/index.php:102
#: application/views/statistics/index.php:50
#: application/views/statistics/index.php:111
msgid "Satellites"
msgstr ""
@@ -8798,8 +8801,8 @@ msgid "Label types"
msgstr ""
#: application/views/labels/index.php:81
#: application/views/statistics/index.php:68
#: application/views/statistics/index.php:105
#: application/views/statistics/index.php:70
#: application/views/statistics/index.php:114
#: application/views/widgets/qsos.php:3
msgid "QSOs"
msgstr ""
@@ -9738,7 +9741,7 @@ msgid "Category"
msgstr "Sınıf"
#: application/views/notes/add.php:36 application/views/notes/edit.php:37
#: application/views/qso/index.php:31 application/views/statistics/index.php:44
#: application/views/qso/index.php:31 application/views/statistics/index.php:46
#: application/views/user/edit.php:169
msgid "General"
msgstr "Genel"
@@ -12240,25 +12243,25 @@ msgid "Elevation"
msgstr ""
#: application/views/statistics/index.php:14
#: application/views/statistics/index.php:59
#: application/views/statistics/index.php:61
msgid "Years"
msgstr ""
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:18
msgid "Number of QSOs worked each year"
msgstr ""
#: application/views/statistics/index.php:29
#: application/views/statistics/index.php:31
msgid "Explore the logbook."
msgstr ""
#: application/views/statistics/index.php:33
#: application/views/statistics/index.php:35
#: application/views/timeline/index.php:111
msgid "All Years"
msgstr ""
#: application/views/statistics/index.php:71
#: application/views/statistics/index.php:108
#: application/views/statistics/index.php:76
#: application/views/statistics/index.php:117
msgid "Unique callsigns"
msgstr ""

View File

@@ -12,9 +12,9 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2025-01-23 10:57+0000\n"
"PO-Revision-Date: 2025-01-24 15:27+0000\n"
"Last-Translator: hellofinch <543933756@qq.com>\n"
"POT-Creation-Date: 2025-01-27 13:03+0000\n"
"PO-Revision-Date: 2025-01-27 12:34+0000\n"
"Last-Translator: Karuru <karuru@aerodefense.co.uk>\n"
"Language-Team: Chinese (Simplified Han script) <https://translate.wavelog."
"org/projects/wavelog/main-translation/zh_Hans/>\n"
"Language: zh_CN\n"
@@ -575,7 +575,7 @@ msgstr "笔记 - 备份"
#: application/views/bands/index.php:32
#: application/views/interface_assets/header.php:400
#: application/views/statistics/index.php:16
#: application/views/statistics/index.php:65
#: application/views/statistics/index.php:67
msgid "Bands"
msgstr "波段"
@@ -723,7 +723,7 @@ msgstr "比赛"
msgid "Update Contest"
msgstr "更新竞赛"
#: application/controllers/Continents.php:25
#: application/controllers/Continents.php:26
#: application/views/awards/dxcc/index.php:83
#: application/views/awards/iota/index.php:57
#: application/views/interface_assets/header.php:163
@@ -1288,8 +1288,8 @@ msgstr "Clublog"
#: application/views/simplefle/index.php:157
#: application/views/statistics/antennaanalytics.php:31
#: application/views/statistics/index.php:15
#: application/views/statistics/index.php:20
#: application/views/statistics/index.php:62
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:64
#: application/views/timeline/index.php:19 application/views/user/edit.php:244
#: application/views/user/edit.php:267 application/views/user/edit.php:290
#: application/views/user/edit.php:313 application/views/user/edit.php:337
@@ -1562,7 +1562,7 @@ msgstr "距离"
#: application/views/simplefle/index.php:156
#: application/views/stationsetup/exportmapoptions.php:31
#: application/views/statistics/antennaanalytics.php:19
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:22
#: application/views/timeline/index.php:7
#: application/views/timeplotter/index.php:14
#: application/views/user/edit.php:242 application/views/user/edit.php:265
@@ -1609,6 +1609,7 @@ msgstr "频率"
#: application/views/qso/components/previous_contacts.php:90
#: application/views/search/search_result_ajax.php:17
#: application/views/simplefle/index.php:116
#: application/views/statistics/index.php:23
#: application/views/user/edit.php:255 application/views/user/edit.php:278
#: application/views/user/edit.php:301 application/views/user/edit.php:324
#: application/views/user/edit.php:348
@@ -2392,13 +2393,13 @@ msgstr "编辑导出地图选项"
msgid "Statistics"
msgstr "统计"
#: application/controllers/Statistics.php:209
#: application/controllers/Statistics.php:238
#: application/views/interface_assets/header.php:143
#: application/views/statistics/qsltable.php:5
msgid "QSL Statistics"
msgstr "QSL 统计信息"
#: application/controllers/Statistics.php:224
#: application/controllers/Statistics.php:253
#: application/views/interface_assets/header.php:141
#: application/views/statistics/antennaanalytics.php:3
msgid "Antenna Analytics"
@@ -2933,82 +2934,82 @@ msgstr "HRDlog无 QSO 可供上传,台站呼号为: "
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr "HRDlog无台站配置信息。"
#: application/models/Logbook_model.php:3875
#: application/models/Logbook_model.php:3899
#, 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:3876
#: application/models/Logbook_model.php:3900
#, php-format
msgid "Check %s for hints about errors in ADIF files."
msgstr "请查看 ADIF 错误提示 %s。"
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid "QSO on"
msgstr "QSO 时间"
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
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:4187
#: application/models/Logbook_model.php:4211
msgid "the qslrdate is invalid (YYYYMMDD)"
msgstr "qslrdate 字段错误YYYYMMDD"
#: application/models/Logbook_model.php:4198
#: application/models/Logbook_model.php:4222
msgid "the qslsdate is invalid (YYYYMMDD)"
msgstr "qslsdate 字段错误YYYYMMDD"
#: application/models/Logbook_model.php:4259
#: application/models/Logbook_model.php:4283
msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)"
msgstr "clublog_qso_upload_date 字段错误( YYYYMMDD"
#: application/models/Logbook_model.php:4279
#: application/models/Logbook_model.php:4303
msgid "the lotw_qslrdate is invalid (YYYYMMDD)"
msgstr "the lotw_qslrdate 字段错误YYYYMMDD"
#: application/models/Logbook_model.php:4300
#: application/models/Logbook_model.php:4324
msgid "the lotw_qslsdate is invalid (YYYYMMDD)"
msgstr "lotw_qslsdate 字段错误YYYYMMDD"
#: application/models/Logbook_model.php:4581
#: application/models/Logbook_model.php:4605
#: application/views/simplefle/index.php:40
msgid "Duplicate for"
msgstr "内容重复"
#: application/models/Logbook_model.php:4642
#: application/models/Logbook_model.php:4666
msgid "QSO could not be matched"
msgstr "QSO 无法匹配"
#: application/models/Logbook_model.php:4648
#: application/models/Logbook_model.php:4672
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr "已经通过 LoTW/Clublog/eQSL/竞赛 确认"
#: application/models/Logbook_model.php:4653
#: application/models/Logbook_model.php:4677
msgid "confirmed by award manager"
msgstr "已经通过奖项管理员确认"
#: application/models/Logbook_model.php:4656
#: application/models/Logbook_model.php:4680
msgid "confirmed by cross-check of DCL data"
msgstr "已经通过 DCL 数据交叉检查确认"
#: application/models/Logbook_model.php:4659
#: application/models/Logbook_model.php:4683
msgid "confirmation pending"
msgstr "等待确认"
#: application/models/Logbook_model.php:4662
#: application/models/Logbook_model.php:4686
msgid "unconfirmed"
msgstr "未确认"
#: application/models/Logbook_model.php:4665
#: application/models/Logbook_model.php:4689
#: application/views/satellite/index.php:52
#: application/views/view_log/qso.php:287
msgid "unknown"
msgstr "未知"
#: application/models/Logbook_model.php:5475
#: application/models/Logbook_model.php:5499
#: application/views/activated_gridmap/index.php:110
#: application/views/awards/ffma/index.php:38
#: application/views/awards/gridmaster/index.php:44
@@ -3090,8 +3091,8 @@ msgstr "累计通联的 WAJA 数量"
#: application/views/dashboard/index.php:296
#: application/views/dayswithqso/index.php:41
#: application/views/dayswithqso/index.php:81
#: application/views/statistics/index.php:18
#: application/views/statistics/index.php:36
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:38
#: application/views/timeline/index.php:107
#: application/views/visitor/index.php:250
msgid "Year"
@@ -3574,7 +3575,7 @@ msgstr "显示"
#: application/views/satellite/skedtable.php:7
#: application/views/satellite/skedtable.php:56
#: application/views/sattimers/index.php:38
#: application/views/statistics/index.php:22
#: application/views/statistics/index.php:24
msgid "Satellite"
msgstr "卫星"
@@ -6044,6 +6045,8 @@ msgstr "Overlay类型"
#: application/views/cabrillo/index.php:164
#: application/views/reg1test/index.php:70
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:73
msgid "Operators"
msgstr "操作员"
@@ -6800,7 +6803,7 @@ msgid "VUCC Gridsquare"
msgstr "VUCC 网格"
#: application/views/continents/index.php:63
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:20
msgid "# of QSO's worked"
msgstr "通联的 QSO 数量"
@@ -8622,8 +8625,8 @@ msgstr "全局选项"
#: application/views/interface_assets/header.php:289
#: application/views/notes/add.php:38 application/views/notes/edit.php:39
#: application/views/satellite/index.php:11
#: application/views/statistics/index.php:48
#: application/views/statistics/index.php:102
#: application/views/statistics/index.php:50
#: application/views/statistics/index.php:111
msgid "Satellites"
msgstr "卫星"
@@ -8962,8 +8965,8 @@ msgid "Label types"
msgstr "标签类型"
#: application/views/labels/index.php:81
#: application/views/statistics/index.php:68
#: application/views/statistics/index.php:105
#: application/views/statistics/index.php:70
#: application/views/statistics/index.php:114
#: application/views/widgets/qsos.php:3
msgid "QSOs"
msgstr "QSO"
@@ -9075,7 +9078,7 @@ msgstr "卫星模式"
#: application/views/logbookadvanced/edit.php:88
msgid "Band TX"
msgstr ""
msgstr "发送频段"
#: application/views/logbookadvanced/edit.php:101
msgid "Band RX"
@@ -9900,7 +9903,7 @@ msgid "Category"
msgstr "分类"
#: application/views/notes/add.php:36 application/views/notes/edit.php:37
#: application/views/qso/index.php:31 application/views/statistics/index.php:44
#: application/views/qso/index.php:31 application/views/statistics/index.php:46
#: application/views/user/edit.php:169
msgid "General"
msgstr "通用"
@@ -12446,25 +12449,25 @@ msgid "Elevation"
msgstr "仰角"
#: application/views/statistics/index.php:14
#: application/views/statistics/index.php:59
#: application/views/statistics/index.php:61
msgid "Years"
msgstr "年"
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:18
msgid "Number of QSOs worked each year"
msgstr "每年通联的 QSO 数量"
#: application/views/statistics/index.php:29
#: application/views/statistics/index.php:31
msgid "Explore the logbook."
msgstr "查看日志。"
#: application/views/statistics/index.php:33
#: application/views/statistics/index.php:35
#: application/views/timeline/index.php:111
msgid "All Years"
msgstr "所有"
#: application/views/statistics/index.php:71
#: application/views/statistics/index.php:108
#: application/views/statistics/index.php:76
#: application/views/statistics/index.php:117
msgid "Unique callsigns"
msgstr "呼号"

View File

@@ -25,8 +25,10 @@ class Migration_tag_1_8_3 extends CI_Migration {
$this->db->where('option_value', 'custom_text');
$this->db->update('options', array('option_value' => 'both'));
$this->db->query("INSERT INTO satellite (name, exportname, orbit) SELECT distinct 'MESAT1','', 'LEO' FROM satellite WHERE NOT EXISTS (SELECT 1 FROM satellite WHERE name = 'MESAT1');");
$this->db->query("INSERT INTO satellitemode (name, satelliteid, uplink_mode, uplink_freq, downlink_mode, downlink_freq) SELECT 'V/U', id, 'LSB', '145925000', 'USB', '435825000' FROM satellite WHERE name = 'MESAT1' and NOT EXISTS (SELECT 1 FROM satellitemode WHERE satelliteid = satellite.id) ;");
if ($this->db->field_exists('exportname', 'satellite')) {
$this->db->query("INSERT INTO satellite (name, exportname, orbit) SELECT distinct 'MESAT1','', 'LEO' FROM satellite WHERE NOT EXISTS (SELECT 1 FROM satellite WHERE name = 'MESAT1');");
$this->db->query("INSERT INTO satellitemode (name, satelliteid, uplink_mode, uplink_freq, downlink_mode, downlink_freq) SELECT 'V/U', id, 'LSB', '145925000', 'USB', '435825000' FROM satellite WHERE name = 'MESAT1' and NOT EXISTS (SELECT 1 FROM satellitemode WHERE satelliteid = satellite.id) ;");
}
$this->db->query("UPDATE cron SET description = 'Up- and Download QSOs to LoTW' WHERE id = 'lotw_lotw_upload';");
//Mark MESAT1 QSOs LoTW sent state as invalid/ignore until it is recognized by LoTW

View File

@@ -3178,6 +3178,30 @@ class Logbook_model extends CI_Model {
return $query;
}
/* Return total number of QSOs per operator */
function total_operators($yr = 'All') {
//Load logbook model and get station locations
$this->load->model('logbooks_model');
$logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
if (!$logbooks_locations_array) {
return null;
}
//get statistics from database
$this->db->select('IFNULL(IF(COL_OPERATOR = "", COL_STATION_CALLSIGN, COL_OPERATOR), COL_STATION_CALLSIGN) AS operator, count( * ) AS count', FALSE);
$this->db->where_in('station_id', $logbooks_locations_array);
$this->where_year($yr);
$this->db->group_by('operator');
$this->db->order_by('count', 'DESC');
$query = $this->db->get($this->config->item('table_name'));
//return result
return $query;
}
function get_QSLStats($StationLocationsArray = null) {
if ($StationLocationsArray == null) {

View File

@@ -596,14 +596,12 @@ class Logbookadvanced_model extends CI_Model {
}
function get_modes() {
if (!$this->logbooks_locations_array) {
return null;
}
$modes = array();
$this->db->select('distinct col_mode, coalesce(col_submode, "") col_submode', FALSE);
$this->db->where_in('station_id', $this->logbooks_locations_array);
$this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id');
$this->db->where('station_profile.user_id', $this->session->userdata('user_id'));
$this->db->order_by('col_mode, col_submode', 'ASC');
$query = $this->db->get($this->config->item('table_name'));
@@ -619,6 +617,57 @@ class Logbookadvanced_model extends CI_Model {
return $modes;
}
function get_worked_bands() {
// get all worked slots from database
$sql = "SELECT distinct LOWER(`COL_BAND`) as `COL_BAND` FROM `".$this->config->item('table_name')."` thcv
JOIN station_profile on thcv.station_id = station_profile.station_id WHERE station_profile.user_id = ? AND COL_PROP_MODE != \"SAT\" ORDER BY col_band";
$data = $this->db->query($sql, array($this->session->userdata('user_id')));
$worked_slots = array();
foreach($data->result() as $row){
array_push($worked_slots, $row->COL_BAND);
}
$sql = "SELECT distinct LOWER(`COL_PROP_MODE`) as `COL_PROP_MODE` FROM `".$this->config->item('table_name')."` thcv
JOIN station_profile on thcv.station_id = station_profile.station_id WHERE station_profile.user_id = ? AND COL_PROP_MODE = \"SAT\"";
$SAT_data = $this->db->query($sql, array($this->session->userdata('user_id')));
foreach($SAT_data->result() as $row){
array_push($worked_slots, strtoupper($row->COL_PROP_MODE));
}
usort(
$worked_slots,
function($b, $a) {
sscanf($a, '%f%s', $ac, $ar);
sscanf($b, '%f%s', $bc, $br);
if ($ar == $br) {
return ($ac < $bc) ? -1 : 1;
}
return ($ar < $br) ? -1 : 1;
}
);
return $worked_slots;
}
function get_worked_sats() {
// get all worked sats from database
$sql = "SELECT distinct col_sat_name FROM ".$this->config->item('table_name')." thcv
JOIN station_profile on thcv.station_id = station_profile.station_id WHERE station_profile.user_id = ? and coalesce(col_sat_name, '') <> '' ORDER BY col_sat_name";
$data = $this->db->query($sql, array($this->session->userdata('user_id')));
$worked_sats = array();
foreach($data->result() as $row){
array_push($worked_sats, $row->col_sat_name);
}
return $worked_sats;
}
function getQslsForQsoIds($ids) {
$this->db->select('*');
$this->db->from($this->config->item('table_name'));

View File

@@ -40,7 +40,7 @@
<select id="mode" name="mode" class="form-select form-select-sm">
<option value=""><?= __("All"); ?></option>
<?php foreach($modes as $modeId => $mode){ ?>
<option value="<?php echo htmlspecialchars($mode);?>"><?php echo htmlspecialchars($mode);?></option>
<option value="<?php echo htmlspecialchars(strtoupper($mode));?>"><?php echo htmlspecialchars(strtoupper($mode));?></option>
<?php } ?>
</select>
</div>
@@ -67,4 +67,4 @@
</table>
</div>
</div>
</div>
</div>

View File

@@ -14,11 +14,13 @@
var lang_statistics_years = "<?= __("Years")?>";
var lang_statistics_modes = "<?= __("Mode")?>";
var lang_statistics_bands = "<?= __("Bands")?>";
var lang_statistics_operators = "<?= __("Operators")?>";
var lang_statistics_number_of_qso_worked_each_year = "<?= __("Number of QSOs worked each year")?>";
var lang_statistics_year = "<?= __("Year")?>";
var lang_statistics_number_of_qso_worked = "<?= __("# of QSO's worked")?>";
var lang_gen_hamradio_mode = "<?= __("Mode")?>";
var lang_gen_hamradio_band = "<?= __("Band")?>";
var lang_gen_hamradio_operator = "<?= __("Operator")?>";
var lang_gen_satellite = "<?= __("Satellite")?>";
</script>
@@ -67,6 +69,9 @@
<li class="nav-item">
<a class="nav-link" id="qso-tab" data-bs-toggle="tab" href="#qsotab" role="tab" aria-controls="bandtab" aria-selected="false"><?= __("QSOs"); ?></a>
</li>
<li class="nav-item">
<a class="nav-link" id="operators-tab" data-bs-toggle="tab" href="#operatorstab" role="tab" aria-controls="operatorstab" aria-selected="false"><?= __("Operators"); ?></a>
</li>
<li class="nav-item">
<a class="nav-link" id="unique-tab" data-bs-toggle="tab" href="#uniquetab" role="tab" aria-controls="uniquetab" aria-selected="false"><?= __("Unique callsigns"); ?></a>
</li>
@@ -88,6 +93,10 @@
<div class="qsos">
</div>
</div>
<div class="tab-pane fade" id="operatorstab" role="tabpanel" aria-labelledby="operators-tab">
<div class="operators">
</div>
</div>
<div class="tab-pane fade" id="uniquetab" role="tabpanel" aria-labelledby="unique-tab">
<div class="unique">
</div>

View File

@@ -139,7 +139,7 @@ function loadActivationsTable(rows, show_workable_only) {
for (var j=0; j < activation.grids_wkd.length; j++) {
if (!grids.some(str => str.includes(activation.grids[j].substring(0, 4)))) {
if (activation.grids_wkd[j] == 1) {
grids.push("<span data-bs-toggle=\"tooltip\" title=\"Worked\" class=\"badge bg-success\">"+activation.grids[j].substring(0, 4)+"</span>")
grids.push("<a href=\"javascript:displayContacts('"+activation.grids[j].substring(0, 4)+"','SAT','All','All','All','VUCC','');\"><span data-bs-toggle=\"tooltip\" title=\"Worked\" class=\"badge bg-success\">"+activation.grids[j].substring(0, 4)+"</span></a>")
} else {
grids.push("<span data-bs-toggle=\"tooltip\" title=\"Not Worked\" class=\"badge bg-danger\">"+activation.grids[j].substring(0, 4)+"</span>")
}

View File

@@ -813,9 +813,18 @@ $(document).ready(function () {
action: function (dialogItself) {
$('#optionButton').prop("disabled", false);
$('#closeButton').prop("disabled", true);
saveOptions();
dialogItself.close();
location.reload();
saveOptions().then(() => {
dialogItself.close();
location.reload();
}).catch(error => {
BootstrapDialog.alert({
title: 'Error',
message: 'An error occurred while saving options: ' + error,
type: BootstrapDialog.TYPE_DANGER, // Sets the dialog style to "danger"
closable: true,
buttonLabel: 'Close'
});
});
}
},
{
@@ -1263,61 +1272,65 @@ function printlabel() {
function saveOptions() {
$('#saveButton').prop("disabled", true);
$('#closeButton').prop("disabled", true);
$.ajax({
url: base_url + 'index.php/logbookadvanced/setUserOptions',
type: 'post',
data: {
datetime: $('input[name="datetime"]').is(':checked') ? true : false,
de: $('input[name="de"]').is(':checked') ? true : false,
dx: $('input[name="dx"]').is(':checked') ? true : false,
mode: $('input[name="mode"]').is(':checked') ? true : false,
rsts: $('input[name="rsts"]').is(':checked') ? true : false,
rstr: $('input[name="rstr"]').is(':checked') ? true : false,
band: $('input[name="band"]').is(':checked') ? true : false,
myrefs: $('input[name="myrefs"]').is(':checked') ? true : false,
name: $('input[name="name"]').is(':checked') ? true : false,
qslvia: $('input[name="qslvia"]').is(':checked') ? true : false,
qsl: $('input[name="qsl"]').is(':checked') ? true : false,
clublog: $('input[name="clublog"]').is(':checked') ? true : false,
lotw: $('input[name="lotw"]').is(':checked') ? true : false,
eqsl: $('input[name="eqsl"]').is(':checked') ? true : false,
qslmsgs: $('input[name="qslmsgs"]').is(':checked') ? true : false,
qslmsgr: $('input[name="qslmsgr"]').is(':checked') ? true : false,
dxcc: $('input[name="dxcc"]').is(':checked') ? true : false,
state: $('input[name="state"]').is(':checked') ? true : false,
cqzone: $('input[name="cqzone"]').is(':checked') ? true : false,
ituzone: $('input[name="ituzone"]').is(':checked') ? true : false,
iota: $('input[name="iota"]').is(':checked') ? true : false,
pota: $('input[name="pota"]').is(':checked') ? true : false,
operator: $('input[name="operator"]').is(':checked') ? true : false,
comment: $('input[name="comment"]').is(':checked') ? true : false,
propagation: $('input[name="propagation"]').is(':checked') ? true : false,
contest: $('input[name="contest"]').is(':checked') ? true : false,
gridsquare: $('input[name="gridsquare"]').is(':checked') ? true : false,
sota: $('input[name="sota"]').is(':checked') ? true : false,
dok: $('input[name="dok"]').is(':checked') ? true : false,
wwff: $('input[name="wwff"]').is(':checked') ? true : false,
sig: $('input[name="sig"]').is(':checked') ? true : false,
region: $('input[name="region"]').is(':checked') ? true : false,
continent: $('input[name="continent"]').is(':checked') ? true : false,
distance: $('input[name="distance"]').is(':checked') ? true : false,
antennaazimuth: $('input[name="antennaazimuth"]').is(':checked') ? true : false,
antennaelevation: $('input[name="antennaelevation"]').is(':checked') ? true : false,
qrz: $('input[name="qrz"]').is(':checked') ? true : false,
profilename: $('input[name="profilename"]').is(':checked') ? true : false,
stationpower: $('input[name="stationpower"]').is(':checked') ? true : false,
gridsquare_layer: $('input[name="gridsquareoverlay"]').is(':checked') ? true : false,
path_lines: $('input[name="pathlines"]').is(':checked') ? true : false,
cqzone_layer: $('input[name="cqzones"]').is(':checked') ? true : false,
ituzone_layer: $('input[name="ituzones"]').is(':checked') ? true : false,
nightshadow_layer: $('input[name="nightshadow"]').is(':checked') ? true : false,
},
success: function(data) {
$('#saveButton').prop("disabled", false);
$('#closeButton').prop("disabled", false);
},
error: function() {
$('#saveButton').prop("disabled", false);
},
return new Promise((resolve, reject) => {
$.ajax({
url: base_url + 'index.php/logbookadvanced/setUserOptions',
type: 'post',
data: {
datetime: $('input[name="datetime"]').is(':checked') ? true : false,
de: $('input[name="de"]').is(':checked') ? true : false,
dx: $('input[name="dx"]').is(':checked') ? true : false,
mode: $('input[name="mode"]').is(':checked') ? true : false,
rsts: $('input[name="rsts"]').is(':checked') ? true : false,
rstr: $('input[name="rstr"]').is(':checked') ? true : false,
band: $('input[name="band"]').is(':checked') ? true : false,
myrefs: $('input[name="myrefs"]').is(':checked') ? true : false,
name: $('input[name="name"]').is(':checked') ? true : false,
qslvia: $('input[name="qslvia"]').is(':checked') ? true : false,
qsl: $('input[name="qsl"]').is(':checked') ? true : false,
clublog: $('input[name="clublog"]').is(':checked') ? true : false,
lotw: $('input[name="lotw"]').is(':checked') ? true : false,
eqsl: $('input[name="eqsl"]').is(':checked') ? true : false,
qslmsgs: $('input[name="qslmsgs"]').is(':checked') ? true : false,
qslmsgr: $('input[name="qslmsgr"]').is(':checked') ? true : false,
dxcc: $('input[name="dxcc"]').is(':checked') ? true : false,
state: $('input[name="state"]').is(':checked') ? true : false,
cqzone: $('input[name="cqzone"]').is(':checked') ? true : false,
ituzone: $('input[name="ituzone"]').is(':checked') ? true : false,
iota: $('input[name="iota"]').is(':checked') ? true : false,
pota: $('input[name="pota"]').is(':checked') ? true : false,
operator: $('input[name="operator"]').is(':checked') ? true : false,
comment: $('input[name="comment"]').is(':checked') ? true : false,
propagation: $('input[name="propagation"]').is(':checked') ? true : false,
contest: $('input[name="contest"]').is(':checked') ? true : false,
gridsquare: $('input[name="gridsquare"]').is(':checked') ? true : false,
sota: $('input[name="sota"]').is(':checked') ? true : false,
dok: $('input[name="dok"]').is(':checked') ? true : false,
wwff: $('input[name="wwff"]').is(':checked') ? true : false,
sig: $('input[name="sig"]').is(':checked') ? true : false,
region: $('input[name="region"]').is(':checked') ? true : false,
continent: $('input[name="continent"]').is(':checked') ? true : false,
distance: $('input[name="distance"]').is(':checked') ? true : false,
antennaazimuth: $('input[name="antennaazimuth"]').is(':checked') ? true : false,
antennaelevation: $('input[name="antennaelevation"]').is(':checked') ? true : false,
qrz: $('input[name="qrz"]').is(':checked') ? true : false,
profilename: $('input[name="profilename"]').is(':checked') ? true : false,
stationpower: $('input[name="stationpower"]').is(':checked') ? true : false,
gridsquare_layer: $('input[name="gridsquareoverlay"]').is(':checked') ? true : false,
path_lines: $('input[name="pathlines"]').is(':checked') ? true : false,
cqzone_layer: $('input[name="cqzones"]').is(':checked') ? true : false,
ituzone_layer: $('input[name="ituzones"]').is(':checked') ? true : false,
nightshadow_layer: $('input[name="nightshadow"]').is(':checked') ? true : false,
},
success: function(data) {
$('#saveButton').prop("disabled", false);
$('#closeButton').prop("disabled", false);
resolve(data);
},
error: function(error) {
$('#saveButton').prop("disabled", false);
reject(error);
},
});
});
}

View File

@@ -46,6 +46,12 @@ $("a[href='#qsotab']").on('shown.bs.tab', function(e) {
$("#yr").show();
});
$("a[href='#operatorstab']").on('shown.bs.tab', function(e) {
totalOperatorQsos();
activeTab='totalOperatorQsos()'
$("#yr").show();
});
$("a[href='#satqsostab']").on('shown.bs.tab', function(e) {
totalSatQsosC();
activeTab='totalSatQsosC()'
@@ -515,6 +521,149 @@ function totalBandQsos() {
});
}
function totalOperatorQsos() {
// using this to change color of legend and label according to background color
var color = ifDarkModeThemeReturn('white', 'grey');
$.ajax({
url: base_url+'index.php/statistics/get_operators',
type: 'post',
data: { yr: $("#yr option:selected").val() },
success: function (data) {
if (data.length > 0) {
$(".operators").html('');
$(".operators").append('<br /><div style="display: flex;" id="operatorContainer"><h2>' + lang_statistics_operators + '</h2><div style="flex: 1;"><canvas id="operatorChart" width="500" height="500"></canvas></div><div style="flex: 1;" id="operatorTable"></div></div><br />');
// appending table to hold the data
$("#operatorTable").append('<table style="width:100%" class="operatorTable table table-sm table-bordered table-hover table-striped table-condensed text-center"><thead>' +
'<tr>' +
'<td>#</td>' +
'<td>' + lang_gen_hamradio_operator + '</td>' +
'<td>' + lang_statistics_number_of_qso_worked + ' </td>' +
'</tr>' +
'</thead>' +
'<tbody></tbody></table>');
var labels = [];
var dataQso = [];
var totalQso = Number(0);
var $myTable = $('.operatorTable');
var i = 1;
// building the rows in the table
var rowElements = data.map(function (row) {
var $row = $('<tr></tr>');
var $iterator = $('<td></td>').html(i++);
var $type = $('<td></td>').html(row.operator);
var $content = $('<td></td>').html(row.count);
$row.append($iterator, $type, $content);
return $row;
});
// finally inserting the rows
$myTable.append(rowElements);
$.each(data, function () {
labels.push(this.operator);
dataQso.push(this.count);
totalQso = Number(totalQso) + Number(this.count);
});
const COLORS = ["#3366cc", "#dc3912", "#ff9900", "#109618", "#990099", "#0099c6", "#dd4477", "#66aa00", "#b82e2e", "#316395", "#994499"]
var ctx = document.getElementById("operatorChart").getContext('2d');
var myChart = new Chart(ctx, {
plugins: [ChartPieChartOutlabels],
type: 'doughnut',
data: {
labels: labels,
datasets: [{
label: 'Number of QSO\'s worked',
data: dataQso,
borderColor: 'rgba(54, 162, 235, 1)',
backgroundColor: ["#3366cc", "#dc3912", "#ff9900", "#109618", "#990099", "#0099c6", "#dd4477", "#66aa00", "#b82e2e", "#316395", "#994499"],
borderWidth: 1,
}]
},
options: {
layout: {
padding: 100
},
title: {
fontColor: color,
fullSize: true,
},
responsive: true,
maintainAspectRatio: true,
plugins: {
legend: {
display: false,
labels: {
boxWidth: 15,
color: color,
font: {
size: 14,
}
},
position: 'right',
align: "middle"
},
outlabels: {
display: function(context) { // Hide labels with low percentage
return ((context.dataset.data[context.dataIndex] / totalQso * 100) > 1)
},
backgroundColor: COLORS,
borderColor: COLORS,
borderRadius: 2, // Border radius of Label
borderWidth: 2, // Thickness of border
color: 'white',
stretch: 10,
padding: 0,
font: {
resizable: true,
minSize: 12,
maxSize: 25,
family: Chart.defaults.font.family,
size: Chart.defaults.font.size,
style: Chart.defaults.font.style,
lineHeight: Chart.defaults.font.lineHeight,
},
zoomOutPercentage: 100,
textAlign: 'start',
backgroundColor: COLORS,
}
}
}
});
$('.operatorTable').DataTable({
responsive: false,
ordering: false,
"scrollY": "400px",
"scrollCollapse": true,
"paging": false,
"scrollX": true,
"language": {
url: getDataTablesLanguageUrl(),
},
bFilter: false,
bInfo: false,
});
// using this to change color of csv-button if dark mode is chosen
var background = $('body').css("background-color");
if (background != ('rgb(255, 255, 255)')) {
$(".buttons-csv").css("color", "white");
}
}
}
});
}
function totalSatQsos() {
// using this to change color of legend and label according to background color
var color = ifDarkModeThemeReturn('white', 'grey');

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2025-01-23 10:57+0000\n"
"POT-Creation-Date: 2025-01-27 13:03+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -567,7 +567,7 @@ msgstr ""
#: application/views/bands/index.php:32
#: application/views/interface_assets/header.php:400
#: application/views/statistics/index.php:16
#: application/views/statistics/index.php:65
#: application/views/statistics/index.php:67
msgid "Bands"
msgstr ""
@@ -714,7 +714,7 @@ msgstr ""
msgid "Update Contest"
msgstr ""
#: application/controllers/Continents.php:25
#: application/controllers/Continents.php:26
#: application/views/awards/dxcc/index.php:83
#: application/views/awards/iota/index.php:57
#: application/views/interface_assets/header.php:163
@@ -1274,8 +1274,8 @@ msgstr ""
#: application/views/simplefle/index.php:157
#: application/views/statistics/antennaanalytics.php:31
#: application/views/statistics/index.php:15
#: application/views/statistics/index.php:20
#: application/views/statistics/index.php:62
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:64
#: application/views/timeline/index.php:19 application/views/user/edit.php:244
#: application/views/user/edit.php:267 application/views/user/edit.php:290
#: application/views/user/edit.php:313 application/views/user/edit.php:337
@@ -1548,7 +1548,7 @@ msgstr ""
#: application/views/simplefle/index.php:156
#: application/views/stationsetup/exportmapoptions.php:31
#: application/views/statistics/antennaanalytics.php:19
#: application/views/statistics/index.php:21
#: application/views/statistics/index.php:22
#: application/views/timeline/index.php:7
#: application/views/timeplotter/index.php:14
#: application/views/user/edit.php:242 application/views/user/edit.php:265
@@ -1595,6 +1595,7 @@ msgstr ""
#: application/views/qso/components/previous_contacts.php:90
#: application/views/search/search_result_ajax.php:17
#: application/views/simplefle/index.php:116
#: application/views/statistics/index.php:23
#: application/views/user/edit.php:255 application/views/user/edit.php:278
#: application/views/user/edit.php:301 application/views/user/edit.php:324
#: application/views/user/edit.php:348
@@ -2379,13 +2380,13 @@ msgstr ""
msgid "Statistics"
msgstr ""
#: application/controllers/Statistics.php:209
#: application/controllers/Statistics.php:238
#: application/views/interface_assets/header.php:143
#: application/views/statistics/qsltable.php:5
msgid "QSL Statistics"
msgstr ""
#: application/controllers/Statistics.php:224
#: application/controllers/Statistics.php:253
#: application/views/interface_assets/header.php:141
#: application/views/statistics/antennaanalytics.php:3
msgid "Antenna Analytics"
@@ -2916,82 +2917,82 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:3875
#: application/models/Logbook_model.php:3899
#, php-format
msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED"
msgstr ""
#: application/models/Logbook_model.php:3876
#: application/models/Logbook_model.php:3900
#, php-format
msgid "Check %s for hints about errors in ADIF files."
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
msgid "QSO on"
msgstr ""
#: application/models/Logbook_model.php:3888
#: application/models/Logbook_model.php:3912
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:4187
#: application/models/Logbook_model.php:4211
msgid "the qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4198
#: application/models/Logbook_model.php:4222
msgid "the qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4259
#: application/models/Logbook_model.php:4283
msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4279
#: application/models/Logbook_model.php:4303
msgid "the lotw_qslrdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4300
#: application/models/Logbook_model.php:4324
msgid "the lotw_qslsdate is invalid (YYYYMMDD)"
msgstr ""
#: application/models/Logbook_model.php:4581
#: application/models/Logbook_model.php:4605
#: application/views/simplefle/index.php:40
msgid "Duplicate for"
msgstr ""
#: application/models/Logbook_model.php:4642
#: application/models/Logbook_model.php:4666
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4648
#: application/models/Logbook_model.php:4672
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4653
#: application/models/Logbook_model.php:4677
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4656
#: application/models/Logbook_model.php:4680
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4659
#: application/models/Logbook_model.php:4683
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4662
#: application/models/Logbook_model.php:4686
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4665
#: application/models/Logbook_model.php:4689
#: application/views/satellite/index.php:52
#: application/views/view_log/qso.php:287
msgid "unknown"
msgstr ""
#: application/models/Logbook_model.php:5475
#: application/models/Logbook_model.php:5499
#: application/views/activated_gridmap/index.php:110
#: application/views/awards/ffma/index.php:38
#: application/views/awards/gridmaster/index.php:44
@@ -3073,8 +3074,8 @@ msgstr ""
#: application/views/dashboard/index.php:296
#: application/views/dayswithqso/index.php:41
#: application/views/dayswithqso/index.php:81
#: application/views/statistics/index.php:18
#: application/views/statistics/index.php:36
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:38
#: application/views/timeline/index.php:107
#: application/views/visitor/index.php:250
msgid "Year"
@@ -3557,7 +3558,7 @@ msgstr ""
#: application/views/satellite/skedtable.php:7
#: application/views/satellite/skedtable.php:56
#: application/views/sattimers/index.php:38
#: application/views/statistics/index.php:22
#: application/views/statistics/index.php:24
msgid "Satellite"
msgstr ""
@@ -5921,6 +5922,8 @@ msgstr ""
#: application/views/cabrillo/index.php:164
#: application/views/reg1test/index.php:70
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:73
msgid "Operators"
msgstr ""
@@ -6672,7 +6675,7 @@ msgid "VUCC Gridsquare"
msgstr ""
#: application/views/continents/index.php:63
#: application/views/statistics/index.php:19
#: application/views/statistics/index.php:20
msgid "# of QSO's worked"
msgstr ""
@@ -8437,8 +8440,8 @@ msgstr ""
#: application/views/interface_assets/header.php:289
#: application/views/notes/add.php:38 application/views/notes/edit.php:39
#: application/views/satellite/index.php:11
#: application/views/statistics/index.php:48
#: application/views/statistics/index.php:102
#: application/views/statistics/index.php:50
#: application/views/statistics/index.php:111
msgid "Satellites"
msgstr ""
@@ -8777,8 +8780,8 @@ msgid "Label types"
msgstr ""
#: application/views/labels/index.php:81
#: application/views/statistics/index.php:68
#: application/views/statistics/index.php:105
#: application/views/statistics/index.php:70
#: application/views/statistics/index.php:114
#: application/views/widgets/qsos.php:3
msgid "QSOs"
msgstr ""
@@ -9712,7 +9715,7 @@ msgid "Category"
msgstr ""
#: application/views/notes/add.php:36 application/views/notes/edit.php:37
#: application/views/qso/index.php:31 application/views/statistics/index.php:44
#: application/views/qso/index.php:31 application/views/statistics/index.php:46
#: application/views/user/edit.php:169
msgid "General"
msgstr ""
@@ -12211,25 +12214,25 @@ msgid "Elevation"
msgstr ""
#: application/views/statistics/index.php:14
#: application/views/statistics/index.php:59
#: application/views/statistics/index.php:61
msgid "Years"
msgstr ""
#: application/views/statistics/index.php:17
#: application/views/statistics/index.php:18
msgid "Number of QSOs worked each year"
msgstr ""
#: application/views/statistics/index.php:29
#: application/views/statistics/index.php:31
msgid "Explore the logbook."
msgstr ""
#: application/views/statistics/index.php:33
#: application/views/statistics/index.php:35
#: application/views/timeline/index.php:111
msgid "All Years"
msgstr ""
#: application/views/statistics/index.php:71
#: application/views/statistics/index.php:108
#: application/views/statistics/index.php:76
#: application/views/statistics/index.php:117
msgid "Unique callsigns"
msgstr ""

View File

@@ -5,12 +5,13 @@
# Casper van Lieburg <pa7dx@yahoo.com>, 2024.
# Fabian Berg <fabian.berg@hb9hil.org>, 2024.
# PE1PQX <Andre@pe1pqx.eu>, 2025.
# Alexander <alexander@pa8s.nl>, 2025.
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2025-01-23 10:57+0000\n"
"PO-Revision-Date: 2025-01-23 16:03+0000\n"
"Last-Translator: PE1PQX <Andre@pe1pqx.eu>\n"
"PO-Revision-Date: 2025-01-26 15:27+0000\n"
"Last-Translator: Alexander <alexander@pa8s.nl>\n"
"Language-Team: Dutch <https://translate.wavelog.org/projects/wavelog/"
"installer/nl/>\n"
"Language: nl_NL\n"
@@ -138,7 +139,7 @@ msgstr "1. Welkom"
#: install/index.php:38
msgid "2. Pre Checks"
msgstr "2. Eerste contrôle"
msgstr "2. Voorcontrole"
#: install/index.php:41
msgid "3. Configuration"
@@ -276,7 +277,7 @@ msgstr ""
#: install/index.php:321
msgid ""
"After that, you have to restart your webserver and start the installer again."
msgstr ""
msgstr "Daarna moet je je webserver herstarten en de installer opnieuw starten."
#: install/index.php:322
#, php-format
@@ -339,6 +340,12 @@ msgid ""
"credentials for QRZ.com. To also get the Call Locator in QRZ.com you'll need "
"an XML subscription. HamQTH does not always provide the locator information."
msgstr ""
"Deze configuratie is optioneel. Het opzoeken van roepnamen zal beschikbaar "
"zijn voor alle gebruikers van deze installatie. Je kunt kiezen tussen "
"QRZ.com en HamQTH. Terwijl HamQTH ook zonder gebruikersnaam en wachtwoord "
"werkt, heb je inloggegevens nodig voor QRZ.com. Om ook de Call Locator in "
"QRZ.com te krijgen, heb je een XML-abonnement nodig. HamQTH biedt niet "
"altijd de locatorinformatie."
#: install/index.php:368 install/index.php:449 install/index.php:901
msgid "Username"
@@ -390,6 +397,8 @@ msgid ""
"Optional: Enable Error Logging by setting the log threshold bigger then 0. "
"Only enable this if you really need it."
msgstr ""
"Optioneel: Schakel foutlogboekregistratie in door de logdrempel groter dan 0 "
"in te stellen. Schakel dit alleen in als je het echt nodig hebt."
#: install/index.php:407
msgid "0 - No logs"
@@ -507,7 +516,7 @@ msgstr "Achternaam"
#: install/index.php:895
msgid "Callsign"
msgstr "Callsign"
msgstr "Roepnaam"
#: install/index.php:905
msgid "Gridsquare/Locator"
@@ -606,12 +615,16 @@ msgid ""
"The callsign should not contain any pre- or suffixes as it is used as "
"personal operator callsign."
msgstr ""
"De roepnaam mag geen voor- of achtervoegsels bevatten, omdat deze wordt "
"gebruikt als persoonlijke operatorroepnaam."
#: install/index.php:1345
msgid ""
"The callsign can not contain any special characters. It's your personal "
"callsign without any pre- or suffixes."
msgstr ""
"De roepnaam mag geen speciale tekens bevatten. Het is je persoonlijke "
"roepnaam zonder voor- of achtervoegsels."
#: install/index.php:1478
msgid "Error: At least Hostname/IP, Database Name and Username are required."