Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
Weblate
2024-09-12 14:57:20 +00:00
24 changed files with 720 additions and 674 deletions

View File

@@ -19,13 +19,12 @@ class Lotw extends CI_Controller {
*/
/* Controls who can access the controller and its functions */
function __construct()
{
function __construct() {
parent::__construct();
$this->load->helper(array('form', 'url'));
if (ENVIRONMENT == 'maintenance' && $this->session->userdata('user_id') == '') {
echo __("Maintenance Mode is active. Try again later.")."\n";
echo __("Maintenance Mode is active. Try again later.")."\n";
redirect('user/login');
}
}
@@ -468,8 +467,7 @@ class Lotw extends CI_Controller {
| Internal function that takes the LoTW ADIF and imports into the log
|
*/
private function loadFromFile($filepath, $display_view = "TRUE")
{
private function loadFromFile($filepath, $station_ids, $display_view = "TRUE") {
// Figure out how we should be marking QSLs confirmed via LoTW
$query = $query = $this->db->query('SELECT lotw_rcvd_mark FROM config');
@@ -488,127 +486,126 @@ class Lotw extends CI_Controller {
$this->adif_parser->initialize();
$tableheaders = "<table width=\"100%\">";
$tableheaders .= "<tr class=\"titles\">";
$tableheaders .= "<td>Station Callsign</td>";
$tableheaders .= "<td>QSO Date</td>";
$tableheaders .= "<td>Call</td>";
$tableheaders .= "<td>Mode</td>";
$tableheaders .= "<td>LoTW QSL Received</td>";
$tableheaders .= "<td>Date LoTW Confirmed</td>";
$tableheaders .= "<td>State</td>";
$tableheaders .= "<td>Gridsquare</td>";
$tableheaders .= "<td>IOTA</td>";
$tableheaders .= "<td>Log Status</td>";
$tableheaders .= "<td>LoTW Status</td>";
$tableheaders .= "</tr>";
$tableheaders .= "<tr class=\"titles\">";
$tableheaders .= "<td>Station Callsign</td>";
$tableheaders .= "<td>QSO Date</td>";
$tableheaders .= "<td>Call</td>";
$tableheaders .= "<td>Mode</td>";
$tableheaders .= "<td>LoTW QSL Received</td>";
$tableheaders .= "<td>Date LoTW Confirmed</td>";
$tableheaders .= "<td>State</td>";
$tableheaders .= "<td>Gridsquare</td>";
$tableheaders .= "<td>IOTA</td>";
$tableheaders .= "<td>Log Status</td>";
$tableheaders .= "<td>LoTW Status</td>";
$tableheaders .= "</tr>";
$table = "";
while($record = $this->adif_parser->get_record()) {
// Check for LoTW confirmation in ADIF record and skip if not existent
if (!isset($record['app_lotw_rxqsl'])) {
continue;
}
$time_on = date('Y-m-d', strtotime($record['qso_date'])) ." ".date('H:i', strtotime($record['time_on']));
$qsl_date = date('Y-m-d H:i', strtotime($record['app_lotw_rxqsl']));
if (isset($record['time_off'])) {
$time_off = date('Y-m-d', strtotime($record['qso_date'])) ." ".date('H:i', strtotime($record['time_off']));
} else {
$time_off = date('Y-m-d', strtotime($record['qso_date'])) ." ".date('H:i', strtotime($record['time_on']));
}
// If we have a positive match from LoTW, record it in the DB according to the user's preferences
if ($record['qsl_rcvd'] == "Y")
{
$record['qsl_rcvd'] = $config['lotw_rcvd_mark'];
}
$status = $this->logbook_model->import_check($time_on, $record['call'], $record['band'], $record['mode'], $record['station_callsign']);
if($status[0] == "Found") {
$qso_id4lotw=$status[1];
if (isset($record['state'])) {
$state = $record['state'];
} else {
$state = "";
}
// Present only if the QSLing station specified a single valid grid square value in its station location uploaded to LoTW.
$qsl_gridsquare = "";
if (isset($record['gridsquare'])) {
if (strlen($record['gridsquare']) > strlen($status[2] ?? '') || substr(strtoupper($status[2] ?? ''), 0, 4) != substr(strtoupper($record['gridsquare']), 0, 4)) {
$qsl_gridsquare = $record['gridsquare'];
}
}
if (isset($record['vucc_grids'])) {
$qsl_vucc_grids = $record['vucc_grids'];
} else {
$qsl_vucc_grids = "";
}
if (isset($record['iota'])) {
$iota = $record['iota'];
} else {
$iota = "";
}
if (isset($record['cnty'])) {
$cnty = $record['cnty'];
} else {
$cnty = "";
}
if (isset($record['cqz'])) {
$cqz = $record['cqz'];
} else {
$cqz = "";
}
if (isset($record['ituz'])) {
$ituz = $record['ituz'];
} else {
$ituz = "";
}
$lotw_status = $this->logbook_model->lotw_update($time_on, $record['call'], $record['band'], $qsl_date, $record['qsl_rcvd'], $state, $qsl_gridsquare, $qsl_vucc_grids, $iota, $cnty, $cqz, $ituz, $record['station_callsign'],$qso_id4lotw);
$table .= "<tr>";
$table .= "<td>".$record['station_callsign']."</td>";
$table .= "<td>".$time_on."</td>";
$table .= "<td>".$record['call']."</td>";
$table .= "<td>".$record['mode']."</td>";
$table .= "<td>".$record['qsl_rcvd']."</td>";
$table .= "<td>".$qsl_date."</td>";
$table .= "<td>".$state."</td>";
$table .= "<td>".($qsl_gridsquare != '' ? $qsl_gridsquare : $qsl_vucc_grids)."</td>";
$table .= "<td>".$iota."</td>";
$table .= "<td>QSO Record: ".$status[0]."</td>";
$table .= "<td>LoTW Record: ".$lotw_status."</td>";
$table .= "</tr>";
} else {
$table .= "<tr>";
$table .= "<td>".$record['station_callsign']."</td>";
$table .= "<td>".$time_on."</td>";
$table .= "<td>".$record['call']."</td>";
$table .= "<td>".$record['mode']."</td>";
$table .= "<td>".$record['qsl_rcvd']."</td>";
$table .= "<td></td>";
$table .= "<td></td>";
$table .= "<td></td>";
$table .= "<td></td>";
$table .= "<td>QSO Record: ".$status[0]."</td>";
$table .= "<td></td>";
$table .= "</tr>";
}
$table = "";
while($record = $this->adif_parser->get_record()) {
// Check for LoTW confirmation in ADIF record and skip if not existent
if (!isset($record['app_lotw_rxqsl'])) {
continue;
}
if ($table != "")
$time_on = date('Y-m-d', strtotime($record['qso_date'])) ." ".date('H:i', strtotime($record['time_on']));
$qsl_date = date('Y-m-d H:i', strtotime($record['app_lotw_rxqsl']));
if (isset($record['time_off'])) {
$time_off = date('Y-m-d', strtotime($record['qso_date'])) ." ".date('H:i', strtotime($record['time_off']));
} else {
$time_off = date('Y-m-d', strtotime($record['qso_date'])) ." ".date('H:i', strtotime($record['time_on']));
}
// If we have a positive match from LoTW, record it in the DB according to the user's preferences
if ($record['qsl_rcvd'] == "Y")
{
$table .= "</table>";
$data['lotw_table_headers'] = $tableheaders;
$data['lotw_table'] = $table;
$record['qsl_rcvd'] = $config['lotw_rcvd_mark'];
}
$status = $this->logbook_model->import_check($time_on, $record['call'], $record['band'], $record['mode'], $record['station_callsign'], $station_ids);
if($status[0] == "Found") {
$qso_id4lotw=$status[1];
if (isset($record['state'])) {
$state = $record['state'];
} else {
$state = "";
}
// Present only if the QSLing station specified a single valid grid square value in its station location uploaded to LoTW.
$qsl_gridsquare = "";
if (isset($record['gridsquare'])) {
if (strlen($record['gridsquare']) > strlen($status[2] ?? '') || substr(strtoupper($status[2] ?? ''), 0, 4) != substr(strtoupper($record['gridsquare']), 0, 4)) {
$qsl_gridsquare = $record['gridsquare'];
}
}
if (isset($record['vucc_grids'])) {
$qsl_vucc_grids = $record['vucc_grids'];
} else {
$qsl_vucc_grids = "";
}
if (isset($record['iota'])) {
$iota = $record['iota'];
} else {
$iota = "";
}
if (isset($record['cnty'])) {
$cnty = $record['cnty'];
} else {
$cnty = "";
}
if (isset($record['cqz'])) {
$cqz = $record['cqz'];
} else {
$cqz = "";
}
if (isset($record['ituz'])) {
$ituz = $record['ituz'];
} else {
$ituz = "";
}
$lotw_status = $this->logbook_model->lotw_update($time_on, $record['call'], $record['band'], $qsl_date, $record['qsl_rcvd'], $state, $qsl_gridsquare, $qsl_vucc_grids, $iota, $cnty, $cqz, $ituz, $record['station_callsign'],$qso_id4lotw, $station_ids);
$table .= "<tr>";
$table .= "<td>".$record['station_callsign']."</td>";
$table .= "<td>".$time_on."</td>";
$table .= "<td>".$record['call']."</td>";
$table .= "<td>".$record['mode']."</td>";
$table .= "<td>".$record['qsl_rcvd']."</td>";
$table .= "<td>".$qsl_date."</td>";
$table .= "<td>".$state."</td>";
$table .= "<td>".($qsl_gridsquare != '' ? $qsl_gridsquare : $qsl_vucc_grids)."</td>";
$table .= "<td>".$iota."</td>";
$table .= "<td>QSO Record: ".$status[0]."</td>";
$table .= "<td>LoTW Record: ".$lotw_status."</td>";
$table .= "</tr>";
} else {
$table .= "<tr>";
$table .= "<td>".$record['station_callsign']."</td>";
$table .= "<td>".$time_on."</td>";
$table .= "<td>".$record['call']."</td>";
$table .= "<td>".$record['mode']."</td>";
$table .= "<td>".$record['qsl_rcvd']."</td>";
$table .= "<td></td>";
$table .= "<td></td>";
$table .= "<td></td>";
$table .= "<td></td>";
$table .= "<td>QSO Record: ".$status[0]."</td>";
$table .= "<td></td>";
$table .= "</tr>";
}
}
if ($table != "") {
$table .= "</table>";
$data['lotw_table_headers'] = $tableheaders;
$data['lotw_table'] = $table;
}
unlink($filepath);
@@ -642,6 +639,7 @@ class Lotw extends CI_Controller {
function lotw_download($sync_user_id = null) {
$this->load->model('user_model');
$this->load->model('logbook_model');
$this->load->model('Stations');
$query = $this->user_model->get_all_lotw_users();
@@ -655,6 +653,7 @@ class Lotw extends CI_Controller {
foreach ($query->result() as $user) {
if ( ($sync_user_id != null) && ($sync_user_id != $user->user_id) ) { continue; }
$station_ids=$this->Stations->all_station_ids_of_user($user->user_id);
// Validate that LoTW credentials are not empty
// TODO: We don't actually see the error message
@@ -708,7 +707,7 @@ class Lotw extends CI_Controller {
}
ini_set('memory_limit', '-1');
$result = $this->loadFromFile($file, false);
$result = $this->loadFromFile($file, $station_ids, false);
}
return $result;
} else {
@@ -718,12 +717,14 @@ class Lotw extends CI_Controller {
public function import() { // Is only called via frontend. Cron uses "upload". within download the download is called
$this->load->model('user_model');
$this->load->model('Stations');
if(!$this->user_model->authorize(2)) {
$this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
exit();
}
$station_ids=$this->Stations->all_station_ids_of_user($this->session->userdata['user_id']);
if (!($this->config->item('disable_manual_lotw'))) {
$data['page_title'] = __("LoTW ADIF Import");
@@ -759,8 +760,7 @@ class Lotw extends CI_Controller {
if ($customDate != NULL) {
$lotw_last_qsl_date = date($customDate);
}
else {
} else {
// Query the logbook to determine when the last LoTW confirmation was
$lotw_last_qsl_date = date('Y-m-d', strtotime($this->logbook_model->lotw_last_qsl_date($this->session->userdata['user_id'])));
}
@@ -788,7 +788,7 @@ class Lotw extends CI_Controller {
file_put_contents($file, $content);
ini_set('memory_limit', '-1');
$this->loadFromFile($file);
$this->loadFromFile($file, $station_ids);
} else {
print "LoTW download failed for user ".$data['user_lotw_name'].": ".curl_strerror(curl_errno($ch))." (".curl_errno($ch).").";
}
@@ -805,9 +805,7 @@ class Lotw extends CI_Controller {
$this->load->view('lotw/import', $data);
$this->load->view('interface_assets/footer');
}
}
else
{
} else {
if ( ! $this->upload->do_upload())
{
@@ -818,12 +816,10 @@ class Lotw extends CI_Controller {
$this->load->view('interface_assets/header', $data);
$this->load->view('lotw/import', $data);
$this->load->view('interface_assets/footer');
}
else
{
} else {
$data = array('upload_data' => $this->upload->data());
$this->loadFromFile('./uploads/'.$data['upload_data']['file_name']);
$this->loadFromFile('./uploads/'.$data['upload_data']['file_name'], $station_ids);
}
}
} else {

View File

@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-09-12 10:39+0000\n"
"POT-Creation-Date: 2024-09-12 14:57+0000\n"
"PO-Revision-Date: 2024-08-17 10:46+0000\n"
"Last-Translator: Anonymous <noreply@weblate.org>\n"
"Language-Team: Bulgarian <https://translate.wavelog.org/projects/wavelog/"
@@ -54,11 +54,11 @@ msgstr ""
#: application/controllers/Kmlexport.php:33
#: application/controllers/Labels.php:26
#: application/controllers/Logbookadvanced.php:16
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
#: application/controllers/Lotw.php:379 application/controllers/Lotw.php:402
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:830
#: application/controllers/Lotw.php:838 application/controllers/Mode.php:15
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44
#: application/controllers/Lotw.php:76 application/controllers/Lotw.php:103
#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:826
#: application/controllers/Lotw.php:834 application/controllers/Mode.php:15
#: application/controllers/Notes.php:10 application/controllers/Options.php:15
#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
#: application/controllers/Qrz.php:253 application/controllers/Qsl.php:12
@@ -541,7 +541,7 @@ msgstr ""
#: application/controllers/Clublog.php:15 application/controllers/Cron.php:12
#: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19
#: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14
#: application/controllers/Lotw.php:27 application/controllers/Qrz.php:14
#: application/controllers/Update.php:16
msgid "Maintenance Mode is active. Try again later."
msgstr ""
@@ -1451,8 +1451,8 @@ msgstr ""
msgid "Quick Lookup"
msgstr ""
#: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83
#: application/controllers/Lotw.php:125 application/views/adif/import.php:27
#: application/controllers/Lotw.php:53 application/controllers/Lotw.php:82
#: application/controllers/Lotw.php:124 application/views/adif/import.php:27
#: application/views/interface_assets/header.php:429
#: application/views/lotw/import.php:3
#: application/views/lotw_views/index.php:12
@@ -1461,50 +1461,50 @@ msgstr ""
msgid "Logbook of the World"
msgstr ""
#: application/controllers/Lotw.php:152
#: application/controllers/Lotw.php:151
msgid "Certificate Imported."
msgstr ""
#: application/controllers/Lotw.php:159
#: application/controllers/Lotw.php:158
msgid "Certificate Updated."
msgstr ""
#: application/controllers/Lotw.php:385
#: application/controllers/Lotw.php:384
msgid "Certificate Deleted."
msgstr ""
#: application/controllers/Lotw.php:414
#: application/controllers/Lotw.php:413
#, php-format
msgid ""
"Found no certificate in file %s. If the filename contains 'key-only' this is "
"typically a certificate request which has not been processed by LoTW yet."
msgstr ""
#: application/controllers/Lotw.php:620
#: application/controllers/Lotw.php:617
msgid "LoTW ADIF Information"
msgstr ""
#: application/controllers/Lotw.php:728
#: application/controllers/Lotw.php:729
msgid "LoTW ADIF Import"
msgstr ""
#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:873
#: application/controllers/Lotw.php:756 application/controllers/Lotw.php:869
msgid "You have not defined your ARRL LoTW credentials!"
msgstr ""
#: application/controllers/Lotw.php:840
#: application/controllers/Lotw.php:836
msgid "LoTW .TQ8 Upload"
msgstr ""
#: application/controllers/Lotw.php:918
#: application/controllers/Lotw.php:914
msgid "Your ARRL username and/or password is incorrect."
msgstr ""
#: application/controllers/Lotw.php:937 application/controllers/Lotw.php:942
#: application/controllers/Lotw.php:933 application/controllers/Lotw.php:938
msgid "LoTW .TQ8 Sent"
msgstr ""
#: application/controllers/Lotw.php:949
#: application/controllers/Lotw.php:945
msgid "LoTW .TQ8 Not Sent"
msgstr ""
@@ -2430,31 +2430,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4263
#: application/models/Logbook_model.php:4264
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4269
#: application/models/Logbook_model.php:4270
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4274
#: application/models/Logbook_model.php:4275
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4277
#: application/models/Logbook_model.php:4278
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4280
#: application/models/Logbook_model.php:4281
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4283
#: application/models/Logbook_model.php:4284
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4286
#: application/models/Logbook_model.php:4287
msgid "unknown"
msgstr ""

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-09-12 10:39+0000\n"
"POT-Creation-Date: 2024-09-12 14:57+0000\n"
"PO-Revision-Date: 2024-08-17 10:49+0000\n"
"Last-Translator: Anonymous <noreply@weblate.org>\n"
"Language-Team: Bosnian <https://translate.wavelog.org/projects/wavelog/main-"
@@ -56,11 +56,11 @@ msgstr ""
#: application/controllers/Kmlexport.php:33
#: application/controllers/Labels.php:26
#: application/controllers/Logbookadvanced.php:16
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
#: application/controllers/Lotw.php:379 application/controllers/Lotw.php:402
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:830
#: application/controllers/Lotw.php:838 application/controllers/Mode.php:15
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44
#: application/controllers/Lotw.php:76 application/controllers/Lotw.php:103
#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:826
#: application/controllers/Lotw.php:834 application/controllers/Mode.php:15
#: application/controllers/Notes.php:10 application/controllers/Options.php:15
#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
#: application/controllers/Qrz.php:253 application/controllers/Qsl.php:12
@@ -543,7 +543,7 @@ msgstr ""
#: application/controllers/Clublog.php:15 application/controllers/Cron.php:12
#: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19
#: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14
#: application/controllers/Lotw.php:27 application/controllers/Qrz.php:14
#: application/controllers/Update.php:16
msgid "Maintenance Mode is active. Try again later."
msgstr ""
@@ -1454,8 +1454,8 @@ msgstr ""
msgid "Quick Lookup"
msgstr ""
#: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83
#: application/controllers/Lotw.php:125 application/views/adif/import.php:27
#: application/controllers/Lotw.php:53 application/controllers/Lotw.php:82
#: application/controllers/Lotw.php:124 application/views/adif/import.php:27
#: application/views/interface_assets/header.php:429
#: application/views/lotw/import.php:3
#: application/views/lotw_views/index.php:12
@@ -1464,50 +1464,50 @@ msgstr ""
msgid "Logbook of the World"
msgstr ""
#: application/controllers/Lotw.php:152
#: application/controllers/Lotw.php:151
msgid "Certificate Imported."
msgstr ""
#: application/controllers/Lotw.php:159
#: application/controllers/Lotw.php:158
msgid "Certificate Updated."
msgstr ""
#: application/controllers/Lotw.php:385
#: application/controllers/Lotw.php:384
msgid "Certificate Deleted."
msgstr ""
#: application/controllers/Lotw.php:414
#: application/controllers/Lotw.php:413
#, php-format
msgid ""
"Found no certificate in file %s. If the filename contains 'key-only' this is "
"typically a certificate request which has not been processed by LoTW yet."
msgstr ""
#: application/controllers/Lotw.php:620
#: application/controllers/Lotw.php:617
msgid "LoTW ADIF Information"
msgstr ""
#: application/controllers/Lotw.php:728
#: application/controllers/Lotw.php:729
msgid "LoTW ADIF Import"
msgstr ""
#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:873
#: application/controllers/Lotw.php:756 application/controllers/Lotw.php:869
msgid "You have not defined your ARRL LoTW credentials!"
msgstr ""
#: application/controllers/Lotw.php:840
#: application/controllers/Lotw.php:836
msgid "LoTW .TQ8 Upload"
msgstr ""
#: application/controllers/Lotw.php:918
#: application/controllers/Lotw.php:914
msgid "Your ARRL username and/or password is incorrect."
msgstr ""
#: application/controllers/Lotw.php:937 application/controllers/Lotw.php:942
#: application/controllers/Lotw.php:933 application/controllers/Lotw.php:938
msgid "LoTW .TQ8 Sent"
msgstr ""
#: application/controllers/Lotw.php:949
#: application/controllers/Lotw.php:945
msgid "LoTW .TQ8 Not Sent"
msgstr ""
@@ -2436,31 +2436,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4263
#: application/models/Logbook_model.php:4264
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4269
#: application/models/Logbook_model.php:4270
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4274
#: application/models/Logbook_model.php:4275
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4277
#: application/models/Logbook_model.php:4278
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4280
#: application/models/Logbook_model.php:4281
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4283
#: application/models/Logbook_model.php:4284
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4286
#: application/models/Logbook_model.php:4287
msgid "unknown"
msgstr ""

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-09-12 10:39+0000\n"
"POT-Creation-Date: 2024-09-12 14:57+0000\n"
"PO-Revision-Date: 2024-08-17 10:49+0000\n"
"Last-Translator: Anonymous <noreply@weblate.org>\n"
"Language-Team: Montenegrin <https://translate.wavelog.org/projects/wavelog/"
@@ -56,11 +56,11 @@ msgstr ""
#: application/controllers/Kmlexport.php:33
#: application/controllers/Labels.php:26
#: application/controllers/Logbookadvanced.php:16
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
#: application/controllers/Lotw.php:379 application/controllers/Lotw.php:402
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:830
#: application/controllers/Lotw.php:838 application/controllers/Mode.php:15
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44
#: application/controllers/Lotw.php:76 application/controllers/Lotw.php:103
#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:826
#: application/controllers/Lotw.php:834 application/controllers/Mode.php:15
#: application/controllers/Notes.php:10 application/controllers/Options.php:15
#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
#: application/controllers/Qrz.php:253 application/controllers/Qsl.php:12
@@ -543,7 +543,7 @@ msgstr ""
#: application/controllers/Clublog.php:15 application/controllers/Cron.php:12
#: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19
#: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14
#: application/controllers/Lotw.php:27 application/controllers/Qrz.php:14
#: application/controllers/Update.php:16
msgid "Maintenance Mode is active. Try again later."
msgstr ""
@@ -1454,8 +1454,8 @@ msgstr ""
msgid "Quick Lookup"
msgstr ""
#: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83
#: application/controllers/Lotw.php:125 application/views/adif/import.php:27
#: application/controllers/Lotw.php:53 application/controllers/Lotw.php:82
#: application/controllers/Lotw.php:124 application/views/adif/import.php:27
#: application/views/interface_assets/header.php:429
#: application/views/lotw/import.php:3
#: application/views/lotw_views/index.php:12
@@ -1464,50 +1464,50 @@ msgstr ""
msgid "Logbook of the World"
msgstr ""
#: application/controllers/Lotw.php:152
#: application/controllers/Lotw.php:151
msgid "Certificate Imported."
msgstr ""
#: application/controllers/Lotw.php:159
#: application/controllers/Lotw.php:158
msgid "Certificate Updated."
msgstr ""
#: application/controllers/Lotw.php:385
#: application/controllers/Lotw.php:384
msgid "Certificate Deleted."
msgstr ""
#: application/controllers/Lotw.php:414
#: application/controllers/Lotw.php:413
#, php-format
msgid ""
"Found no certificate in file %s. If the filename contains 'key-only' this is "
"typically a certificate request which has not been processed by LoTW yet."
msgstr ""
#: application/controllers/Lotw.php:620
#: application/controllers/Lotw.php:617
msgid "LoTW ADIF Information"
msgstr ""
#: application/controllers/Lotw.php:728
#: application/controllers/Lotw.php:729
msgid "LoTW ADIF Import"
msgstr ""
#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:873
#: application/controllers/Lotw.php:756 application/controllers/Lotw.php:869
msgid "You have not defined your ARRL LoTW credentials!"
msgstr ""
#: application/controllers/Lotw.php:840
#: application/controllers/Lotw.php:836
msgid "LoTW .TQ8 Upload"
msgstr ""
#: application/controllers/Lotw.php:918
#: application/controllers/Lotw.php:914
msgid "Your ARRL username and/or password is incorrect."
msgstr ""
#: application/controllers/Lotw.php:937 application/controllers/Lotw.php:942
#: application/controllers/Lotw.php:933 application/controllers/Lotw.php:938
msgid "LoTW .TQ8 Sent"
msgstr ""
#: application/controllers/Lotw.php:949
#: application/controllers/Lotw.php:945
msgid "LoTW .TQ8 Not Sent"
msgstr ""
@@ -2436,31 +2436,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4263
#: application/models/Logbook_model.php:4264
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4269
#: application/models/Logbook_model.php:4270
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4274
#: application/models/Logbook_model.php:4275
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4277
#: application/models/Logbook_model.php:4278
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4280
#: application/models/Logbook_model.php:4281
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4283
#: application/models/Logbook_model.php:4284
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4286
#: application/models/Logbook_model.php:4287
msgid "unknown"
msgstr ""

View File

@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-09-12 10:39+0000\n"
"POT-Creation-Date: 2024-09-12 14:57+0000\n"
"PO-Revision-Date: 2024-08-26 12:58+0000\n"
"Last-Translator: Petr OK1PTR <ok1ptr@pm.me>\n"
"Language-Team: Czech <https://translate.wavelog.org/projects/wavelog/main-"
@@ -58,11 +58,11 @@ msgstr ""
#: application/controllers/Kmlexport.php:33
#: application/controllers/Labels.php:26
#: application/controllers/Logbookadvanced.php:16
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
#: application/controllers/Lotw.php:379 application/controllers/Lotw.php:402
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:830
#: application/controllers/Lotw.php:838 application/controllers/Mode.php:15
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44
#: application/controllers/Lotw.php:76 application/controllers/Lotw.php:103
#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:826
#: application/controllers/Lotw.php:834 application/controllers/Mode.php:15
#: application/controllers/Notes.php:10 application/controllers/Options.php:15
#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
#: application/controllers/Qrz.php:253 application/controllers/Qsl.php:12
@@ -545,7 +545,7 @@ msgstr ""
#: application/controllers/Clublog.php:15 application/controllers/Cron.php:12
#: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19
#: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14
#: application/controllers/Lotw.php:27 application/controllers/Qrz.php:14
#: application/controllers/Update.php:16
msgid "Maintenance Mode is active. Try again later."
msgstr "Probíhá údržba. Zkus později."
@@ -1457,8 +1457,8 @@ msgstr ""
msgid "Quick Lookup"
msgstr ""
#: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83
#: application/controllers/Lotw.php:125 application/views/adif/import.php:27
#: application/controllers/Lotw.php:53 application/controllers/Lotw.php:82
#: application/controllers/Lotw.php:124 application/views/adif/import.php:27
#: application/views/interface_assets/header.php:429
#: application/views/lotw/import.php:3
#: application/views/lotw_views/index.php:12
@@ -1467,50 +1467,50 @@ msgstr ""
msgid "Logbook of the World"
msgstr "Logbook of the World"
#: application/controllers/Lotw.php:152
#: application/controllers/Lotw.php:151
msgid "Certificate Imported."
msgstr ""
#: application/controllers/Lotw.php:159
#: application/controllers/Lotw.php:158
msgid "Certificate Updated."
msgstr ""
#: application/controllers/Lotw.php:385
#: application/controllers/Lotw.php:384
msgid "Certificate Deleted."
msgstr ""
#: application/controllers/Lotw.php:414
#: application/controllers/Lotw.php:413
#, php-format
msgid ""
"Found no certificate in file %s. If the filename contains 'key-only' this is "
"typically a certificate request which has not been processed by LoTW yet."
msgstr ""
#: application/controllers/Lotw.php:620
#: application/controllers/Lotw.php:617
msgid "LoTW ADIF Information"
msgstr ""
#: application/controllers/Lotw.php:728
#: application/controllers/Lotw.php:729
msgid "LoTW ADIF Import"
msgstr ""
#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:873
#: application/controllers/Lotw.php:756 application/controllers/Lotw.php:869
msgid "You have not defined your ARRL LoTW credentials!"
msgstr ""
#: application/controllers/Lotw.php:840
#: application/controllers/Lotw.php:836
msgid "LoTW .TQ8 Upload"
msgstr ""
#: application/controllers/Lotw.php:918
#: application/controllers/Lotw.php:914
msgid "Your ARRL username and/or password is incorrect."
msgstr ""
#: application/controllers/Lotw.php:937 application/controllers/Lotw.php:942
#: application/controllers/Lotw.php:933 application/controllers/Lotw.php:938
msgid "LoTW .TQ8 Sent"
msgstr ""
#: application/controllers/Lotw.php:949
#: application/controllers/Lotw.php:945
msgid "LoTW .TQ8 Not Sent"
msgstr ""
@@ -2439,31 +2439,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4263
#: application/models/Logbook_model.php:4264
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4269
#: application/models/Logbook_model.php:4270
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4274
#: application/models/Logbook_model.php:4275
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4277
#: application/models/Logbook_model.php:4278
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4280
#: application/models/Logbook_model.php:4281
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4283
#: application/models/Logbook_model.php:4284
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4286
#: application/models/Logbook_model.php:4287
msgid "unknown"
msgstr ""

View File

@@ -22,8 +22,8 @@ msgstr ""
"POT-Creation-Date: 2024-09-12 10:39+0000\n"
"PO-Revision-Date: 2024-09-12 14:57+0000\n"
"Last-Translator: Reiner Herrmann <reiner@reiner-h.de>\n"
"Language-Team: German <https://translate.wavelog.org/projects/wavelog/"
"main-translation/de/>\n"
"Language-Team: German <https://translate.wavelog.org/projects/wavelog/main-"
"translation/de/>\n"
"Language: de_DE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -122,6 +122,10 @@ msgstr ""
#: application/controllers/User.php:762 application/controllers/User.php:1045
#: application/controllers/User.php:1247
#: application/controllers/User_options.php:9
#: application/controllers/Lotw.php:44 application/controllers/Lotw.php:76
#: application/controllers/Lotw.php:103 application/controllers/Lotw.php:378
#: application/controllers/Lotw.php:401 application/controllers/Lotw.php:826
#: application/controllers/Lotw.php:834
msgid "You're not allowed to do that!"
msgstr "Das ist dir nicht gestattet!"
@@ -556,7 +560,7 @@ msgstr "CFD-Export"
#: application/controllers/Clublog.php:15 application/controllers/Cron.php:12
#: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19
#: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14
#: application/controllers/Update.php:16
#: application/controllers/Update.php:16 application/controllers/Lotw.php:27
msgid "Maintenance Mode is active. Try again later."
msgstr "Wartungmodus aktiv. Bitte später erneut versuchen."
@@ -1485,22 +1489,24 @@ msgstr "Schnellsuche"
#: application/views/lotw_views/index.php:12
#: application/views/lotw_views/upload_cert.php:3
#: application/views/user/edit.php:705 application/views/visitor/index.php:324
#: application/controllers/Lotw.php:53 application/controllers/Lotw.php:82
#: application/controllers/Lotw.php:124
msgid "Logbook of the World"
msgstr "Logbook of the World"
#: application/controllers/Lotw.php:152
#: application/controllers/Lotw.php:152 application/controllers/Lotw.php:151
msgid "Certificate Imported."
msgstr "Zertifikat importiert."
#: application/controllers/Lotw.php:159
#: application/controllers/Lotw.php:159 application/controllers/Lotw.php:158
msgid "Certificate Updated."
msgstr "Zertifikat aktualisiert."
#: application/controllers/Lotw.php:385
#: application/controllers/Lotw.php:385 application/controllers/Lotw.php:384
msgid "Certificate Deleted."
msgstr "Zertifikat gelöscht."
#: application/controllers/Lotw.php:414
#: application/controllers/Lotw.php:414 application/controllers/Lotw.php:413
#, php-format
msgid ""
"Found no certificate in file %s. If the filename contains 'key-only' this is "
@@ -1510,31 +1516,33 @@ msgstr ""
"enthält, handelt es sich normalerweise um eine Zertifikatsanforderung, die "
"von LoTW noch nicht bearbeitet wurde."
#: application/controllers/Lotw.php:620
#: application/controllers/Lotw.php:620 application/controllers/Lotw.php:617
msgid "LoTW ADIF Information"
msgstr "LoTW ADIF Information"
#: application/controllers/Lotw.php:728
#: application/controllers/Lotw.php:728 application/controllers/Lotw.php:729
msgid "LoTW ADIF Import"
msgstr "LoTW ADIF-Import"
#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:873
#: application/controllers/Lotw.php:756 application/controllers/Lotw.php:869
msgid "You have not defined your ARRL LoTW credentials!"
msgstr "Du hast deine ARRL LoTW Zugangsdaten nicht definiert!"
#: application/controllers/Lotw.php:840
#: application/controllers/Lotw.php:840 application/controllers/Lotw.php:836
msgid "LoTW .TQ8 Upload"
msgstr "LoTW .TQ8-Upload"
#: application/controllers/Lotw.php:918
#: application/controllers/Lotw.php:918 application/controllers/Lotw.php:914
msgid "Your ARRL username and/or password is incorrect."
msgstr "Dein ARRL-Benutzername und/oder Passwort ist falsch."
#: application/controllers/Lotw.php:937 application/controllers/Lotw.php:942
#: application/controllers/Lotw.php:933 application/controllers/Lotw.php:938
msgid "LoTW .TQ8 Sent"
msgstr "LoTW .TQ8 gesendet"
#: application/controllers/Lotw.php:949
#: application/controllers/Lotw.php:949 application/controllers/Lotw.php:945
msgid "LoTW .TQ8 Not Sent"
msgstr "LoTW .TQ8 nicht gesendet"
@@ -2492,30 +2500,37 @@ msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr "HRDlog: Keine Stationsstandorte mit HRDlog Zugangsdaten gefunden."
#: application/models/Logbook_model.php:4263
#: application/models/Logbook_model.php:4264
msgid "QSO could not be matched"
msgstr "QSO konnte nicht gefunden werden"
#: application/models/Logbook_model.php:4269
#: application/models/Logbook_model.php:4270
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr "bestätigt durch LoTW/Clublog/eQSL/Contest"
#: application/models/Logbook_model.php:4274
#: application/models/Logbook_model.php:4275
msgid "confirmed by award manager"
msgstr "bestätigt durch Diplommananger"
#: application/models/Logbook_model.php:4277
#: application/models/Logbook_model.php:4278
msgid "confirmed by cross-check of DCL data"
msgstr "bestätigt durch Cross-Check von DCL-Daten"
#: application/models/Logbook_model.php:4280
#: application/models/Logbook_model.php:4281
msgid "confirmation pending"
msgstr "Bestätigung ausstehend"
#: application/models/Logbook_model.php:4283
#: application/models/Logbook_model.php:4284
msgid "unconfirmed"
msgstr "nicht bestätigt"
#: application/models/Logbook_model.php:4286
#: application/models/Logbook_model.php:4287
msgid "unknown"
msgstr "unbekannt"
@@ -11091,9 +11106,9 @@ msgid ""
"Create a new folder in 'assets/css/' and upload a 'bootstrap.min.css' file "
"which contains basic styling rules. We use the themes from %s"
msgstr ""
"Erstelle einen neuen Ordner in 'assets/css/' und lade eine "
"'bootstrap.min.css' Datei hoch, welche die grundlegende Styling-Regeln "
"enthält. Wir verwenden die Themes von %s"
"Erstelle einen neuen Ordner in 'assets/css/' und lade eine 'bootstrap.min."
"css' Datei hoch, welche die grundlegende Styling-Regeln enthält. Wir "
"verwenden die Themes von %s"
#: application/views/themes/index.php:50
msgid "2. Step"

View File

@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-09-12 10:39+0000\n"
"POT-Creation-Date: 2024-09-12 14:57+0000\n"
"PO-Revision-Date: 2024-08-17 10:47+0000\n"
"Last-Translator: Fabian Berg <fabian.berg@hb9hil.org>\n"
"Language-Team: Greek <https://translate.wavelog.org/projects/wavelog/main-"
@@ -56,11 +56,11 @@ msgstr ""
#: application/controllers/Kmlexport.php:33
#: application/controllers/Labels.php:26
#: application/controllers/Logbookadvanced.php:16
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
#: application/controllers/Lotw.php:379 application/controllers/Lotw.php:402
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:830
#: application/controllers/Lotw.php:838 application/controllers/Mode.php:15
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44
#: application/controllers/Lotw.php:76 application/controllers/Lotw.php:103
#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:826
#: application/controllers/Lotw.php:834 application/controllers/Mode.php:15
#: application/controllers/Notes.php:10 application/controllers/Options.php:15
#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
#: application/controllers/Qrz.php:253 application/controllers/Qsl.php:12
@@ -543,7 +543,7 @@ msgstr ""
#: application/controllers/Clublog.php:15 application/controllers/Cron.php:12
#: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19
#: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14
#: application/controllers/Lotw.php:27 application/controllers/Qrz.php:14
#: application/controllers/Update.php:16
msgid "Maintenance Mode is active. Try again later."
msgstr ""
@@ -1455,8 +1455,8 @@ msgstr ""
msgid "Quick Lookup"
msgstr ""
#: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83
#: application/controllers/Lotw.php:125 application/views/adif/import.php:27
#: application/controllers/Lotw.php:53 application/controllers/Lotw.php:82
#: application/controllers/Lotw.php:124 application/views/adif/import.php:27
#: application/views/interface_assets/header.php:429
#: application/views/lotw/import.php:3
#: application/views/lotw_views/index.php:12
@@ -1465,50 +1465,50 @@ msgstr ""
msgid "Logbook of the World"
msgstr ""
#: application/controllers/Lotw.php:152
#: application/controllers/Lotw.php:151
msgid "Certificate Imported."
msgstr ""
#: application/controllers/Lotw.php:159
#: application/controllers/Lotw.php:158
msgid "Certificate Updated."
msgstr ""
#: application/controllers/Lotw.php:385
#: application/controllers/Lotw.php:384
msgid "Certificate Deleted."
msgstr ""
#: application/controllers/Lotw.php:414
#: application/controllers/Lotw.php:413
#, php-format
msgid ""
"Found no certificate in file %s. If the filename contains 'key-only' this is "
"typically a certificate request which has not been processed by LoTW yet."
msgstr ""
#: application/controllers/Lotw.php:620
#: application/controllers/Lotw.php:617
msgid "LoTW ADIF Information"
msgstr ""
#: application/controllers/Lotw.php:728
#: application/controllers/Lotw.php:729
msgid "LoTW ADIF Import"
msgstr ""
#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:873
#: application/controllers/Lotw.php:756 application/controllers/Lotw.php:869
msgid "You have not defined your ARRL LoTW credentials!"
msgstr ""
#: application/controllers/Lotw.php:840
#: application/controllers/Lotw.php:836
msgid "LoTW .TQ8 Upload"
msgstr ""
#: application/controllers/Lotw.php:918
#: application/controllers/Lotw.php:914
msgid "Your ARRL username and/or password is incorrect."
msgstr ""
#: application/controllers/Lotw.php:937 application/controllers/Lotw.php:942
#: application/controllers/Lotw.php:933 application/controllers/Lotw.php:938
msgid "LoTW .TQ8 Sent"
msgstr ""
#: application/controllers/Lotw.php:949
#: application/controllers/Lotw.php:945
msgid "LoTW .TQ8 Not Sent"
msgstr ""
@@ -2434,31 +2434,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4263
#: application/models/Logbook_model.php:4264
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4269
#: application/models/Logbook_model.php:4270
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4274
#: application/models/Logbook_model.php:4275
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4277
#: application/models/Logbook_model.php:4278
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4280
#: application/models/Logbook_model.php:4281
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4283
#: application/models/Logbook_model.php:4284
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4286
#: application/models/Logbook_model.php:4287
msgid "unknown"
msgstr ""

View File

@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-09-12 10:39+0000\n"
"POT-Creation-Date: 2024-09-12 14:57+0000\n"
"PO-Revision-Date: 2024-08-28 05:06+0000\n"
"Last-Translator: Francisco Jiménez-Martín Sánchez <ea1jm.fran@gmail.com>\n"
"Language-Team: Spanish <https://translate.wavelog.org/projects/wavelog/main-"
@@ -57,11 +57,11 @@ msgstr ""
#: application/controllers/Kmlexport.php:33
#: application/controllers/Labels.php:26
#: application/controllers/Logbookadvanced.php:16
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
#: application/controllers/Lotw.php:379 application/controllers/Lotw.php:402
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:830
#: application/controllers/Lotw.php:838 application/controllers/Mode.php:15
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44
#: application/controllers/Lotw.php:76 application/controllers/Lotw.php:103
#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:826
#: application/controllers/Lotw.php:834 application/controllers/Mode.php:15
#: application/controllers/Notes.php:10 application/controllers/Options.php:15
#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
#: application/controllers/Qrz.php:253 application/controllers/Qsl.php:12
@@ -544,7 +544,7 @@ msgstr "Exportar en CFD"
#: application/controllers/Clublog.php:15 application/controllers/Cron.php:12
#: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19
#: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14
#: application/controllers/Lotw.php:27 application/controllers/Qrz.php:14
#: application/controllers/Update.php:16
msgid "Maintenance Mode is active. Try again later."
msgstr "El modo Mantenimiento está activo. Prueba mas tarde."
@@ -1456,8 +1456,8 @@ msgstr ""
msgid "Quick Lookup"
msgstr ""
#: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83
#: application/controllers/Lotw.php:125 application/views/adif/import.php:27
#: application/controllers/Lotw.php:53 application/controllers/Lotw.php:82
#: application/controllers/Lotw.php:124 application/views/adif/import.php:27
#: application/views/interface_assets/header.php:429
#: application/views/lotw/import.php:3
#: application/views/lotw_views/index.php:12
@@ -1466,50 +1466,50 @@ msgstr ""
msgid "Logbook of the World"
msgstr ""
#: application/controllers/Lotw.php:152
#: application/controllers/Lotw.php:151
msgid "Certificate Imported."
msgstr ""
#: application/controllers/Lotw.php:159
#: application/controllers/Lotw.php:158
msgid "Certificate Updated."
msgstr ""
#: application/controllers/Lotw.php:385
#: application/controllers/Lotw.php:384
msgid "Certificate Deleted."
msgstr ""
#: application/controllers/Lotw.php:414
#: application/controllers/Lotw.php:413
#, php-format
msgid ""
"Found no certificate in file %s. If the filename contains 'key-only' this is "
"typically a certificate request which has not been processed by LoTW yet."
msgstr ""
#: application/controllers/Lotw.php:620
#: application/controllers/Lotw.php:617
msgid "LoTW ADIF Information"
msgstr ""
#: application/controllers/Lotw.php:728
#: application/controllers/Lotw.php:729
msgid "LoTW ADIF Import"
msgstr ""
#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:873
#: application/controllers/Lotw.php:756 application/controllers/Lotw.php:869
msgid "You have not defined your ARRL LoTW credentials!"
msgstr ""
#: application/controllers/Lotw.php:840
#: application/controllers/Lotw.php:836
msgid "LoTW .TQ8 Upload"
msgstr ""
#: application/controllers/Lotw.php:918
#: application/controllers/Lotw.php:914
msgid "Your ARRL username and/or password is incorrect."
msgstr ""
#: application/controllers/Lotw.php:937 application/controllers/Lotw.php:942
#: application/controllers/Lotw.php:933 application/controllers/Lotw.php:938
msgid "LoTW .TQ8 Sent"
msgstr ""
#: application/controllers/Lotw.php:949
#: application/controllers/Lotw.php:945
msgid "LoTW .TQ8 Not Sent"
msgstr ""
@@ -2441,31 +2441,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4263
#: application/models/Logbook_model.php:4264
msgid "QSO could not be matched"
msgstr "QSOs que no concuerdan"
#: application/models/Logbook_model.php:4269
#: application/models/Logbook_model.php:4270
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr "confirmados por LoTW/Clublog/eQSL/Concurso"
#: application/models/Logbook_model.php:4274
#: application/models/Logbook_model.php:4275
msgid "confirmed by award manager"
msgstr "confirmados por el administrador del premio"
#: application/models/Logbook_model.php:4277
#: application/models/Logbook_model.php:4278
msgid "confirmed by cross-check of DCL data"
msgstr "confirmados al hacer chequeo cruzadoc on datos de DCL"
#: application/models/Logbook_model.php:4280
#: application/models/Logbook_model.php:4281
msgid "confirmation pending"
msgstr "pendiente de confirmación"
#: application/models/Logbook_model.php:4283
#: application/models/Logbook_model.php:4284
msgid "unconfirmed"
msgstr "sin confirmar"
#: application/models/Logbook_model.php:4286
#: application/models/Logbook_model.php:4287
msgid "unknown"
msgstr "desconocido"

View File

@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-09-12 10:39+0000\n"
"POT-Creation-Date: 2024-09-12 14:57+0000\n"
"PO-Revision-Date: 2024-08-17 10:47+0000\n"
"Last-Translator: Anonymous <noreply@weblate.org>\n"
"Language-Team: Finnish <https://translate.wavelog.org/projects/wavelog/main-"
@@ -54,11 +54,11 @@ msgstr ""
#: application/controllers/Kmlexport.php:33
#: application/controllers/Labels.php:26
#: application/controllers/Logbookadvanced.php:16
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
#: application/controllers/Lotw.php:379 application/controllers/Lotw.php:402
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:830
#: application/controllers/Lotw.php:838 application/controllers/Mode.php:15
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44
#: application/controllers/Lotw.php:76 application/controllers/Lotw.php:103
#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:826
#: application/controllers/Lotw.php:834 application/controllers/Mode.php:15
#: application/controllers/Notes.php:10 application/controllers/Options.php:15
#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
#: application/controllers/Qrz.php:253 application/controllers/Qsl.php:12
@@ -541,7 +541,7 @@ msgstr ""
#: application/controllers/Clublog.php:15 application/controllers/Cron.php:12
#: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19
#: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14
#: application/controllers/Lotw.php:27 application/controllers/Qrz.php:14
#: application/controllers/Update.php:16
msgid "Maintenance Mode is active. Try again later."
msgstr ""
@@ -1451,8 +1451,8 @@ msgstr ""
msgid "Quick Lookup"
msgstr ""
#: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83
#: application/controllers/Lotw.php:125 application/views/adif/import.php:27
#: application/controllers/Lotw.php:53 application/controllers/Lotw.php:82
#: application/controllers/Lotw.php:124 application/views/adif/import.php:27
#: application/views/interface_assets/header.php:429
#: application/views/lotw/import.php:3
#: application/views/lotw_views/index.php:12
@@ -1461,50 +1461,50 @@ msgstr ""
msgid "Logbook of the World"
msgstr ""
#: application/controllers/Lotw.php:152
#: application/controllers/Lotw.php:151
msgid "Certificate Imported."
msgstr ""
#: application/controllers/Lotw.php:159
#: application/controllers/Lotw.php:158
msgid "Certificate Updated."
msgstr ""
#: application/controllers/Lotw.php:385
#: application/controllers/Lotw.php:384
msgid "Certificate Deleted."
msgstr ""
#: application/controllers/Lotw.php:414
#: application/controllers/Lotw.php:413
#, php-format
msgid ""
"Found no certificate in file %s. If the filename contains 'key-only' this is "
"typically a certificate request which has not been processed by LoTW yet."
msgstr ""
#: application/controllers/Lotw.php:620
#: application/controllers/Lotw.php:617
msgid "LoTW ADIF Information"
msgstr ""
#: application/controllers/Lotw.php:728
#: application/controllers/Lotw.php:729
msgid "LoTW ADIF Import"
msgstr ""
#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:873
#: application/controllers/Lotw.php:756 application/controllers/Lotw.php:869
msgid "You have not defined your ARRL LoTW credentials!"
msgstr ""
#: application/controllers/Lotw.php:840
#: application/controllers/Lotw.php:836
msgid "LoTW .TQ8 Upload"
msgstr ""
#: application/controllers/Lotw.php:918
#: application/controllers/Lotw.php:914
msgid "Your ARRL username and/or password is incorrect."
msgstr ""
#: application/controllers/Lotw.php:937 application/controllers/Lotw.php:942
#: application/controllers/Lotw.php:933 application/controllers/Lotw.php:938
msgid "LoTW .TQ8 Sent"
msgstr ""
#: application/controllers/Lotw.php:949
#: application/controllers/Lotw.php:945
msgid "LoTW .TQ8 Not Sent"
msgstr ""
@@ -2430,31 +2430,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4263
#: application/models/Logbook_model.php:4264
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4269
#: application/models/Logbook_model.php:4270
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4274
#: application/models/Logbook_model.php:4275
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4277
#: application/models/Logbook_model.php:4278
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4280
#: application/models/Logbook_model.php:4281
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4283
#: application/models/Logbook_model.php:4284
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4286
#: application/models/Logbook_model.php:4287
msgid "unknown"
msgstr ""

View File

@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-09-12 10:39+0000\n"
"POT-Creation-Date: 2024-09-12 14:57+0000\n"
"PO-Revision-Date: 2024-08-30 05:57+0000\n"
"Last-Translator: F4JSU <f4jsu.radio@gmail.com>\n"
"Language-Team: French <https://translate.wavelog.org/projects/wavelog/main-"
@@ -59,11 +59,11 @@ msgstr ""
#: application/controllers/Kmlexport.php:33
#: application/controllers/Labels.php:26
#: application/controllers/Logbookadvanced.php:16
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
#: application/controllers/Lotw.php:379 application/controllers/Lotw.php:402
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:830
#: application/controllers/Lotw.php:838 application/controllers/Mode.php:15
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44
#: application/controllers/Lotw.php:76 application/controllers/Lotw.php:103
#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:826
#: application/controllers/Lotw.php:834 application/controllers/Mode.php:15
#: application/controllers/Notes.php:10 application/controllers/Options.php:15
#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
#: application/controllers/Qrz.php:253 application/controllers/Qsl.php:12
@@ -546,7 +546,7 @@ msgstr "Exporter en CFD"
#: application/controllers/Clublog.php:15 application/controllers/Cron.php:12
#: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19
#: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14
#: application/controllers/Lotw.php:27 application/controllers/Qrz.php:14
#: application/controllers/Update.php:16
msgid "Maintenance Mode is active. Try again later."
msgstr "Le mode Maintenance est actif. Réessayer plus tard."
@@ -1473,8 +1473,8 @@ msgstr "Journal avancé"
msgid "Quick Lookup"
msgstr "Recherche rapide"
#: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83
#: application/controllers/Lotw.php:125 application/views/adif/import.php:27
#: application/controllers/Lotw.php:53 application/controllers/Lotw.php:82
#: application/controllers/Lotw.php:124 application/views/adif/import.php:27
#: application/views/interface_assets/header.php:429
#: application/views/lotw/import.php:3
#: application/views/lotw_views/index.php:12
@@ -1483,19 +1483,19 @@ msgstr "Recherche rapide"
msgid "Logbook of the World"
msgstr "Logbook of the World"
#: application/controllers/Lotw.php:152
#: application/controllers/Lotw.php:151
msgid "Certificate Imported."
msgstr "Certificat importé."
#: application/controllers/Lotw.php:159
#: application/controllers/Lotw.php:158
msgid "Certificate Updated."
msgstr "Certificat mis à jour."
#: application/controllers/Lotw.php:385
#: application/controllers/Lotw.php:384
msgid "Certificate Deleted."
msgstr "Certificat supprimé."
#: application/controllers/Lotw.php:414
#: application/controllers/Lotw.php:413
#, php-format
msgid ""
"Found no certificate in file %s. If the filename contains 'key-only' this is "
@@ -1505,31 +1505,31 @@ msgstr ""
"'key-only', il s'agit généralement d'une demande de certificat qui n'a pas "
"encore été traitée par LoTW."
#: application/controllers/Lotw.php:620
#: application/controllers/Lotw.php:617
msgid "LoTW ADIF Information"
msgstr "Information ADIF LoTW"
#: application/controllers/Lotw.php:728
#: application/controllers/Lotw.php:729
msgid "LoTW ADIF Import"
msgstr "Importation ADIF LoTW"
#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:873
#: application/controllers/Lotw.php:756 application/controllers/Lotw.php:869
msgid "You have not defined your ARRL LoTW credentials!"
msgstr "Vous n'avez pas défini vos identifiants ARRL LoTW !"
#: application/controllers/Lotw.php:840
#: application/controllers/Lotw.php:836
msgid "LoTW .TQ8 Upload"
msgstr "Télécharger .TQ8 LoTW"
#: application/controllers/Lotw.php:918
#: application/controllers/Lotw.php:914
msgid "Your ARRL username and/or password is incorrect."
msgstr "Votre nom d'utilisateur et/ou mot de passe ARRL est incorrect."
#: application/controllers/Lotw.php:937 application/controllers/Lotw.php:942
#: application/controllers/Lotw.php:933 application/controllers/Lotw.php:938
msgid "LoTW .TQ8 Sent"
msgstr ".TQ8 LoTW Envoyé"
#: application/controllers/Lotw.php:949
#: application/controllers/Lotw.php:945
msgid "LoTW .TQ8 Not Sent"
msgstr ".TQ8 LoTW Pas Envoyé"
@@ -2486,31 +2486,31 @@ 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:4263
#: application/models/Logbook_model.php:4264
msgid "QSO could not be matched"
msgstr "pas de correspondance pour le QSO"
#: application/models/Logbook_model.php:4269
#: application/models/Logbook_model.php:4270
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr "confirmé par LoTW/Clublog/eQSL/Contest"
#: application/models/Logbook_model.php:4274
#: application/models/Logbook_model.php:4275
msgid "confirmed by award manager"
msgstr "confirmé par le manager de l'Award"
#: application/models/Logbook_model.php:4277
#: application/models/Logbook_model.php:4278
msgid "confirmed by cross-check of DCL data"
msgstr "confirmé par recoupement des données DCL"
#: application/models/Logbook_model.php:4280
#: application/models/Logbook_model.php:4281
msgid "confirmation pending"
msgstr "confirmation en attente"
#: application/models/Logbook_model.php:4283
#: application/models/Logbook_model.php:4284
msgid "unconfirmed"
msgstr "non confirmé"
#: application/models/Logbook_model.php:4286
#: application/models/Logbook_model.php:4287
msgid "unknown"
msgstr "inconnu"

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-09-12 10:39+0000\n"
"POT-Creation-Date: 2024-09-12 14:57+0000\n"
"PO-Revision-Date: 2024-08-17 10:49+0000\n"
"Last-Translator: Anonymous <noreply@weblate.org>\n"
"Language-Team: Croatian <https://translate.wavelog.org/projects/wavelog/main-"
@@ -56,11 +56,11 @@ msgstr ""
#: application/controllers/Kmlexport.php:33
#: application/controllers/Labels.php:26
#: application/controllers/Logbookadvanced.php:16
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
#: application/controllers/Lotw.php:379 application/controllers/Lotw.php:402
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:830
#: application/controllers/Lotw.php:838 application/controllers/Mode.php:15
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44
#: application/controllers/Lotw.php:76 application/controllers/Lotw.php:103
#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:826
#: application/controllers/Lotw.php:834 application/controllers/Mode.php:15
#: application/controllers/Notes.php:10 application/controllers/Options.php:15
#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
#: application/controllers/Qrz.php:253 application/controllers/Qsl.php:12
@@ -543,7 +543,7 @@ msgstr ""
#: application/controllers/Clublog.php:15 application/controllers/Cron.php:12
#: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19
#: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14
#: application/controllers/Lotw.php:27 application/controllers/Qrz.php:14
#: application/controllers/Update.php:16
msgid "Maintenance Mode is active. Try again later."
msgstr ""
@@ -1454,8 +1454,8 @@ msgstr ""
msgid "Quick Lookup"
msgstr ""
#: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83
#: application/controllers/Lotw.php:125 application/views/adif/import.php:27
#: application/controllers/Lotw.php:53 application/controllers/Lotw.php:82
#: application/controllers/Lotw.php:124 application/views/adif/import.php:27
#: application/views/interface_assets/header.php:429
#: application/views/lotw/import.php:3
#: application/views/lotw_views/index.php:12
@@ -1464,50 +1464,50 @@ msgstr ""
msgid "Logbook of the World"
msgstr ""
#: application/controllers/Lotw.php:152
#: application/controllers/Lotw.php:151
msgid "Certificate Imported."
msgstr ""
#: application/controllers/Lotw.php:159
#: application/controllers/Lotw.php:158
msgid "Certificate Updated."
msgstr ""
#: application/controllers/Lotw.php:385
#: application/controllers/Lotw.php:384
msgid "Certificate Deleted."
msgstr ""
#: application/controllers/Lotw.php:414
#: application/controllers/Lotw.php:413
#, php-format
msgid ""
"Found no certificate in file %s. If the filename contains 'key-only' this is "
"typically a certificate request which has not been processed by LoTW yet."
msgstr ""
#: application/controllers/Lotw.php:620
#: application/controllers/Lotw.php:617
msgid "LoTW ADIF Information"
msgstr ""
#: application/controllers/Lotw.php:728
#: application/controllers/Lotw.php:729
msgid "LoTW ADIF Import"
msgstr ""
#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:873
#: application/controllers/Lotw.php:756 application/controllers/Lotw.php:869
msgid "You have not defined your ARRL LoTW credentials!"
msgstr ""
#: application/controllers/Lotw.php:840
#: application/controllers/Lotw.php:836
msgid "LoTW .TQ8 Upload"
msgstr ""
#: application/controllers/Lotw.php:918
#: application/controllers/Lotw.php:914
msgid "Your ARRL username and/or password is incorrect."
msgstr ""
#: application/controllers/Lotw.php:937 application/controllers/Lotw.php:942
#: application/controllers/Lotw.php:933 application/controllers/Lotw.php:938
msgid "LoTW .TQ8 Sent"
msgstr ""
#: application/controllers/Lotw.php:949
#: application/controllers/Lotw.php:945
msgid "LoTW .TQ8 Not Sent"
msgstr ""
@@ -2436,31 +2436,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4263
#: application/models/Logbook_model.php:4264
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4269
#: application/models/Logbook_model.php:4270
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4274
#: application/models/Logbook_model.php:4275
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4277
#: application/models/Logbook_model.php:4278
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4280
#: application/models/Logbook_model.php:4281
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4283
#: application/models/Logbook_model.php:4284
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4286
#: application/models/Logbook_model.php:4287
msgid "unknown"
msgstr ""

View File

@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-09-12 10:39+0000\n"
"POT-Creation-Date: 2024-09-12 14:57+0000\n"
"PO-Revision-Date: 2024-08-18 19:11+0000\n"
"Last-Translator: \"Francisco (F4VSE)\" <kikosgc@users.noreply.github.com>\n"
"Language-Team: Italian <https://translate.wavelog.org/projects/wavelog/main-"
@@ -56,11 +56,11 @@ msgstr ""
#: application/controllers/Kmlexport.php:33
#: application/controllers/Labels.php:26
#: application/controllers/Logbookadvanced.php:16
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
#: application/controllers/Lotw.php:379 application/controllers/Lotw.php:402
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:830
#: application/controllers/Lotw.php:838 application/controllers/Mode.php:15
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44
#: application/controllers/Lotw.php:76 application/controllers/Lotw.php:103
#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:826
#: application/controllers/Lotw.php:834 application/controllers/Mode.php:15
#: application/controllers/Notes.php:10 application/controllers/Options.php:15
#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
#: application/controllers/Qrz.php:253 application/controllers/Qsl.php:12
@@ -543,7 +543,7 @@ msgstr "Esporta CFD"
#: application/controllers/Clublog.php:15 application/controllers/Cron.php:12
#: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19
#: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14
#: application/controllers/Lotw.php:27 application/controllers/Qrz.php:14
#: application/controllers/Update.php:16
msgid "Maintenance Mode is active. Try again later."
msgstr "Manutenzione in corso. Riprova più tardi."
@@ -1455,8 +1455,8 @@ msgstr ""
msgid "Quick Lookup"
msgstr ""
#: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83
#: application/controllers/Lotw.php:125 application/views/adif/import.php:27
#: application/controllers/Lotw.php:53 application/controllers/Lotw.php:82
#: application/controllers/Lotw.php:124 application/views/adif/import.php:27
#: application/views/interface_assets/header.php:429
#: application/views/lotw/import.php:3
#: application/views/lotw_views/index.php:12
@@ -1465,50 +1465,50 @@ msgstr ""
msgid "Logbook of the World"
msgstr ""
#: application/controllers/Lotw.php:152
#: application/controllers/Lotw.php:151
msgid "Certificate Imported."
msgstr ""
#: application/controllers/Lotw.php:159
#: application/controllers/Lotw.php:158
msgid "Certificate Updated."
msgstr ""
#: application/controllers/Lotw.php:385
#: application/controllers/Lotw.php:384
msgid "Certificate Deleted."
msgstr ""
#: application/controllers/Lotw.php:414
#: application/controllers/Lotw.php:413
#, php-format
msgid ""
"Found no certificate in file %s. If the filename contains 'key-only' this is "
"typically a certificate request which has not been processed by LoTW yet."
msgstr ""
#: application/controllers/Lotw.php:620
#: application/controllers/Lotw.php:617
msgid "LoTW ADIF Information"
msgstr ""
#: application/controllers/Lotw.php:728
#: application/controllers/Lotw.php:729
msgid "LoTW ADIF Import"
msgstr ""
#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:873
#: application/controllers/Lotw.php:756 application/controllers/Lotw.php:869
msgid "You have not defined your ARRL LoTW credentials!"
msgstr ""
#: application/controllers/Lotw.php:840
#: application/controllers/Lotw.php:836
msgid "LoTW .TQ8 Upload"
msgstr ""
#: application/controllers/Lotw.php:918
#: application/controllers/Lotw.php:914
msgid "Your ARRL username and/or password is incorrect."
msgstr ""
#: application/controllers/Lotw.php:937 application/controllers/Lotw.php:942
#: application/controllers/Lotw.php:933 application/controllers/Lotw.php:938
msgid "LoTW .TQ8 Sent"
msgstr ""
#: application/controllers/Lotw.php:949
#: application/controllers/Lotw.php:945
msgid "LoTW .TQ8 Not Sent"
msgstr ""
@@ -2434,31 +2434,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4263
#: application/models/Logbook_model.php:4264
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4269
#: application/models/Logbook_model.php:4270
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4274
#: application/models/Logbook_model.php:4275
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4277
#: application/models/Logbook_model.php:4278
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4280
#: application/models/Logbook_model.php:4281
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4283
#: application/models/Logbook_model.php:4284
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4286
#: application/models/Logbook_model.php:4287
msgid "unknown"
msgstr ""

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-09-12 10:39+0000\n"
"POT-Creation-Date: 2024-09-12 14:57+0000\n"
"PO-Revision-Date: 2024-08-17 10:47+0000\n"
"Last-Translator: Anonymous <noreply@weblate.org>\n"
"Language-Team: Dutch <https://translate.wavelog.org/projects/wavelog/main-"
@@ -55,11 +55,11 @@ msgstr ""
#: application/controllers/Kmlexport.php:33
#: application/controllers/Labels.php:26
#: application/controllers/Logbookadvanced.php:16
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
#: application/controllers/Lotw.php:379 application/controllers/Lotw.php:402
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:830
#: application/controllers/Lotw.php:838 application/controllers/Mode.php:15
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44
#: application/controllers/Lotw.php:76 application/controllers/Lotw.php:103
#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:826
#: application/controllers/Lotw.php:834 application/controllers/Mode.php:15
#: application/controllers/Notes.php:10 application/controllers/Options.php:15
#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
#: application/controllers/Qrz.php:253 application/controllers/Qsl.php:12
@@ -542,7 +542,7 @@ msgstr ""
#: application/controllers/Clublog.php:15 application/controllers/Cron.php:12
#: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19
#: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14
#: application/controllers/Lotw.php:27 application/controllers/Qrz.php:14
#: application/controllers/Update.php:16
msgid "Maintenance Mode is active. Try again later."
msgstr ""
@@ -1452,8 +1452,8 @@ msgstr ""
msgid "Quick Lookup"
msgstr ""
#: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83
#: application/controllers/Lotw.php:125 application/views/adif/import.php:27
#: application/controllers/Lotw.php:53 application/controllers/Lotw.php:82
#: application/controllers/Lotw.php:124 application/views/adif/import.php:27
#: application/views/interface_assets/header.php:429
#: application/views/lotw/import.php:3
#: application/views/lotw_views/index.php:12
@@ -1462,50 +1462,50 @@ msgstr ""
msgid "Logbook of the World"
msgstr ""
#: application/controllers/Lotw.php:152
#: application/controllers/Lotw.php:151
msgid "Certificate Imported."
msgstr ""
#: application/controllers/Lotw.php:159
#: application/controllers/Lotw.php:158
msgid "Certificate Updated."
msgstr ""
#: application/controllers/Lotw.php:385
#: application/controllers/Lotw.php:384
msgid "Certificate Deleted."
msgstr ""
#: application/controllers/Lotw.php:414
#: application/controllers/Lotw.php:413
#, php-format
msgid ""
"Found no certificate in file %s. If the filename contains 'key-only' this is "
"typically a certificate request which has not been processed by LoTW yet."
msgstr ""
#: application/controllers/Lotw.php:620
#: application/controllers/Lotw.php:617
msgid "LoTW ADIF Information"
msgstr ""
#: application/controllers/Lotw.php:728
#: application/controllers/Lotw.php:729
msgid "LoTW ADIF Import"
msgstr ""
#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:873
#: application/controllers/Lotw.php:756 application/controllers/Lotw.php:869
msgid "You have not defined your ARRL LoTW credentials!"
msgstr ""
#: application/controllers/Lotw.php:840
#: application/controllers/Lotw.php:836
msgid "LoTW .TQ8 Upload"
msgstr ""
#: application/controllers/Lotw.php:918
#: application/controllers/Lotw.php:914
msgid "Your ARRL username and/or password is incorrect."
msgstr ""
#: application/controllers/Lotw.php:937 application/controllers/Lotw.php:942
#: application/controllers/Lotw.php:933 application/controllers/Lotw.php:938
msgid "LoTW .TQ8 Sent"
msgstr ""
#: application/controllers/Lotw.php:949
#: application/controllers/Lotw.php:945
msgid "LoTW .TQ8 Not Sent"
msgstr ""
@@ -2431,31 +2431,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4263
#: application/models/Logbook_model.php:4264
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4269
#: application/models/Logbook_model.php:4270
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4274
#: application/models/Logbook_model.php:4275
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4277
#: application/models/Logbook_model.php:4278
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4280
#: application/models/Logbook_model.php:4281
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4283
#: application/models/Logbook_model.php:4284
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4286
#: application/models/Logbook_model.php:4287
msgid "unknown"
msgstr ""

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-09-12 10:39+0000\n"
"POT-Creation-Date: 2024-09-12 14:57+0000\n"
"PO-Revision-Date: 2024-09-08 22:18+0000\n"
"Last-Translator: Maciej <github@maciej.website>\n"
"Language-Team: Polish <https://translate.wavelog.org/projects/wavelog/main-"
@@ -56,11 +56,11 @@ msgstr ""
#: application/controllers/Kmlexport.php:33
#: application/controllers/Labels.php:26
#: application/controllers/Logbookadvanced.php:16
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
#: application/controllers/Lotw.php:379 application/controllers/Lotw.php:402
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:830
#: application/controllers/Lotw.php:838 application/controllers/Mode.php:15
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44
#: application/controllers/Lotw.php:76 application/controllers/Lotw.php:103
#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:826
#: application/controllers/Lotw.php:834 application/controllers/Mode.php:15
#: application/controllers/Notes.php:10 application/controllers/Options.php:15
#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
#: application/controllers/Qrz.php:253 application/controllers/Qsl.php:12
@@ -543,7 +543,7 @@ msgstr "Eksport CFD"
#: application/controllers/Clublog.php:15 application/controllers/Cron.php:12
#: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19
#: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14
#: application/controllers/Lotw.php:27 application/controllers/Qrz.php:14
#: application/controllers/Update.php:16
msgid "Maintenance Mode is active. Try again later."
msgstr ""
@@ -1454,8 +1454,8 @@ msgstr "Zaawansowany logbook"
msgid "Quick Lookup"
msgstr "Szybkie wyszukiwanie"
#: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83
#: application/controllers/Lotw.php:125 application/views/adif/import.php:27
#: application/controllers/Lotw.php:53 application/controllers/Lotw.php:82
#: application/controllers/Lotw.php:124 application/views/adif/import.php:27
#: application/views/interface_assets/header.php:429
#: application/views/lotw/import.php:3
#: application/views/lotw_views/index.php:12
@@ -1464,50 +1464,50 @@ msgstr "Szybkie wyszukiwanie"
msgid "Logbook of the World"
msgstr ""
#: application/controllers/Lotw.php:152
#: application/controllers/Lotw.php:151
msgid "Certificate Imported."
msgstr "Zaimportowano certyfikat."
#: application/controllers/Lotw.php:159
#: application/controllers/Lotw.php:158
msgid "Certificate Updated."
msgstr "Zaktualizowano certyfikat."
#: application/controllers/Lotw.php:385
#: application/controllers/Lotw.php:384
msgid "Certificate Deleted."
msgstr "Usunięto certyfikat."
#: application/controllers/Lotw.php:414
#: application/controllers/Lotw.php:413
#, php-format
msgid ""
"Found no certificate in file %s. If the filename contains 'key-only' this is "
"typically a certificate request which has not been processed by LoTW yet."
msgstr ""
#: application/controllers/Lotw.php:620
#: application/controllers/Lotw.php:617
msgid "LoTW ADIF Information"
msgstr "Informacje ADIF LoTW"
#: application/controllers/Lotw.php:728
#: application/controllers/Lotw.php:729
msgid "LoTW ADIF Import"
msgstr "Import ADIF LoTW"
#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:873
#: application/controllers/Lotw.php:756 application/controllers/Lotw.php:869
msgid "You have not defined your ARRL LoTW credentials!"
msgstr "Nie zdefiniowano danych logowania ARRL LoTW!"
#: application/controllers/Lotw.php:840
#: application/controllers/Lotw.php:836
msgid "LoTW .TQ8 Upload"
msgstr ""
#: application/controllers/Lotw.php:918
#: application/controllers/Lotw.php:914
msgid "Your ARRL username and/or password is incorrect."
msgstr "Twoja nazwa użytkownika i/lub hasło ARRL jest niepoprawne."
#: application/controllers/Lotw.php:937 application/controllers/Lotw.php:942
#: application/controllers/Lotw.php:933 application/controllers/Lotw.php:938
msgid "LoTW .TQ8 Sent"
msgstr ""
#: application/controllers/Lotw.php:949
#: application/controllers/Lotw.php:945
msgid "LoTW .TQ8 Not Sent"
msgstr ""
@@ -2437,31 +2437,31 @@ msgstr "HRDlog: Nie znaleziono łączności do przesłania dla stacji o znaku: "
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4263
#: application/models/Logbook_model.php:4264
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4269
#: application/models/Logbook_model.php:4270
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4274
#: application/models/Logbook_model.php:4275
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4277
#: application/models/Logbook_model.php:4278
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4280
#: application/models/Logbook_model.php:4281
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4283
#: application/models/Logbook_model.php:4284
msgid "unconfirmed"
msgstr "niepotwierdzone"
#: application/models/Logbook_model.php:4286
#: application/models/Logbook_model.php:4287
msgid "unknown"
msgstr ""

View File

@@ -111,6 +111,10 @@ msgstr ""
#: application/controllers/User.php:762 application/controllers/User.php:1045
#: application/controllers/User.php:1247
#: application/controllers/User_options.php:9
#: application/controllers/Lotw.php:44 application/controllers/Lotw.php:76
#: application/controllers/Lotw.php:103 application/controllers/Lotw.php:378
#: application/controllers/Lotw.php:401 application/controllers/Lotw.php:826
#: application/controllers/Lotw.php:834
msgid "You're not allowed to do that!"
msgstr "Não é permitido fazer isso!"
@@ -545,7 +549,7 @@ msgstr "Exportar CFD"
#: application/controllers/Clublog.php:15 application/controllers/Cron.php:12
#: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19
#: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14
#: application/controllers/Update.php:16
#: application/controllers/Update.php:16 application/controllers/Lotw.php:27
msgid "Maintenance Mode is active. Try again later."
msgstr "O modo de manutenção está ativo. Tente novamente mais tarde."
@@ -1475,22 +1479,24 @@ msgstr "Consulta rápida"
#: application/views/lotw_views/index.php:12
#: application/views/lotw_views/upload_cert.php:3
#: application/views/user/edit.php:705 application/views/visitor/index.php:324
#: application/controllers/Lotw.php:53 application/controllers/Lotw.php:82
#: application/controllers/Lotw.php:124
msgid "Logbook of the World"
msgstr "Logbook of the World"
#: application/controllers/Lotw.php:152
#: application/controllers/Lotw.php:152 application/controllers/Lotw.php:151
msgid "Certificate Imported."
msgstr "Certificado Importado."
#: application/controllers/Lotw.php:159
#: application/controllers/Lotw.php:159 application/controllers/Lotw.php:158
msgid "Certificate Updated."
msgstr "Certificado atualizado."
#: application/controllers/Lotw.php:385
#: application/controllers/Lotw.php:385 application/controllers/Lotw.php:384
msgid "Certificate Deleted."
msgstr "Certificado eliminado."
#: application/controllers/Lotw.php:414
#: application/controllers/Lotw.php:414 application/controllers/Lotw.php:413
#, php-format
msgid ""
"Found no certificate in file %s. If the filename contains 'key-only' this is "
@@ -1500,31 +1506,33 @@ msgstr ""
"contiver 'key-only', isto é tipicamente um pedido de certificado que ainda "
"não foi processado pelo LoTW."
#: application/controllers/Lotw.php:620
#: application/controllers/Lotw.php:620 application/controllers/Lotw.php:617
msgid "LoTW ADIF Information"
msgstr "Informações sobre o ADIF LoTW"
#: application/controllers/Lotw.php:728
#: application/controllers/Lotw.php:728 application/controllers/Lotw.php:729
msgid "LoTW ADIF Import"
msgstr "Importação ADIF LoTW"
#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:873
#: application/controllers/Lotw.php:756 application/controllers/Lotw.php:869
msgid "You have not defined your ARRL LoTW credentials!"
msgstr "Não definiu as suas credenciais LoTW da ARRL !"
#: application/controllers/Lotw.php:840
#: application/controllers/Lotw.php:840 application/controllers/Lotw.php:836
msgid "LoTW .TQ8 Upload"
msgstr "Enviar .TQ8 LoTW"
#: application/controllers/Lotw.php:918
#: application/controllers/Lotw.php:918 application/controllers/Lotw.php:914
msgid "Your ARRL username and/or password is incorrect."
msgstr "O seu nome de utilizador e/ou palavra-passe da ARRL está incorreto."
#: application/controllers/Lotw.php:937 application/controllers/Lotw.php:942
#: application/controllers/Lotw.php:933 application/controllers/Lotw.php:938
msgid "LoTW .TQ8 Sent"
msgstr ".TQ8 LoTW enviado"
#: application/controllers/Lotw.php:949
#: application/controllers/Lotw.php:949 application/controllers/Lotw.php:945
msgid "LoTW .TQ8 Not Sent"
msgstr ".TQ8 LoTW não enviado"
@@ -2485,30 +2493,37 @@ msgstr ""
"HRDlog: Não foram encontrados perfis de estação com credenciais do HRDlog."
#: application/models/Logbook_model.php:4263
#: application/models/Logbook_model.php:4264
msgid "QSO could not be matched"
msgstr "Não há correspondência de contactos"
#: application/models/Logbook_model.php:4269
#: application/models/Logbook_model.php:4270
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr "confirmado por LoTW/Clublog/eQSL/Contest"
#: application/models/Logbook_model.php:4274
#: application/models/Logbook_model.php:4275
msgid "confirmed by award manager"
msgstr "confirmado pelo gestor do diploma"
#: application/models/Logbook_model.php:4277
#: application/models/Logbook_model.php:4278
msgid "confirmed by cross-check of DCL data"
msgstr "confirmado pelo controlo cruzado dos dados da DCL"
#: application/models/Logbook_model.php:4280
#: application/models/Logbook_model.php:4281
msgid "confirmation pending"
msgstr "confirmação pendente"
#: application/models/Logbook_model.php:4283
#: application/models/Logbook_model.php:4284
msgid "unconfirmed"
msgstr "não confirmado"
#: application/models/Logbook_model.php:4286
#: application/models/Logbook_model.php:4287
msgid "unknown"
msgstr "desconhecido"

View File

@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-09-12 10:39+0000\n"
"POT-Creation-Date: 2024-09-12 14:57+0000\n"
"PO-Revision-Date: 2024-09-10 14:54+0000\n"
"Last-Translator: Michael Skolsky <r1blh@yandex.ru>\n"
"Language-Team: Russian <https://translate.wavelog.org/projects/wavelog/main-"
@@ -58,11 +58,11 @@ msgstr ""
#: application/controllers/Kmlexport.php:33
#: application/controllers/Labels.php:26
#: application/controllers/Logbookadvanced.php:16
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
#: application/controllers/Lotw.php:379 application/controllers/Lotw.php:402
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:830
#: application/controllers/Lotw.php:838 application/controllers/Mode.php:15
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44
#: application/controllers/Lotw.php:76 application/controllers/Lotw.php:103
#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:826
#: application/controllers/Lotw.php:834 application/controllers/Mode.php:15
#: application/controllers/Notes.php:10 application/controllers/Options.php:15
#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
#: application/controllers/Qrz.php:253 application/controllers/Qsl.php:12
@@ -545,7 +545,7 @@ msgstr "Экспорт CDF"
#: application/controllers/Clublog.php:15 application/controllers/Cron.php:12
#: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19
#: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14
#: application/controllers/Lotw.php:27 application/controllers/Qrz.php:14
#: application/controllers/Update.php:16
msgid "Maintenance Mode is active. Try again later."
msgstr "Сервер в режиме обслуживания. Попробуйте позже."
@@ -1470,8 +1470,8 @@ msgstr "Расширенный журнал"
msgid "Quick Lookup"
msgstr "Быстрый поиск"
#: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83
#: application/controllers/Lotw.php:125 application/views/adif/import.php:27
#: application/controllers/Lotw.php:53 application/controllers/Lotw.php:82
#: application/controllers/Lotw.php:124 application/views/adif/import.php:27
#: application/views/interface_assets/header.php:429
#: application/views/lotw/import.php:3
#: application/views/lotw_views/index.php:12
@@ -1480,19 +1480,19 @@ msgstr "Быстрый поиск"
msgid "Logbook of the World"
msgstr "Logbook of the World"
#: application/controllers/Lotw.php:152
#: application/controllers/Lotw.php:151
msgid "Certificate Imported."
msgstr "Сертификат импортирован."
#: application/controllers/Lotw.php:159
#: application/controllers/Lotw.php:158
msgid "Certificate Updated."
msgstr "Сертификат обновлен."
#: application/controllers/Lotw.php:385
#: application/controllers/Lotw.php:384
msgid "Certificate Deleted."
msgstr "Сертификат удален."
#: application/controllers/Lotw.php:414
#: application/controllers/Lotw.php:413
#, php-format
msgid ""
"Found no certificate in file %s. If the filename contains 'key-only' this is "
@@ -1501,31 +1501,31 @@ msgstr ""
"В файле %s не найдено сертификата. Если имя файла содержит 'key-only', это "
"обычно запрос на сертификат, который еще не обработан LoTW."
#: application/controllers/Lotw.php:620
#: application/controllers/Lotw.php:617
msgid "LoTW ADIF Information"
msgstr "LoTW. Информация ADIF"
#: application/controllers/Lotw.php:728
#: application/controllers/Lotw.php:729
msgid "LoTW ADIF Import"
msgstr "LoTW. Импорт ADIF"
#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:873
#: application/controllers/Lotw.php:756 application/controllers/Lotw.php:869
msgid "You have not defined your ARRL LoTW credentials!"
msgstr "Вы не указали свои учетные данные ARRL LoTW!"
#: application/controllers/Lotw.php:840
#: application/controllers/Lotw.php:836
msgid "LoTW .TQ8 Upload"
msgstr "LoTW. TQ8 загрузка"
#: application/controllers/Lotw.php:918
#: application/controllers/Lotw.php:914
msgid "Your ARRL username and/or password is incorrect."
msgstr "Ваше имя пользователя и/или пароль ARRL неверны."
#: application/controllers/Lotw.php:937 application/controllers/Lotw.php:942
#: application/controllers/Lotw.php:933 application/controllers/Lotw.php:938
msgid "LoTW .TQ8 Sent"
msgstr "LoTW. TQ8 загружен"
#: application/controllers/Lotw.php:949
#: application/controllers/Lotw.php:945
msgid "LoTW .TQ8 Not Sent"
msgstr "LoTW. TQ8 не загружен"
@@ -2479,31 +2479,31 @@ msgstr "HRDlog: на найдены QSO для загруки для позыв
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr "HRDlog: не найдены профили QTH с данными входя на HRDlog."
#: application/models/Logbook_model.php:4263
#: application/models/Logbook_model.php:4264
msgid "QSO could not be matched"
msgstr "QSO не может быть сопоставлено"
#: application/models/Logbook_model.php:4269
#: application/models/Logbook_model.php:4270
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr "подтверждено LoTW/Clublog/eQSL/Contest"
#: application/models/Logbook_model.php:4274
#: application/models/Logbook_model.php:4275
msgid "confirmed by award manager"
msgstr "подтверждено менеджером диплома"
#: application/models/Logbook_model.php:4277
#: application/models/Logbook_model.php:4278
msgid "confirmed by cross-check of DCL data"
msgstr "подтверждено кросс-проверкой с данными DCL"
#: application/models/Logbook_model.php:4280
#: application/models/Logbook_model.php:4281
msgid "confirmation pending"
msgstr "подтверждение ожидается"
#: application/models/Logbook_model.php:4283
#: application/models/Logbook_model.php:4284
msgid "unconfirmed"
msgstr "не подтверждено"
#: application/models/Logbook_model.php:4286
#: application/models/Logbook_model.php:4287
msgid "unknown"
msgstr "неизвестно"

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-09-12 10:39+0000\n"
"POT-Creation-Date: 2024-09-12 14:57+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-"
@@ -55,11 +55,11 @@ msgstr ""
#: application/controllers/Kmlexport.php:33
#: application/controllers/Labels.php:26
#: application/controllers/Logbookadvanced.php:16
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
#: application/controllers/Lotw.php:379 application/controllers/Lotw.php:402
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:830
#: application/controllers/Lotw.php:838 application/controllers/Mode.php:15
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44
#: application/controllers/Lotw.php:76 application/controllers/Lotw.php:103
#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:826
#: application/controllers/Lotw.php:834 application/controllers/Mode.php:15
#: application/controllers/Notes.php:10 application/controllers/Options.php:15
#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
#: application/controllers/Qrz.php:253 application/controllers/Qsl.php:12
@@ -542,7 +542,7 @@ msgstr ""
#: application/controllers/Clublog.php:15 application/controllers/Cron.php:12
#: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19
#: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14
#: application/controllers/Lotw.php:27 application/controllers/Qrz.php:14
#: application/controllers/Update.php:16
msgid "Maintenance Mode is active. Try again later."
msgstr ""
@@ -1452,8 +1452,8 @@ msgstr ""
msgid "Quick Lookup"
msgstr ""
#: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83
#: application/controllers/Lotw.php:125 application/views/adif/import.php:27
#: application/controllers/Lotw.php:53 application/controllers/Lotw.php:82
#: application/controllers/Lotw.php:124 application/views/adif/import.php:27
#: application/views/interface_assets/header.php:429
#: application/views/lotw/import.php:3
#: application/views/lotw_views/index.php:12
@@ -1462,50 +1462,50 @@ msgstr ""
msgid "Logbook of the World"
msgstr ""
#: application/controllers/Lotw.php:152
#: application/controllers/Lotw.php:151
msgid "Certificate Imported."
msgstr ""
#: application/controllers/Lotw.php:159
#: application/controllers/Lotw.php:158
msgid "Certificate Updated."
msgstr ""
#: application/controllers/Lotw.php:385
#: application/controllers/Lotw.php:384
msgid "Certificate Deleted."
msgstr ""
#: application/controllers/Lotw.php:414
#: application/controllers/Lotw.php:413
#, php-format
msgid ""
"Found no certificate in file %s. If the filename contains 'key-only' this is "
"typically a certificate request which has not been processed by LoTW yet."
msgstr ""
#: application/controllers/Lotw.php:620
#: application/controllers/Lotw.php:617
msgid "LoTW ADIF Information"
msgstr ""
#: application/controllers/Lotw.php:728
#: application/controllers/Lotw.php:729
msgid "LoTW ADIF Import"
msgstr ""
#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:873
#: application/controllers/Lotw.php:756 application/controllers/Lotw.php:869
msgid "You have not defined your ARRL LoTW credentials!"
msgstr ""
#: application/controllers/Lotw.php:840
#: application/controllers/Lotw.php:836
msgid "LoTW .TQ8 Upload"
msgstr ""
#: application/controllers/Lotw.php:918
#: application/controllers/Lotw.php:914
msgid "Your ARRL username and/or password is incorrect."
msgstr ""
#: application/controllers/Lotw.php:937 application/controllers/Lotw.php:942
#: application/controllers/Lotw.php:933 application/controllers/Lotw.php:938
msgid "LoTW .TQ8 Sent"
msgstr ""
#: application/controllers/Lotw.php:949
#: application/controllers/Lotw.php:945
msgid "LoTW .TQ8 Not Sent"
msgstr ""
@@ -2431,31 +2431,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4263
#: application/models/Logbook_model.php:4264
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4269
#: application/models/Logbook_model.php:4270
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4274
#: application/models/Logbook_model.php:4275
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4277
#: application/models/Logbook_model.php:4278
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4280
#: application/models/Logbook_model.php:4281
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4283
#: application/models/Logbook_model.php:4284
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4286
#: application/models/Logbook_model.php:4287
msgid "unknown"
msgstr ""

View File

@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-09-12 10:39+0000\n"
"POT-Creation-Date: 2024-09-12 14:57+0000\n"
"PO-Revision-Date: 2024-09-05 09:30+0000\n"
"Last-Translator: Dragan Đorđević <4o4a.dragan@gmail.com>\n"
"Language-Team: Serbian <https://translate.wavelog.org/projects/wavelog/main-"
@@ -58,11 +58,11 @@ msgstr ""
#: application/controllers/Kmlexport.php:33
#: application/controllers/Labels.php:26
#: application/controllers/Logbookadvanced.php:16
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
#: application/controllers/Lotw.php:379 application/controllers/Lotw.php:402
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:830
#: application/controllers/Lotw.php:838 application/controllers/Mode.php:15
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44
#: application/controllers/Lotw.php:76 application/controllers/Lotw.php:103
#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:826
#: application/controllers/Lotw.php:834 application/controllers/Mode.php:15
#: application/controllers/Notes.php:10 application/controllers/Options.php:15
#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
#: application/controllers/Qrz.php:253 application/controllers/Qsl.php:12
@@ -545,7 +545,7 @@ msgstr "Izvezi CFD"
#: application/controllers/Clublog.php:15 application/controllers/Cron.php:12
#: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19
#: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14
#: application/controllers/Lotw.php:27 application/controllers/Qrz.php:14
#: application/controllers/Update.php:16
msgid "Maintenance Mode is active. Try again later."
msgstr "Aktivan je mod održavanja. Pokušajte ponovo kasnije."
@@ -1470,8 +1470,8 @@ msgstr "Nepredni dnevnik"
msgid "Quick Lookup"
msgstr "Brza pretraga"
#: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83
#: application/controllers/Lotw.php:125 application/views/adif/import.php:27
#: application/controllers/Lotw.php:53 application/controllers/Lotw.php:82
#: application/controllers/Lotw.php:124 application/views/adif/import.php:27
#: application/views/interface_assets/header.php:429
#: application/views/lotw/import.php:3
#: application/views/lotw_views/index.php:12
@@ -1480,19 +1480,19 @@ msgstr "Brza pretraga"
msgid "Logbook of the World"
msgstr "Loogbok of the World"
#: application/controllers/Lotw.php:152
#: application/controllers/Lotw.php:151
msgid "Certificate Imported."
msgstr "Sertifikat je uvezen."
#: application/controllers/Lotw.php:159
#: application/controllers/Lotw.php:158
msgid "Certificate Updated."
msgstr "Sertifikat je ažuriran."
#: application/controllers/Lotw.php:385
#: application/controllers/Lotw.php:384
msgid "Certificate Deleted."
msgstr "Sertifikat je izbrisan."
#: application/controllers/Lotw.php:414
#: application/controllers/Lotw.php:413
#, php-format
msgid ""
"Found no certificate in file %s. If the filename contains 'key-only' this is "
@@ -1501,31 +1501,31 @@ msgstr ""
"Nije pronađen sertifikat %s. Ako naziv datoteke sadrži 'key-only' to je "
"tipično zahtev za sertifikat koji još nije obrađen od strane LoTW."
#: application/controllers/Lotw.php:620
#: application/controllers/Lotw.php:617
msgid "LoTW ADIF Information"
msgstr "Informacija o LoTW ADIF"
#: application/controllers/Lotw.php:728
#: application/controllers/Lotw.php:729
msgid "LoTW ADIF Import"
msgstr "Uvoz LoTW ADIF"
#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:873
#: application/controllers/Lotw.php:756 application/controllers/Lotw.php:869
msgid "You have not defined your ARRL LoTW credentials!"
msgstr "Niste definisali vaše ARRL LoTW kredencijale!"
#: application/controllers/Lotw.php:840
#: application/controllers/Lotw.php:836
msgid "LoTW .TQ8 Upload"
msgstr "LoTW .TQ8 učitavanje"
#: application/controllers/Lotw.php:918
#: application/controllers/Lotw.php:914
msgid "Your ARRL username and/or password is incorrect."
msgstr "Vaše ARRL korisničko ime i/ili lozinka su netačni."
#: application/controllers/Lotw.php:937 application/controllers/Lotw.php:942
#: application/controllers/Lotw.php:933 application/controllers/Lotw.php:938
msgid "LoTW .TQ8 Sent"
msgstr "LoTW .TQ8 je poslat"
#: application/controllers/Lotw.php:949
#: application/controllers/Lotw.php:945
msgid "LoTW .TQ8 Not Sent"
msgstr "LoTW .TQ8 nije poslat"
@@ -2481,31 +2481,31 @@ 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:4263
#: application/models/Logbook_model.php:4264
msgid "QSO could not be matched"
msgstr "QSO se ne poklapa"
#: application/models/Logbook_model.php:4269
#: application/models/Logbook_model.php:4270
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr "potvrđeno preko LoTW/Clublog/eQSL/Kontest"
#: application/models/Logbook_model.php:4274
#: application/models/Logbook_model.php:4275
msgid "confirmed by award manager"
msgstr "potvrđeno od strane menadžera za diplome"
#: application/models/Logbook_model.php:4277
#: application/models/Logbook_model.php:4278
msgid "confirmed by cross-check of DCL data"
msgstr "potvrđeno unakrsnom proverom DCL podataka"
#: application/models/Logbook_model.php:4280
#: application/models/Logbook_model.php:4281
msgid "confirmation pending"
msgstr "čeka potvrđivanje"
#: application/models/Logbook_model.php:4283
#: application/models/Logbook_model.php:4284
msgid "unconfirmed"
msgstr "nepotvrđeno"
#: application/models/Logbook_model.php:4286
#: application/models/Logbook_model.php:4287
msgid "unknown"
msgstr "nepoznato"

View File

@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-09-12 10:39+0000\n"
"POT-Creation-Date: 2024-09-12 14:57+0000\n"
"PO-Revision-Date: 2024-08-17 10:48+0000\n"
"Last-Translator: Anonymous <noreply@weblate.org>\n"
"Language-Team: Swedish <https://translate.wavelog.org/projects/wavelog/main-"
@@ -54,11 +54,11 @@ msgstr ""
#: application/controllers/Kmlexport.php:33
#: application/controllers/Labels.php:26
#: application/controllers/Logbookadvanced.php:16
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
#: application/controllers/Lotw.php:379 application/controllers/Lotw.php:402
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:830
#: application/controllers/Lotw.php:838 application/controllers/Mode.php:15
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44
#: application/controllers/Lotw.php:76 application/controllers/Lotw.php:103
#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:826
#: application/controllers/Lotw.php:834 application/controllers/Mode.php:15
#: application/controllers/Notes.php:10 application/controllers/Options.php:15
#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
#: application/controllers/Qrz.php:253 application/controllers/Qsl.php:12
@@ -541,7 +541,7 @@ msgstr ""
#: application/controllers/Clublog.php:15 application/controllers/Cron.php:12
#: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19
#: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14
#: application/controllers/Lotw.php:27 application/controllers/Qrz.php:14
#: application/controllers/Update.php:16
msgid "Maintenance Mode is active. Try again later."
msgstr ""
@@ -1453,8 +1453,8 @@ msgstr ""
msgid "Quick Lookup"
msgstr ""
#: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83
#: application/controllers/Lotw.php:125 application/views/adif/import.php:27
#: application/controllers/Lotw.php:53 application/controllers/Lotw.php:82
#: application/controllers/Lotw.php:124 application/views/adif/import.php:27
#: application/views/interface_assets/header.php:429
#: application/views/lotw/import.php:3
#: application/views/lotw_views/index.php:12
@@ -1463,50 +1463,50 @@ msgstr ""
msgid "Logbook of the World"
msgstr ""
#: application/controllers/Lotw.php:152
#: application/controllers/Lotw.php:151
msgid "Certificate Imported."
msgstr ""
#: application/controllers/Lotw.php:159
#: application/controllers/Lotw.php:158
msgid "Certificate Updated."
msgstr ""
#: application/controllers/Lotw.php:385
#: application/controllers/Lotw.php:384
msgid "Certificate Deleted."
msgstr ""
#: application/controllers/Lotw.php:414
#: application/controllers/Lotw.php:413
#, php-format
msgid ""
"Found no certificate in file %s. If the filename contains 'key-only' this is "
"typically a certificate request which has not been processed by LoTW yet."
msgstr ""
#: application/controllers/Lotw.php:620
#: application/controllers/Lotw.php:617
msgid "LoTW ADIF Information"
msgstr ""
#: application/controllers/Lotw.php:728
#: application/controllers/Lotw.php:729
msgid "LoTW ADIF Import"
msgstr ""
#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:873
#: application/controllers/Lotw.php:756 application/controllers/Lotw.php:869
msgid "You have not defined your ARRL LoTW credentials!"
msgstr ""
#: application/controllers/Lotw.php:840
#: application/controllers/Lotw.php:836
msgid "LoTW .TQ8 Upload"
msgstr ""
#: application/controllers/Lotw.php:918
#: application/controllers/Lotw.php:914
msgid "Your ARRL username and/or password is incorrect."
msgstr ""
#: application/controllers/Lotw.php:937 application/controllers/Lotw.php:942
#: application/controllers/Lotw.php:933 application/controllers/Lotw.php:938
msgid "LoTW .TQ8 Sent"
msgstr ""
#: application/controllers/Lotw.php:949
#: application/controllers/Lotw.php:945
msgid "LoTW .TQ8 Not Sent"
msgstr ""
@@ -2432,31 +2432,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4263
#: application/models/Logbook_model.php:4264
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4269
#: application/models/Logbook_model.php:4270
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4274
#: application/models/Logbook_model.php:4275
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4277
#: application/models/Logbook_model.php:4278
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4280
#: application/models/Logbook_model.php:4281
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4283
#: application/models/Logbook_model.php:4284
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4286
#: application/models/Logbook_model.php:4287
msgid "unknown"
msgstr ""

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-09-12 10:39+0000\n"
"POT-Creation-Date: 2024-09-12 14:57+0000\n"
"PO-Revision-Date: 2024-08-17 10:48+0000\n"
"Last-Translator: Halil AYYILDIZ <ta2lghalil@gmail.com>\n"
"Language-Team: Turkish <https://translate.wavelog.org/projects/wavelog/main-"
@@ -55,11 +55,11 @@ msgstr ""
#: application/controllers/Kmlexport.php:33
#: application/controllers/Labels.php:26
#: application/controllers/Logbookadvanced.php:16
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
#: application/controllers/Lotw.php:379 application/controllers/Lotw.php:402
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:830
#: application/controllers/Lotw.php:838 application/controllers/Mode.php:15
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44
#: application/controllers/Lotw.php:76 application/controllers/Lotw.php:103
#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:826
#: application/controllers/Lotw.php:834 application/controllers/Mode.php:15
#: application/controllers/Notes.php:10 application/controllers/Options.php:15
#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
#: application/controllers/Qrz.php:253 application/controllers/Qsl.php:12
@@ -542,7 +542,7 @@ msgstr "CFD Dışa Aktarımı"
#: application/controllers/Clublog.php:15 application/controllers/Cron.php:12
#: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19
#: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14
#: application/controllers/Lotw.php:27 application/controllers/Qrz.php:14
#: application/controllers/Update.php:16
msgid "Maintenance Mode is active. Try again later."
msgstr "Bakım Modu aktif. Daha sonra tekrar deneyin."
@@ -1458,8 +1458,8 @@ msgstr ""
msgid "Quick Lookup"
msgstr ""
#: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83
#: application/controllers/Lotw.php:125 application/views/adif/import.php:27
#: application/controllers/Lotw.php:53 application/controllers/Lotw.php:82
#: application/controllers/Lotw.php:124 application/views/adif/import.php:27
#: application/views/interface_assets/header.php:429
#: application/views/lotw/import.php:3
#: application/views/lotw_views/index.php:12
@@ -1468,50 +1468,50 @@ msgstr ""
msgid "Logbook of the World"
msgstr ""
#: application/controllers/Lotw.php:152
#: application/controllers/Lotw.php:151
msgid "Certificate Imported."
msgstr ""
#: application/controllers/Lotw.php:159
#: application/controllers/Lotw.php:158
msgid "Certificate Updated."
msgstr ""
#: application/controllers/Lotw.php:385
#: application/controllers/Lotw.php:384
msgid "Certificate Deleted."
msgstr ""
#: application/controllers/Lotw.php:414
#: application/controllers/Lotw.php:413
#, php-format
msgid ""
"Found no certificate in file %s. If the filename contains 'key-only' this is "
"typically a certificate request which has not been processed by LoTW yet."
msgstr ""
#: application/controllers/Lotw.php:620
#: application/controllers/Lotw.php:617
msgid "LoTW ADIF Information"
msgstr ""
#: application/controllers/Lotw.php:728
#: application/controllers/Lotw.php:729
msgid "LoTW ADIF Import"
msgstr ""
#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:873
#: application/controllers/Lotw.php:756 application/controllers/Lotw.php:869
msgid "You have not defined your ARRL LoTW credentials!"
msgstr ""
#: application/controllers/Lotw.php:840
#: application/controllers/Lotw.php:836
msgid "LoTW .TQ8 Upload"
msgstr ""
#: application/controllers/Lotw.php:918
#: application/controllers/Lotw.php:914
msgid "Your ARRL username and/or password is incorrect."
msgstr ""
#: application/controllers/Lotw.php:937 application/controllers/Lotw.php:942
#: application/controllers/Lotw.php:933 application/controllers/Lotw.php:938
msgid "LoTW .TQ8 Sent"
msgstr ""
#: application/controllers/Lotw.php:949
#: application/controllers/Lotw.php:945
msgid "LoTW .TQ8 Not Sent"
msgstr ""
@@ -2437,31 +2437,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4263
#: application/models/Logbook_model.php:4264
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4269
#: application/models/Logbook_model.php:4270
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4274
#: application/models/Logbook_model.php:4275
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4277
#: application/models/Logbook_model.php:4278
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4280
#: application/models/Logbook_model.php:4281
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4283
#: application/models/Logbook_model.php:4284
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4286
#: application/models/Logbook_model.php:4287
msgid "unknown"
msgstr ""

View File

@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-09-12 10:39+0000\n"
"POT-Creation-Date: 2024-09-12 14:57+0000\n"
"PO-Revision-Date: 2024-09-10 14:54+0000\n"
"Last-Translator: Karuru <karuru@aerodefense.co.uk>\n"
"Language-Team: Chinese (Simplified Han script) <https://translate.wavelog."
@@ -57,11 +57,11 @@ msgstr ""
#: application/controllers/Kmlexport.php:33
#: application/controllers/Labels.php:26
#: application/controllers/Logbookadvanced.php:16
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
#: application/controllers/Lotw.php:379 application/controllers/Lotw.php:402
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:830
#: application/controllers/Lotw.php:838 application/controllers/Mode.php:15
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44
#: application/controllers/Lotw.php:76 application/controllers/Lotw.php:103
#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:826
#: application/controllers/Lotw.php:834 application/controllers/Mode.php:15
#: application/controllers/Notes.php:10 application/controllers/Options.php:15
#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
#: application/controllers/Qrz.php:253 application/controllers/Qsl.php:12
@@ -544,7 +544,7 @@ msgstr "CFD 导出"
#: application/controllers/Clublog.php:15 application/controllers/Cron.php:12
#: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19
#: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14
#: application/controllers/Lotw.php:27 application/controllers/Qrz.php:14
#: application/controllers/Update.php:16
msgid "Maintenance Mode is active. Try again later."
msgstr "已开启维护模式,请稍后重试。"
@@ -1459,8 +1459,8 @@ msgstr "详细日志"
msgid "Quick Lookup"
msgstr "快速查找"
#: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83
#: application/controllers/Lotw.php:125 application/views/adif/import.php:27
#: application/controllers/Lotw.php:53 application/controllers/Lotw.php:82
#: application/controllers/Lotw.php:124 application/views/adif/import.php:27
#: application/views/interface_assets/header.php:429
#: application/views/lotw/import.php:3
#: application/views/lotw_views/index.php:12
@@ -1469,19 +1469,19 @@ msgstr "快速查找"
msgid "Logbook of the World"
msgstr "Logbook of the World(LoTW)"
#: application/controllers/Lotw.php:152
#: application/controllers/Lotw.php:151
msgid "Certificate Imported."
msgstr "呼号证书已导入。"
#: application/controllers/Lotw.php:159
#: application/controllers/Lotw.php:158
msgid "Certificate Updated."
msgstr "呼号证书已更新。"
#: application/controllers/Lotw.php:385
#: application/controllers/Lotw.php:384
msgid "Certificate Deleted."
msgstr "呼号证书已删除。"
#: application/controllers/Lotw.php:414
#: application/controllers/Lotw.php:413
#, php-format
msgid ""
"Found no certificate in file %s. If the filename contains 'key-only' this is "
@@ -1490,31 +1490,31 @@ msgstr ""
"文件 %s 中未找到呼号证书,如果文件名包含了 'key-only' 则此文件大概率是呼号证"
"书的申请文件LoTW 的工作人员依此来发放正式的呼号证书。"
#: application/controllers/Lotw.php:620
#: application/controllers/Lotw.php:617
msgid "LoTW ADIF Information"
msgstr "LoTW ADIF 信息"
#: application/controllers/Lotw.php:728
#: application/controllers/Lotw.php:729
msgid "LoTW ADIF Import"
msgstr "LoTW ADIF 导入"
#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:873
#: application/controllers/Lotw.php:756 application/controllers/Lotw.php:869
msgid "You have not defined your ARRL LoTW credentials!"
msgstr "未配置 LoTW 登录信息!"
#: application/controllers/Lotw.php:840
#: application/controllers/Lotw.php:836
msgid "LoTW .TQ8 Upload"
msgstr "LoTW .TQ8 导入"
#: application/controllers/Lotw.php:918
#: application/controllers/Lotw.php:914
msgid "Your ARRL username and/or password is incorrect."
msgstr "LoTW 用户名/密码错误。"
#: application/controllers/Lotw.php:937 application/controllers/Lotw.php:942
#: application/controllers/Lotw.php:933 application/controllers/Lotw.php:938
msgid "LoTW .TQ8 Sent"
msgstr "LoTW .TQ8 已发送"
#: application/controllers/Lotw.php:949
#: application/controllers/Lotw.php:945
msgid "LoTW .TQ8 Not Sent"
msgstr "LoTW .TQ8 未发送"
@@ -2439,31 +2439,31 @@ msgstr "HRDlog无 QSO 可供上传,台站呼号为: "
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr "HRDlog无台站配置信息。"
#: application/models/Logbook_model.php:4263
#: application/models/Logbook_model.php:4264
msgid "QSO could not be matched"
msgstr "QSO 无法匹配"
#: application/models/Logbook_model.php:4269
#: application/models/Logbook_model.php:4270
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr "已经通过 LoTW/Clublog/eQSL/竞赛 确认"
#: application/models/Logbook_model.php:4274
#: application/models/Logbook_model.php:4275
msgid "confirmed by award manager"
msgstr "已经通过奖项管理员确认"
#: application/models/Logbook_model.php:4277
#: application/models/Logbook_model.php:4278
msgid "confirmed by cross-check of DCL data"
msgstr "已经通过 DCL 数据交叉检查确认"
#: application/models/Logbook_model.php:4280
#: application/models/Logbook_model.php:4281
msgid "confirmation pending"
msgstr "等待确认"
#: application/models/Logbook_model.php:4283
#: application/models/Logbook_model.php:4284
msgid "unconfirmed"
msgstr "未确认"
#: application/models/Logbook_model.php:4286
#: application/models/Logbook_model.php:4287
msgid "unknown"
msgstr "未知"

View File

@@ -3369,7 +3369,7 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray =
}
}
function lotw_update($datetime, $callsign, $band, $qsl_date, $qsl_status, $state, $qsl_gridsquare, $qsl_vucc_grids, $iota, $cnty, $cqz, $ituz, $station_callsign, $qsoid) {
function lotw_update($datetime, $callsign, $band, $qsl_date, $qsl_status, $state, $qsl_gridsquare, $qsl_vucc_grids, $iota, $cnty, $cqz, $ituz, $station_callsign, $qsoid, $station_ids) {
$data = array(
'COL_LOTW_QSLRDATE' => $qsl_date,
@@ -3396,7 +3396,7 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray =
}
// Check if QRZ or ClubLog is already uploaded. If so, set qso to reupload to qrz.com (M) or clublog
$qsql = "select COL_CLUBLOG_QSO_UPLOAD_STATUS as CL_STATE, COL_QRZCOM_QSO_UPLOAD_STATUS as QRZ_STATE from ".$this->config->item('table_name')." where COL_BAND=? and COL_CALL=? and COL_STATION_CALLSIGN=? and date_format(COL_TIME_ON, '%Y-%m-%d %H:%i') = ? and COL_PRIMARY_KEY = ?";
$qsql = "select COL_CLUBLOG_QSO_UPLOAD_STATUS as CL_STATE, COL_QRZCOM_QSO_UPLOAD_STATUS as QRZ_STATE from ".$this->config->item('table_name')." where COL_BAND=? and COL_CALL=? and COL_STATION_CALLSIGN=? and date_format(COL_TIME_ON, '%Y-%m-%d %H:%i') = ? and COL_PRIMARY_KEY = ? and station_id in (".$station_ids.')';
$query = $this->db->query($qsql, array($band, $callsign,$station_callsign,$datetime,$qsoid));
$row = $query->row();
if (($row->QRZ_STATE ?? '') == 'Y') {
@@ -3415,7 +3415,7 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray =
$this->db->where('date_format(COL_TIME_ON, \'%Y-%m-%d %H:%i\') = ',$datetime);
$this->db->where('COL_STATION_CALLSIGN', $station_callsign);
$this->db->where('COL_PRIMARY_KEY', $qsoid);
$this->db->where('station_id in ('.$station_ids.')');
$this->db->update($this->config->item('table_name'), $data);
unset($data);
@@ -3430,6 +3430,7 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray =
$this->db->where('COL_BAND', $band);
$this->db->where('COL_PRIMARY_KEY', $qsoid);
$this->db->join('station_profile', $this->config->item('table_name').'.station_id = station_profile.station_id', 'left outer');
$this->db->where('station_profile.station_id in ('.$station_ids.')');
$this->db->limit(1);
$query = $this->db->get($this->config->item('table_name'));
$row = $query->row();

View File

@@ -36,6 +36,25 @@ class Stations extends CI_Model {
return $this->db->get('station_profile');
}
function all_station_ids_of_user($userid = null) {
if ($userid == null) {
$userid=$this->session->userdata('user_id'); // Fallback to session-uid, if userid is omitted
}
$this->db->select('station_profile.station_id');
$this->db->where('user_id', $userid);
$query=$this->db->get('station_profile');
$a_station_ids = array();
if ($query->num_rows() > 0){
foreach ($query->result() as $row) {
array_push($a_station_ids, $row->station_id);
}
$station_ids=implode(', ', $a_station_ids);
return $station_ids;
} else {
return '';
}
}
function callsigns_of_user($userid = null) {
if ($userid == null) {
$userid=$this->session->userdata('user_id'); // Fallback to session-uid, if userid is omitted

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-09-12 10:39+0000\n"
"POT-Creation-Date: 2024-09-12 14:57+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"
@@ -53,11 +53,11 @@ msgstr ""
#: application/controllers/Kmlexport.php:33
#: application/controllers/Labels.php:26
#: application/controllers/Logbookadvanced.php:16
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
#: application/controllers/Lotw.php:379 application/controllers/Lotw.php:402
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:830
#: application/controllers/Lotw.php:838 application/controllers/Mode.php:15
#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44
#: application/controllers/Lotw.php:76 application/controllers/Lotw.php:103
#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
#: application/controllers/Lotw.php:722 application/controllers/Lotw.php:826
#: application/controllers/Lotw.php:834 application/controllers/Mode.php:15
#: application/controllers/Notes.php:10 application/controllers/Options.php:15
#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
#: application/controllers/Qrz.php:253 application/controllers/Qsl.php:12
@@ -540,7 +540,7 @@ msgstr ""
#: application/controllers/Clublog.php:15 application/controllers/Cron.php:12
#: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19
#: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14
#: application/controllers/Lotw.php:27 application/controllers/Qrz.php:14
#: application/controllers/Update.php:16
msgid "Maintenance Mode is active. Try again later."
msgstr ""
@@ -1450,8 +1450,8 @@ msgstr ""
msgid "Quick Lookup"
msgstr ""
#: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83
#: application/controllers/Lotw.php:125 application/views/adif/import.php:27
#: application/controllers/Lotw.php:53 application/controllers/Lotw.php:82
#: application/controllers/Lotw.php:124 application/views/adif/import.php:27
#: application/views/interface_assets/header.php:429
#: application/views/lotw/import.php:3
#: application/views/lotw_views/index.php:12
@@ -1460,50 +1460,50 @@ msgstr ""
msgid "Logbook of the World"
msgstr ""
#: application/controllers/Lotw.php:152
#: application/controllers/Lotw.php:151
msgid "Certificate Imported."
msgstr ""
#: application/controllers/Lotw.php:159
#: application/controllers/Lotw.php:158
msgid "Certificate Updated."
msgstr ""
#: application/controllers/Lotw.php:385
#: application/controllers/Lotw.php:384
msgid "Certificate Deleted."
msgstr ""
#: application/controllers/Lotw.php:414
#: application/controllers/Lotw.php:413
#, php-format
msgid ""
"Found no certificate in file %s. If the filename contains 'key-only' this is "
"typically a certificate request which has not been processed by LoTW yet."
msgstr ""
#: application/controllers/Lotw.php:620
#: application/controllers/Lotw.php:617
msgid "LoTW ADIF Information"
msgstr ""
#: application/controllers/Lotw.php:728
#: application/controllers/Lotw.php:729
msgid "LoTW ADIF Import"
msgstr ""
#: application/controllers/Lotw.php:755 application/controllers/Lotw.php:873
#: application/controllers/Lotw.php:756 application/controllers/Lotw.php:869
msgid "You have not defined your ARRL LoTW credentials!"
msgstr ""
#: application/controllers/Lotw.php:840
#: application/controllers/Lotw.php:836
msgid "LoTW .TQ8 Upload"
msgstr ""
#: application/controllers/Lotw.php:918
#: application/controllers/Lotw.php:914
msgid "Your ARRL username and/or password is incorrect."
msgstr ""
#: application/controllers/Lotw.php:937 application/controllers/Lotw.php:942
#: application/controllers/Lotw.php:933 application/controllers/Lotw.php:938
msgid "LoTW .TQ8 Sent"
msgstr ""
#: application/controllers/Lotw.php:949
#: application/controllers/Lotw.php:945
msgid "LoTW .TQ8 Not Sent"
msgstr ""
@@ -2429,31 +2429,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4263
#: application/models/Logbook_model.php:4264
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4269
#: application/models/Logbook_model.php:4270
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4274
#: application/models/Logbook_model.php:4275
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4277
#: application/models/Logbook_model.php:4278
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4280
#: application/models/Logbook_model.php:4281
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4283
#: application/models/Logbook_model.php:4284
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4286
#: application/models/Logbook_model.php:4287
msgid "unknown"
msgstr ""