Merge branch 'dev' into dxcc_search

This commit is contained in:
HB9HIL
2024-08-15 22:27:57 +02:00
committed by GitHub
38 changed files with 2579 additions and 3199 deletions

View File

@@ -26,13 +26,15 @@ class Backup extends CI_Controller {
if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
}
$clean_key = $this->security->xss_clean($key);
$this->load->helper('file');
// Set memory limit to unlimited to allow heavy usage
ini_set('memory_limit', '-1');
$this->load->model('adif_data');
$data['qsos'] = $this->adif_data->export_all($key);
$data['qsos'] = $this->adif_data->export_all($clean_key);
$data['filename'] = 'backup/logbook'. date('_Y_m_d_H_i_s') .'.adi';
@@ -61,10 +63,12 @@ class Backup extends CI_Controller {
if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
}
$clean_key = $this->security->xss_clean($key);
$this->load->helper('file');
$this->load->model('note');
$data['list_note'] = $this->note->list_all($key);
$data['list_note'] = $this->note->list_all($clean_key);
$data['filename'] = 'backup/notes'. date('_Y_m_d_H_i_s') .'.xml';

View File

@@ -1049,7 +1049,7 @@ class Logbook extends CI_Controller {
function search_incorrect_cq_zones($station_id) {
$clean_station_id = $this->security->xss_clean($station_id);
if (!is_numeric($clean_station_id)) {
if (!is_numeric($clean_station_id) && $clean_station_id !== 'All') {
show_404();
}

View File

@@ -65,9 +65,7 @@ class Lookup extends CI_Controller {
public function scp() {
session_write_close();
if($_POST['callsign']) {
$uppercase_callsign = strtoupper($_POST['callsign']);
}
$uppercase_callsign = strtoupper($this->input->post('callsign', TRUE) ?? '');
// SCP results from logbook
$this->load->model('logbook_model');

View File

@@ -12,8 +12,7 @@ class Notes extends CI_Controller {
/* Displays all notes in a list */
public function index()
{
public function index() {
$this->load->model('note');
$data['notes'] = $this->note->list_all();
$data['page_title'] = __("Notes");
@@ -50,9 +49,16 @@ class Notes extends CI_Controller {
/* View Notes */
function view($id) {
$clean_id = $this->security->xss_clean($id);
if (! is_numeric($clean_id)) {
show_404();
}
$this->load->model('note');
$data['note'] = $this->note->view($id);
$data['note'] = $this->note->view($clean_id);
// Display
$data['page_title'] = __("Note");
@@ -63,10 +69,17 @@ class Notes extends CI_Controller {
/* Edit Notes */
function edit($id) {
$clean_id = $this->security->xss_clean($id);
if (! is_numeric($clean_id)) {
show_404();
}
$this->load->model('note');
$data['id'] = $id;
$data['id'] = $clean_id;
$data['note'] = $this->note->view($id);
$data['note'] = $this->note->view($clean_id);
$this->load->library('form_validation');
@@ -91,8 +104,15 @@ class Notes extends CI_Controller {
/* Delete Note */
function delete($id) {
$clean_id = $this->security->xss_clean($id);
if (! is_numeric($clean_id)) {
show_404();
}
$this->load->model('note');
$this->note->delete($id);
$this->note->delete($clean_id);
redirect('notes');
}

View File

@@ -21,7 +21,7 @@ class QSO extends CI_Controller {
// Getting the live/post mode from GET command
// 0 = live
// 1 = post (manual)
$get_manual_mode = $this->security->xss_clean($this->input->get('manual'));
$get_manual_mode = $this->input->get('manual', TRUE);
if ($get_manual_mode == '0' || $get_manual_mode == '1') {
$data['manual_mode'] = $get_manual_mode;
} else {
@@ -116,29 +116,29 @@ class QSO extends CI_Controller {
// $qso_data = [
// 18-Jan-2016 - make php v5.3 friendly!
$qso_data = array(
'start_date' => $this->input->post('start_date'),
'start_time' => $this->input->post('start_time'),
'start_date' => $this->input->post('start_date', TRUE),
'start_time' => $this->input->post('start_time', TRUE),
'end_time' => $this->input->post('end_time'),
'time_stamp' => time(),
'band' => $this->input->post('band'),
'band_rx' => $this->input->post('band_rx'),
'freq' => $this->input->post('freq_display'),
'freq_rx' => $this->input->post('freq_display_rx'),
'mode' => $this->input->post('mode'),
'sat_name' => $this->input->post('sat_name'),
'sat_mode' => $this->input->post('sat_mode'),
'prop_mode' => $this->input->post('prop_mode'),
'radio' => $this->input->post('radio'),
'station_profile_id' => $this->input->post('station_profile'),
'operator_callsign' => $this->input->post('operator_callsign'),
'transmit_power' => $this->input->post('transmit_power')
'band' => $this->input->post('band', TRUE),
'band_rx' => $this->input->post('band_rx', TRUE),
'freq' => $this->input->post('freq_display', TRUE),
'freq_rx' => $this->input->post('freq_display_rx', TRUE),
'mode' => $this->input->post('mode', TRUE),
'sat_name' => $this->input->post('sat_name', TRUE),
'sat_mode' => $this->input->post('sat_mode', TRUE),
'prop_mode' => $this->input->post('prop_mode', TRUE),
'radio' => $this->input->post('radio', TRUE),
'station_profile_id' => $this->input->post('station_profile', TRUE),
'operator_callsign' => $this->input->post('operator_callsign', TRUE),
'transmit_power' => $this->input->post('transmit_power', TRUE)
);
// ];
$this->session->set_userdata($qso_data);
// If SAT name is set make it session set to sat
if($this->input->post('sat_name')) {
if($this->input->post('sat_name', TRUE)) {
$this->session->set_userdata('prop_mode', 'SAT');
}
@@ -216,20 +216,20 @@ class QSO extends CI_Controller {
function cwmacrosave(){
// Get the data from the form
$function1_name = xss_clean($this->input->post('function1_name'));
$function1_macro = xss_clean($this->input->post('function1_macro'));
$function1_name = $this->input->post('function1_name', TRUE);
$function1_macro = $this->input->post('function1_macro', TRUE);
$function2_name = xss_clean($this->input->post('function2_name'));
$function2_macro = xss_clean($this->input->post('function2_macro'));
$function2_name = $this->input->post('function2_name', TRUE);
$function2_macro = $this->input->post('function2_macro', TRUE);
$function3_name = xss_clean($this->input->post('function3_name'));
$function3_macro = xss_clean($this->input->post('function3_macro'));
$function3_name = $this->input->post('function3_name', TRUE);
$function3_macro = $this->input->post('function3_macro', TRUE);
$function4_name = xss_clean($this->input->post('function4_name'));
$function4_macro = xss_clean($this->input->post('function4_macro'));
$function4_name = $this->input->post('function4_name', TRUE);
$function4_macro = $this->input->post('function4_macro', TRUE);
$function5_name = xss_clean($this->input->post('function5_name'));
$function5_macro = xss_clean($this->input->post('function5_macro'));
$function5_name = $this->input->post('function5_name', TRUE);
$function5_macro = $this->input->post('function5_macro', TRUE);
$data = [
'user_id' => $this->session->userdata('user_id'),
@@ -279,7 +279,7 @@ class QSO extends CI_Controller {
$this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard');
}
$id = str_replace('"', "", $this->input->post("id"));
$id = str_replace('"', "", $this->input->post("id", TRUE));
$query = $this->logbook_model->qso_info($id);
$data['qso'] = $query->row();
@@ -317,8 +317,8 @@ class QSO extends CI_Controller {
}
function qsl_rcvd_ajax() {
$id = str_replace('"', "", $this->input->post("id"));
$method = str_replace('"', "", $this->input->post("method"));
$id = str_replace('"', "", $this->input->post("id", TRUE));
$method = str_replace('"', "", $this->input->post("method", TRUE));
$this->load->model('logbook_model');
$this->load->model('user_model');
@@ -338,8 +338,8 @@ class QSO extends CI_Controller {
}
function qsl_sent_ajax() {
$id = str_replace('"', "", $this->input->post("id"));
$method = str_replace('"', "", $this->input->post("method"));
$id = str_replace('"', "", $this->input->post("id", TRUE));
$method = str_replace('"', "", $this->input->post("method", TRUE));
$this->load->model('logbook_model');
$this->load->model('user_model');
@@ -359,8 +359,8 @@ class QSO extends CI_Controller {
}
function qsl_requested_ajax() {
$id = str_replace('"', "", $this->input->post("id"));
$method = str_replace('"', "", $this->input->post("method"));
$id = str_replace('"', "", $this->input->post("id", TRUE));
$method = str_replace('"', "", $this->input->post("method", TRUE));
$this->load->model('logbook_model');
$this->load->model('user_model');
@@ -380,8 +380,8 @@ class QSO extends CI_Controller {
}
function qsl_ignore_ajax() {
$id = str_replace('"', "", $this->input->post("id"));
$method = str_replace('"', "", $this->input->post("method"));
$id = str_replace('"', "", $this->input->post("id", TRUE));
$method = str_replace('"', "", $this->input->post("method", TRUE));
$this->load->model('logbook_model');
$this->load->model('user_model');
@@ -420,7 +420,7 @@ class QSO extends CI_Controller {
/* Delete QSO */
function delete_ajax() {
$id = str_replace('"', "", $this->input->post("id"));
$id = str_replace('"', "", $this->input->post("id", TRUE));
$this->load->model('logbook_model');
if ($this->logbook_model->check_qso_is_accessible($id)) {
@@ -450,10 +450,8 @@ class QSO extends CI_Controller {
$this->load->library('sota');
$json = [];
if (!empty($this->security->xss_clean($this->input->get("query")))) {
$query = $_GET['query'] ?? FALSE;
$json = $this->sota->get($query);
}
$query = $this->input->get('query', TRUE) ?? FALSE;
$json = $this->sota->get($query);
header('Content-Type: application/json');
echo json_encode($json);
@@ -462,32 +460,30 @@ class QSO extends CI_Controller {
public function get_wwff() {
$json = [];
if (!empty($this->security->xss_clean($this->input->get("query")))) {
$query = isset($_GET['query']) ? $_GET['query'] : FALSE;
$wwff = strtoupper($query);
$query = $this->input->get('query', TRUE) ?? FALSE;
$wwff = strtoupper($query);
$file = 'updates/wwff.txt';
$file = 'updates/wwff.txt';
if (is_readable($file)) {
$lines = file($file, FILE_IGNORE_NEW_LINES);
$input = preg_quote($wwff, '~');
$reg = '~^'. $input .'(.*)$~';
$result = preg_grep($reg, $lines);
$json = [];
$i = 0;
foreach ($result as &$value) {
// Limit to 100 as to not slowdown browser too much
if (count($json) <= 100) {
$json[] = ["name"=>$value];
}
if (is_readable($file)) {
$lines = file($file, FILE_IGNORE_NEW_LINES);
$input = preg_quote($wwff, '~');
$reg = '~^'. $input .'(.*)$~';
$result = preg_grep($reg, $lines);
$json = [];
$i = 0;
foreach ($result as &$value) {
// Limit to 100 as to not slowdown browser too much
if (count($json) <= 100) {
$json[] = ["name"=>$value];
}
}
} else {
$src = 'assets/resources/wwff.txt';
if (copy($src, $file)) {
$this->get_wwff();
} else {
$src = 'assets/resources/wwff.txt';
if (copy($src, $file)) {
$this->get_wwff();
} else {
log_message('error', 'Failed to copy source file ('.$src.') to new location. Check if this path has the right permission: '.$file);
}
log_message('error', 'Failed to copy source file ('.$src.') to new location. Check if this path has the right permission: '.$file);
}
}
@@ -498,32 +494,30 @@ class QSO extends CI_Controller {
public function get_pota() {
$json = [];
if (!empty($this->security->xss_clean($this->input->get("query")))) {
$query = isset($_GET['query']) ? $_GET['query'] : FALSE;
$pota = strtoupper($query);
$query = $this->input->get('query', TRUE) ?? FALSE;
$pota = strtoupper($query);
$file = 'updates/pota.txt';
$file = 'updates/pota.txt';
if (is_readable($file)) {
$lines = file($file, FILE_IGNORE_NEW_LINES);
$input = preg_quote($pota, '~');
$reg = '~^'. $input .'(.*)$~';
$result = preg_grep($reg, $lines);
$json = [];
$i = 0;
foreach ($result as &$value) {
// Limit to 100 as to not slowdown browser too much
if (count($json) <= 100) {
$json[] = ["name"=>$value];
}
if (is_readable($file)) {
$lines = file($file, FILE_IGNORE_NEW_LINES);
$input = preg_quote($pota, '~');
$reg = '~^'. $input .'(.*)$~';
$result = preg_grep($reg, $lines);
$json = [];
$i = 0;
foreach ($result as &$value) {
// Limit to 100 as to not slowdown browser too much
if (count($json) <= 100) {
$json[] = ["name"=>$value];
}
}
} else {
$src = 'assets/resources/pota.txt';
if (copy($src, $file)) {
$this->get_pota();
} else {
$src = 'assets/resources/pota.txt';
if (copy($src, $file)) {
$this->get_pota();
} else {
log_message('error', 'Failed to copy source file ('.$src.') to new location. Check if this path has the right permission: '.$file);
}
log_message('error', 'Failed to copy source file ('.$src.') to new location. Check if this path has the right permission: '.$file);
}
}
@@ -537,32 +531,30 @@ class QSO extends CI_Controller {
public function get_dok() {
$json = [];
if (!empty($this->security->xss_clean($this->input->get("query")))) {
$query = isset($_GET['query']) ? $_GET['query'] : FALSE;
$dok = strtoupper($query);
$query = $this->input->get('query', TRUE) ?? FALSE;
$dok = strtoupper($query);
$file = 'updates/dok.txt';
$file = 'updates/dok.txt';
if (is_readable($file)) {
$lines = file($file, FILE_IGNORE_NEW_LINES);
$input = preg_quote($dok, '~');
$reg = '~^'. $input .'(.*)$~';
$result = preg_grep($reg, $lines);
$json = [];
$i = 0;
foreach ($result as &$value) {
// Limit to 100 as to not slowdown browser too much
if (count($json) <= 100) {
$json[] = ["name"=>$value];
}
if (is_readable($file)) {
$lines = file($file, FILE_IGNORE_NEW_LINES);
$input = preg_quote($dok, '~');
$reg = '~^'. $input .'(.*)$~';
$result = preg_grep($reg, $lines);
$json = [];
$i = 0;
foreach ($result as &$value) {
// Limit to 100 as to not slowdown browser too much
if (count($json) <= 100) {
$json[] = ["name"=>$value];
}
}
} else {
$src = 'assets/resources/dok.txt';
if (copy($src, $file)) {
$this->get_dok();
} else {
$src = 'assets/resources/dok.txt';
if (copy($src, $file)) {
$this->get_dok();
} else {
log_message('error', 'Failed to copy source file ('.$src.') to new location. Check if this path has the right permission: '.$file);
}
log_message('error', 'Failed to copy source file ('.$src.') to new location. Check if this path has the right permission: '.$file);
}
}
@@ -573,7 +565,7 @@ class QSO extends CI_Controller {
public function get_sota_info() {
$this->load->library('sota');
$sota = xss_clean($this->input->post('sota'));
$sota = $this->input->post('sota', TRUE);
header('Content-Type: application/json');
echo $this->sota->info($sota);
@@ -582,7 +574,7 @@ class QSO extends CI_Controller {
public function get_wwff_info() {
$this->load->library('wwff');
$wwff = xss_clean($this->input->post('wwff'));
$wwff = $this->input->post('wwff', TRUE);
header('Content-Type: application/json');
echo $this->wwff->info($wwff);
@@ -591,7 +583,7 @@ class QSO extends CI_Controller {
public function get_pota_info() {
$this->load->library('pota');
$pota = xss_clean($this->input->post('pota'));
$pota = $this->input->post('pota', TRUE);
header('Content-Type: application/json');
echo $this->pota->info($pota);
@@ -599,7 +591,7 @@ class QSO extends CI_Controller {
public function get_station_power() {
$this->load->model('stations');
$stationProfile = xss_clean($this->input->post('stationProfile'));
$stationProfile = $this->input->post('stationProfile', TRUE);
$data = array('station_power' => $this->stations->get_station_power($stationProfile));
header('Content-Type: application/json');
@@ -620,7 +612,7 @@ class QSO extends CI_Controller {
public function get_eqsl_default_qslmsg() { // Get ONLY Default eQSL-Message with this function. This is ONLY for QSO relevant!
$return_json = array();
$option_key = $this->input->post('option_key');
$option_key = $this->input->post('option_key', TRUE);
if ($option_key > 0) {
$options_object = $this->user_options_model->get_options('eqsl_default_qslmsg', array('option_name' => 'key_station_id', 'option_key' => $option_key))->result();
$return_json['eqsl_default_qslmsg'] = (isset($options_object[0]->option_value)) ? $options_object[0]->option_value : '';
@@ -634,7 +626,7 @@ class QSO extends CI_Controller {
}
function check_locator($grid) {
$grid = $this->input->post('locator');
$grid = $this->input->post('locator', TRUE);
// Allow empty locator
if (preg_match('/^$/', $grid)) return true;
// Allow 6-digit locator

View File

@@ -75,10 +75,8 @@ class Search extends CI_Controller {
}
function json_result() {
if(isset($_POST['search'])) {
$result = $this->fetchQueryResult($_POST['search'], false);
echo json_encode($result->result_array());
}
$result = $this->fetchQueryResult(($this->input->post('search', TRUE) ?? ''), FALSE);
echo json_encode($result->result_array());
}
function get_stored_queries() {
@@ -88,17 +86,13 @@ class Search extends CI_Controller {
}
function search_result() {
if(isset($_POST['search'])) {
$data['results'] = $this->fetchQueryResult($_POST['search'], false);
$this->load->view('search/search_result_ajax', $data);
}
$data['results'] = $this->fetchQueryResult(($this->input->post('search', TRUE) ?? ''), FALSE);
$this->load->view('search/search_result_ajax', $data);
}
function export_to_adif() {
if(isset($_POST['search'])) {
$data['qsos'] = $this->fetchQueryResult($_POST['search'], false);
$this->load->view('adif/data/exportall', $data);
}
$data['qsos'] = $this->fetchQueryResult(($this->input->post('search', TRUE) ?? ''), FALSE);
$this->load->view('adif/data/exportall', $data);
}
function export_stored_query_to_adif() {
@@ -122,20 +116,21 @@ class Search extends CI_Controller {
}
function save_query() {
if(isset($_POST['search'])) {
$query = $this->fetchQueryResult($_POST['search'], true);
$search_param = $this->input->post('search', TRUE);
$description = $this->input->post('description', TRUE);
$data = array(
'userid' => xss_clean($this->session->userdata('user_id')),
'query' => $query,
'description' => xss_clean($_POST['description'])
);
$query = $this->fetchQueryResult($search_param, TRUE);
$this->db->insert('queries', $data);
$last_id = $this->db->insert_id();
header('Content-Type: application/json');
echo json_encode(array('id' => $last_id, 'description' => xss_clean($_POST['description'])));
}
$data = array(
'userid' => xss_clean($this->session->userdata('user_id')),
'query' => $query,
'description' => $description
);
$this->db->insert('queries', $data);
$last_id = $this->db->insert_id();
header('Content-Type: application/json');
echo json_encode(array('id' => $last_id, 'description' => $description));
}
function delete_query() {

View File

@@ -19,25 +19,6 @@ class Station extends CI_Controller
}
}
public function index()
{
$this->load->model('stations');
$this->load->model('Logbook_model');
$this->load->model('user_model');
$data['is_admin'] = ($this->user_model->authorize(99));
$data['stations'] = $this->stations->all_with_count();
$data['current_active'] = $this->stations->find_active();
$data['is_there_qsos_with_no_station_id'] = $this->Logbook_model->check_for_station_id();
// Render Page
$data['page_title'] = __("Station Location");
$this->load->view('interface_assets/header', $data);
$this->load->view('station_profile/index');
$this->load->view('interface_assets/footer');
}
public function create()
{
$this->load->model('stations');

View File

@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-08-13 19:24+0000\n"
"POT-Creation-Date: 2024-08-15 07:16+0000\n"
"PO-Revision-Date: 2024-07-09 13:25+0000\n"
"Last-Translator: Anonymous <noreply@weblate.org>\n"
"Language-Team: Bulgarian <https://translate.wavelog.org/projects/wavelog/"
@@ -400,11 +400,11 @@ msgstr ""
msgid "Backup"
msgstr ""
#: application/controllers/Backup.php:48
#: application/controllers/Backup.php:50
msgid "ADIF - Backup"
msgstr ""
#: application/controllers/Backup.php:80
#: application/controllers/Backup.php:84
msgid "Notes - Backup"
msgstr ""
@@ -1024,7 +1024,6 @@ msgstr ""
#: application/views/qso/components/previous_contacts.php:81
#: application/views/search/result_search.php:11
#: application/views/search/search_result_ajax.php:7
#: application/views/station_profile/index.php:43
#: application/views/stationsetup/stationsetup.php:124
#: application/views/statistics/custom_result.php:92
#: application/views/timeline/index.php:118 application/views/user/edit.php:232
@@ -1122,7 +1121,6 @@ msgstr ""
#: application/views/search/result.php:33
#: application/views/search/search_result_ajax.php:13
#: application/views/simplefle/index.php:147
#: application/views/station_profile/index.php:44
#: application/views/stationsetup/stationsetup.php:125
#: application/views/timeline/index.php:257 application/views/user/edit.php:130
#: application/views/user/edit.php:238 application/views/user/edit.php:260
@@ -1290,7 +1288,6 @@ msgstr ""
#: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368
#: application/views/station_profile/create.php:73
#: application/views/station_profile/edit.php:78
#: application/views/station_profile/index.php:65
#: application/views/stationsetup/linkedlocations.php:17
#: application/views/stationsetup/linkedlocations.php:45
#: application/views/stationsetup/stationsetup.php:150
@@ -1350,7 +1347,7 @@ msgstr ""
msgid "Edit Mode"
msgstr ""
#: application/controllers/Notes.php:19
#: application/controllers/Notes.php:18
#: application/views/interface_assets/header.php:128
#: application/views/notes/add.php:9 application/views/notes/edit.php:10
#: application/views/notes/main.php:5 application/views/notes/main.php:8
@@ -1362,16 +1359,16 @@ msgstr ""
msgid "Notes"
msgstr "Бележки"
#: application/controllers/Notes.php:38
#: application/controllers/Notes.php:37
msgid "Add Notes"
msgstr ""
#: application/controllers/Notes.php:58
#: application/controllers/Notes.php:64
#: application/views/oqrs/showrequests.php:88
msgid "Note"
msgstr ""
#: application/controllers/Notes.php:79 application/views/notes/edit.php:7
#: application/controllers/Notes.php:92 application/views/notes/edit.php:7
#: application/views/notes/view.php:19
msgid "Edit Note"
msgstr "Редактиране на бележката"
@@ -1594,8 +1591,6 @@ msgstr ""
#: application/views/satellite/edit.php:40
#: application/views/satellite/index.php:26
#: application/views/search/stored_queries.php:22
#: application/views/station_profile/index.php:55
#: application/views/station_profile/index.php:106
#: application/views/stationsetup/stationsetup.php:33
#: application/views/stationsetup/stationsetup.php:137
#: application/views/stationsetup/stationsetup.php:192
@@ -1675,8 +1670,16 @@ msgid ""
"date"
msgstr ""
#: application/controllers/Station.php:35
#: application/controllers/Station.php:78 application/views/csv/index.php:19
#: application/controllers/Station.php:36
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:51
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:59 application/views/csv/index.php:19
#: application/views/dxatlas/index.php:19
#: application/views/labels/index.php:124
#: application/views/logbookadvanced/edit.php:18
@@ -1691,16 +1694,7 @@ msgstr ""
msgid "Station Location"
msgstr "Местоположение на станцията"
#: application/controllers/Station.php:55
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:70
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:92
#: application/controllers/Station.php:73
msgid "Duplicate Station Location:"
msgstr ""
@@ -1793,20 +1787,17 @@ msgid "Are you sure you want to delete the public slug?"
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid ""
"Are you sure you want to make the following station the active station: "
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid "Set Active"
msgstr ""
#: application/controllers/Stationsetup.php:351
#: application/views/station_profile/index.php:71
#: application/views/stationsetup/stationsetup.php:156
msgid "Active Station"
msgstr ""
@@ -1815,7 +1806,6 @@ msgstr ""
#: application/views/interface_assets/header.php:113
#: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20
#: application/views/simplefle/index.php:28
#: application/views/station_profile/index.php:76
#: application/views/stationsetup/stationsetup.php:161
#: application/views/user/main.php:87 application/views/user/main.php:89
msgid "QSO"
@@ -1831,8 +1821,6 @@ msgstr ""
#: application/views/mode/index.php:52 application/views/satellite/edit.php:39
#: application/views/satellite/index.php:25
#: application/views/search/stored_queries.php:21
#: application/views/station_profile/index.php:46
#: application/views/station_profile/index.php:79
#: application/views/stationsetup/stationsetup.php:128
#: application/views/stationsetup/stationsetup.php:165
#: application/views/themes/index.php:104 application/views/user/main.php:52
@@ -1840,29 +1828,23 @@ msgid "Edit"
msgstr ""
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:99
#: application/views/stationsetup/stationsetup.php:185
msgid "Are you sure you want to delete all QSOs within this station profile?"
msgstr ""
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:54
#: application/views/station_profile/index.php:101
#: application/views/stationsetup/stationsetup.php:136
#: application/views/stationsetup/stationsetup.php:187
msgid "Empty Log"
msgstr ""
#: application/controllers/Stationsetup.php:367
#: application/views/station_profile/index.php:47
#: application/views/station_profile/index.php:82
#: application/views/stationsetup/stationsetup.php:129
#: application/views/stationsetup/stationsetup.php:168
msgid "Copy"
msgstr ""
#: application/controllers/Stationsetup.php:372
#: application/views/station_profile/index.php:105
#: application/views/stationsetup/stationsetup.php:191
#, php-format
msgid ""
@@ -2126,31 +2108,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4129
#: application/models/Logbook_model.php:4143
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4135
#: application/models/Logbook_model.php:4149
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4140
#: application/models/Logbook_model.php:4154
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4143
#: application/models/Logbook_model.php:4157
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4146
#: application/models/Logbook_model.php:4160
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4149
#: application/models/Logbook_model.php:4163
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4152
#: application/models/Logbook_model.php:4166
msgid "unknown"
msgstr ""
@@ -2691,7 +2673,6 @@ msgstr ""
#: application/views/hrdlog/export.php:74
#: application/views/interface_assets/footer.php:34
#: application/views/qrz/export.php:73 application/views/qrz/export.php:94
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
#: application/views/view_log/qso.php:622
#: application/views/webadif/export.php:34
@@ -5562,7 +5543,6 @@ msgstr[1] ""
#: application/views/public_search/result.php:17
#: application/views/station_profile/create.php:57
#: application/views/station_profile/edit.php:46
#: application/views/station_profile/index.php:42
#: application/views/stationsetup/linkedlocations.php:32
#: application/views/stationsetup/stationsetup.php:123
msgid "Station Callsign"
@@ -6306,7 +6286,6 @@ msgid "Satellite Pass"
msgstr ""
#: application/views/interface_assets/header.php:265
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Admin"
msgstr ""
@@ -9395,60 +9374,6 @@ msgstr ""
msgid "Signature"
msgstr ""
#: application/views/station_profile/index.php:15
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/station_profile/index.php:16
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/station_profile/index.php:17
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/station_profile/index.php:19
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/station_profile/index.php:25
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/station_profile/index.php:41
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/create.php:17
msgid "Station Logbook Name"
msgstr ""
@@ -9496,6 +9421,11 @@ msgstr ""
msgid "Link Location"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:34
msgid "Unlink Station Location"
msgstr ""
@@ -9520,12 +9450,52 @@ msgstr ""
msgid "Station Locations"
msgstr ""
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/stationsetup/stationsetup.php:98
msgid ""
"The 'Linked' column shows if the station location is linked with the Active "
"Logbook selected above."
msgstr ""
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/stationsetup/stationsetup.php:127
msgid "Linked"
msgstr ""

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-08-13 19:24+0000\n"
"POT-Creation-Date: 2024-08-15 07:16+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -400,11 +400,11 @@ msgstr ""
msgid "Backup"
msgstr ""
#: application/controllers/Backup.php:48
#: application/controllers/Backup.php:50
msgid "ADIF - Backup"
msgstr ""
#: application/controllers/Backup.php:80
#: application/controllers/Backup.php:84
msgid "Notes - Backup"
msgstr ""
@@ -1024,7 +1024,6 @@ msgstr ""
#: application/views/qso/components/previous_contacts.php:81
#: application/views/search/result_search.php:11
#: application/views/search/search_result_ajax.php:7
#: application/views/station_profile/index.php:43
#: application/views/stationsetup/stationsetup.php:124
#: application/views/statistics/custom_result.php:92
#: application/views/timeline/index.php:118 application/views/user/edit.php:232
@@ -1122,7 +1121,6 @@ msgstr ""
#: application/views/search/result.php:33
#: application/views/search/search_result_ajax.php:13
#: application/views/simplefle/index.php:147
#: application/views/station_profile/index.php:44
#: application/views/stationsetup/stationsetup.php:125
#: application/views/timeline/index.php:257 application/views/user/edit.php:130
#: application/views/user/edit.php:238 application/views/user/edit.php:260
@@ -1290,7 +1288,6 @@ msgstr ""
#: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368
#: application/views/station_profile/create.php:73
#: application/views/station_profile/edit.php:78
#: application/views/station_profile/index.php:65
#: application/views/stationsetup/linkedlocations.php:17
#: application/views/stationsetup/linkedlocations.php:45
#: application/views/stationsetup/stationsetup.php:150
@@ -1350,7 +1347,7 @@ msgstr ""
msgid "Edit Mode"
msgstr ""
#: application/controllers/Notes.php:19
#: application/controllers/Notes.php:18
#: application/views/interface_assets/header.php:128
#: application/views/notes/add.php:9 application/views/notes/edit.php:10
#: application/views/notes/main.php:5 application/views/notes/main.php:8
@@ -1362,16 +1359,16 @@ msgstr ""
msgid "Notes"
msgstr ""
#: application/controllers/Notes.php:38
#: application/controllers/Notes.php:37
msgid "Add Notes"
msgstr ""
#: application/controllers/Notes.php:58
#: application/controllers/Notes.php:64
#: application/views/oqrs/showrequests.php:88
msgid "Note"
msgstr ""
#: application/controllers/Notes.php:79 application/views/notes/edit.php:7
#: application/controllers/Notes.php:92 application/views/notes/edit.php:7
#: application/views/notes/view.php:19
msgid "Edit Note"
msgstr ""
@@ -1594,8 +1591,6 @@ msgstr ""
#: application/views/satellite/edit.php:40
#: application/views/satellite/index.php:26
#: application/views/search/stored_queries.php:22
#: application/views/station_profile/index.php:55
#: application/views/station_profile/index.php:106
#: application/views/stationsetup/stationsetup.php:33
#: application/views/stationsetup/stationsetup.php:137
#: application/views/stationsetup/stationsetup.php:192
@@ -1675,8 +1670,16 @@ msgid ""
"date"
msgstr ""
#: application/controllers/Station.php:35
#: application/controllers/Station.php:78 application/views/csv/index.php:19
#: application/controllers/Station.php:36
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:51
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:59 application/views/csv/index.php:19
#: application/views/dxatlas/index.php:19
#: application/views/labels/index.php:124
#: application/views/logbookadvanced/edit.php:18
@@ -1691,16 +1694,7 @@ msgstr ""
msgid "Station Location"
msgstr ""
#: application/controllers/Station.php:55
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:70
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:92
#: application/controllers/Station.php:73
msgid "Duplicate Station Location:"
msgstr ""
@@ -1793,20 +1787,17 @@ msgid "Are you sure you want to delete the public slug?"
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid ""
"Are you sure you want to make the following station the active station: "
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid "Set Active"
msgstr ""
#: application/controllers/Stationsetup.php:351
#: application/views/station_profile/index.php:71
#: application/views/stationsetup/stationsetup.php:156
msgid "Active Station"
msgstr ""
@@ -1815,7 +1806,6 @@ msgstr ""
#: application/views/interface_assets/header.php:113
#: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20
#: application/views/simplefle/index.php:28
#: application/views/station_profile/index.php:76
#: application/views/stationsetup/stationsetup.php:161
#: application/views/user/main.php:87 application/views/user/main.php:89
msgid "QSO"
@@ -1831,8 +1821,6 @@ msgstr ""
#: application/views/mode/index.php:52 application/views/satellite/edit.php:39
#: application/views/satellite/index.php:25
#: application/views/search/stored_queries.php:21
#: application/views/station_profile/index.php:46
#: application/views/station_profile/index.php:79
#: application/views/stationsetup/stationsetup.php:128
#: application/views/stationsetup/stationsetup.php:165
#: application/views/themes/index.php:104 application/views/user/main.php:52
@@ -1840,29 +1828,23 @@ msgid "Edit"
msgstr ""
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:99
#: application/views/stationsetup/stationsetup.php:185
msgid "Are you sure you want to delete all QSOs within this station profile?"
msgstr ""
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:54
#: application/views/station_profile/index.php:101
#: application/views/stationsetup/stationsetup.php:136
#: application/views/stationsetup/stationsetup.php:187
msgid "Empty Log"
msgstr ""
#: application/controllers/Stationsetup.php:367
#: application/views/station_profile/index.php:47
#: application/views/station_profile/index.php:82
#: application/views/stationsetup/stationsetup.php:129
#: application/views/stationsetup/stationsetup.php:168
msgid "Copy"
msgstr ""
#: application/controllers/Stationsetup.php:372
#: application/views/station_profile/index.php:105
#: application/views/stationsetup/stationsetup.php:191
#, php-format
msgid ""
@@ -2126,31 +2108,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4129
#: application/models/Logbook_model.php:4143
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4135
#: application/models/Logbook_model.php:4149
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4140
#: application/models/Logbook_model.php:4154
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4143
#: application/models/Logbook_model.php:4157
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4146
#: application/models/Logbook_model.php:4160
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4149
#: application/models/Logbook_model.php:4163
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4152
#: application/models/Logbook_model.php:4166
msgid "unknown"
msgstr ""
@@ -2691,7 +2673,6 @@ msgstr ""
#: application/views/hrdlog/export.php:74
#: application/views/interface_assets/footer.php:34
#: application/views/qrz/export.php:73 application/views/qrz/export.php:94
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
#: application/views/view_log/qso.php:622
#: application/views/webadif/export.php:34
@@ -5562,7 +5543,6 @@ msgstr[1] ""
#: application/views/public_search/result.php:17
#: application/views/station_profile/create.php:57
#: application/views/station_profile/edit.php:46
#: application/views/station_profile/index.php:42
#: application/views/stationsetup/linkedlocations.php:32
#: application/views/stationsetup/stationsetup.php:123
msgid "Station Callsign"
@@ -6306,7 +6286,6 @@ msgid "Satellite Pass"
msgstr ""
#: application/views/interface_assets/header.php:265
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Admin"
msgstr ""
@@ -9389,60 +9368,6 @@ msgstr ""
msgid "Signature"
msgstr ""
#: application/views/station_profile/index.php:15
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/station_profile/index.php:16
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/station_profile/index.php:17
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/station_profile/index.php:19
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/station_profile/index.php:25
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/station_profile/index.php:41
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/create.php:17
msgid "Station Logbook Name"
msgstr ""
@@ -9490,6 +9415,11 @@ msgstr ""
msgid "Link Location"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:34
msgid "Unlink Station Location"
msgstr ""
@@ -9514,12 +9444,52 @@ msgstr ""
msgid "Station Locations"
msgstr ""
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/stationsetup/stationsetup.php:98
msgid ""
"The 'Linked' column shows if the station location is linked with the Active "
"Logbook selected above."
msgstr ""
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/stationsetup/stationsetup.php:127
msgid "Linked"
msgstr ""

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-08-13 19:24+0000\n"
"POT-Creation-Date: 2024-08-15 07:16+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -400,11 +400,11 @@ msgstr ""
msgid "Backup"
msgstr ""
#: application/controllers/Backup.php:48
#: application/controllers/Backup.php:50
msgid "ADIF - Backup"
msgstr ""
#: application/controllers/Backup.php:80
#: application/controllers/Backup.php:84
msgid "Notes - Backup"
msgstr ""
@@ -1024,7 +1024,6 @@ msgstr ""
#: application/views/qso/components/previous_contacts.php:81
#: application/views/search/result_search.php:11
#: application/views/search/search_result_ajax.php:7
#: application/views/station_profile/index.php:43
#: application/views/stationsetup/stationsetup.php:124
#: application/views/statistics/custom_result.php:92
#: application/views/timeline/index.php:118 application/views/user/edit.php:232
@@ -1122,7 +1121,6 @@ msgstr ""
#: application/views/search/result.php:33
#: application/views/search/search_result_ajax.php:13
#: application/views/simplefle/index.php:147
#: application/views/station_profile/index.php:44
#: application/views/stationsetup/stationsetup.php:125
#: application/views/timeline/index.php:257 application/views/user/edit.php:130
#: application/views/user/edit.php:238 application/views/user/edit.php:260
@@ -1290,7 +1288,6 @@ msgstr ""
#: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368
#: application/views/station_profile/create.php:73
#: application/views/station_profile/edit.php:78
#: application/views/station_profile/index.php:65
#: application/views/stationsetup/linkedlocations.php:17
#: application/views/stationsetup/linkedlocations.php:45
#: application/views/stationsetup/stationsetup.php:150
@@ -1350,7 +1347,7 @@ msgstr ""
msgid "Edit Mode"
msgstr ""
#: application/controllers/Notes.php:19
#: application/controllers/Notes.php:18
#: application/views/interface_assets/header.php:128
#: application/views/notes/add.php:9 application/views/notes/edit.php:10
#: application/views/notes/main.php:5 application/views/notes/main.php:8
@@ -1362,16 +1359,16 @@ msgstr ""
msgid "Notes"
msgstr ""
#: application/controllers/Notes.php:38
#: application/controllers/Notes.php:37
msgid "Add Notes"
msgstr ""
#: application/controllers/Notes.php:58
#: application/controllers/Notes.php:64
#: application/views/oqrs/showrequests.php:88
msgid "Note"
msgstr ""
#: application/controllers/Notes.php:79 application/views/notes/edit.php:7
#: application/controllers/Notes.php:92 application/views/notes/edit.php:7
#: application/views/notes/view.php:19
msgid "Edit Note"
msgstr ""
@@ -1594,8 +1591,6 @@ msgstr ""
#: application/views/satellite/edit.php:40
#: application/views/satellite/index.php:26
#: application/views/search/stored_queries.php:22
#: application/views/station_profile/index.php:55
#: application/views/station_profile/index.php:106
#: application/views/stationsetup/stationsetup.php:33
#: application/views/stationsetup/stationsetup.php:137
#: application/views/stationsetup/stationsetup.php:192
@@ -1675,8 +1670,16 @@ msgid ""
"date"
msgstr ""
#: application/controllers/Station.php:35
#: application/controllers/Station.php:78 application/views/csv/index.php:19
#: application/controllers/Station.php:36
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:51
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:59 application/views/csv/index.php:19
#: application/views/dxatlas/index.php:19
#: application/views/labels/index.php:124
#: application/views/logbookadvanced/edit.php:18
@@ -1691,16 +1694,7 @@ msgstr ""
msgid "Station Location"
msgstr ""
#: application/controllers/Station.php:55
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:70
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:92
#: application/controllers/Station.php:73
msgid "Duplicate Station Location:"
msgstr ""
@@ -1793,20 +1787,17 @@ msgid "Are you sure you want to delete the public slug?"
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid ""
"Are you sure you want to make the following station the active station: "
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid "Set Active"
msgstr ""
#: application/controllers/Stationsetup.php:351
#: application/views/station_profile/index.php:71
#: application/views/stationsetup/stationsetup.php:156
msgid "Active Station"
msgstr ""
@@ -1815,7 +1806,6 @@ msgstr ""
#: application/views/interface_assets/header.php:113
#: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20
#: application/views/simplefle/index.php:28
#: application/views/station_profile/index.php:76
#: application/views/stationsetup/stationsetup.php:161
#: application/views/user/main.php:87 application/views/user/main.php:89
msgid "QSO"
@@ -1831,8 +1821,6 @@ msgstr ""
#: application/views/mode/index.php:52 application/views/satellite/edit.php:39
#: application/views/satellite/index.php:25
#: application/views/search/stored_queries.php:21
#: application/views/station_profile/index.php:46
#: application/views/station_profile/index.php:79
#: application/views/stationsetup/stationsetup.php:128
#: application/views/stationsetup/stationsetup.php:165
#: application/views/themes/index.php:104 application/views/user/main.php:52
@@ -1840,29 +1828,23 @@ msgid "Edit"
msgstr ""
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:99
#: application/views/stationsetup/stationsetup.php:185
msgid "Are you sure you want to delete all QSOs within this station profile?"
msgstr ""
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:54
#: application/views/station_profile/index.php:101
#: application/views/stationsetup/stationsetup.php:136
#: application/views/stationsetup/stationsetup.php:187
msgid "Empty Log"
msgstr ""
#: application/controllers/Stationsetup.php:367
#: application/views/station_profile/index.php:47
#: application/views/station_profile/index.php:82
#: application/views/stationsetup/stationsetup.php:129
#: application/views/stationsetup/stationsetup.php:168
msgid "Copy"
msgstr ""
#: application/controllers/Stationsetup.php:372
#: application/views/station_profile/index.php:105
#: application/views/stationsetup/stationsetup.php:191
#, php-format
msgid ""
@@ -2126,31 +2108,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4129
#: application/models/Logbook_model.php:4143
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4135
#: application/models/Logbook_model.php:4149
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4140
#: application/models/Logbook_model.php:4154
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4143
#: application/models/Logbook_model.php:4157
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4146
#: application/models/Logbook_model.php:4160
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4149
#: application/models/Logbook_model.php:4163
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4152
#: application/models/Logbook_model.php:4166
msgid "unknown"
msgstr ""
@@ -2691,7 +2673,6 @@ msgstr ""
#: application/views/hrdlog/export.php:74
#: application/views/interface_assets/footer.php:34
#: application/views/qrz/export.php:73 application/views/qrz/export.php:94
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
#: application/views/view_log/qso.php:622
#: application/views/webadif/export.php:34
@@ -5562,7 +5543,6 @@ msgstr[1] ""
#: application/views/public_search/result.php:17
#: application/views/station_profile/create.php:57
#: application/views/station_profile/edit.php:46
#: application/views/station_profile/index.php:42
#: application/views/stationsetup/linkedlocations.php:32
#: application/views/stationsetup/stationsetup.php:123
msgid "Station Callsign"
@@ -6306,7 +6286,6 @@ msgid "Satellite Pass"
msgstr ""
#: application/views/interface_assets/header.php:265
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Admin"
msgstr ""
@@ -9389,60 +9368,6 @@ msgstr ""
msgid "Signature"
msgstr ""
#: application/views/station_profile/index.php:15
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/station_profile/index.php:16
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/station_profile/index.php:17
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/station_profile/index.php:19
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/station_profile/index.php:25
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/station_profile/index.php:41
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/create.php:17
msgid "Station Logbook Name"
msgstr ""
@@ -9490,6 +9415,11 @@ msgstr ""
msgid "Link Location"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:34
msgid "Unlink Station Location"
msgstr ""
@@ -9514,12 +9444,52 @@ msgstr ""
msgid "Station Locations"
msgstr ""
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/stationsetup/stationsetup.php:98
msgid ""
"The 'Linked' column shows if the station location is linked with the Active "
"Logbook selected above."
msgstr ""
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/stationsetup/stationsetup.php:127
msgid "Linked"
msgstr ""

View File

@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-08-13 19:24+0000\n"
"POT-Creation-Date: 2024-08-15 07:16+0000\n"
"PO-Revision-Date: 2024-08-06 09:50+0000\n"
"Last-Translator: Michal Šiman <michal.siman@gmail.com>\n"
"Language-Team: Czech <https://translate.wavelog.org/projects/wavelog/main-"
@@ -402,11 +402,11 @@ msgstr "ITU zóny"
msgid "Backup"
msgstr "Zálohování"
#: application/controllers/Backup.php:48
#: application/controllers/Backup.php:50
msgid "ADIF - Backup"
msgstr "ADIF - Záloha"
#: application/controllers/Backup.php:80
#: application/controllers/Backup.php:84
msgid "Notes - Backup"
msgstr "Poznámky - Záloha"
@@ -1028,7 +1028,6 @@ msgstr ""
#: application/views/qso/components/previous_contacts.php:81
#: application/views/search/result_search.php:11
#: application/views/search/search_result_ajax.php:7
#: application/views/station_profile/index.php:43
#: application/views/stationsetup/stationsetup.php:124
#: application/views/statistics/custom_result.php:92
#: application/views/timeline/index.php:118 application/views/user/edit.php:232
@@ -1126,7 +1125,6 @@ msgstr "Stát"
#: application/views/search/result.php:33
#: application/views/search/search_result_ajax.php:13
#: application/views/simplefle/index.php:147
#: application/views/station_profile/index.php:44
#: application/views/stationsetup/stationsetup.php:125
#: application/views/timeline/index.php:257 application/views/user/edit.php:130
#: application/views/user/edit.php:238 application/views/user/edit.php:260
@@ -1294,7 +1292,6 @@ msgstr "Operátor"
#: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368
#: application/views/station_profile/create.php:73
#: application/views/station_profile/edit.php:78
#: application/views/station_profile/index.php:65
#: application/views/stationsetup/linkedlocations.php:17
#: application/views/stationsetup/linkedlocations.php:45
#: application/views/stationsetup/stationsetup.php:150
@@ -1354,7 +1351,7 @@ msgstr "Režimy"
msgid "Edit Mode"
msgstr ""
#: application/controllers/Notes.php:19
#: application/controllers/Notes.php:18
#: application/views/interface_assets/header.php:128
#: application/views/notes/add.php:9 application/views/notes/edit.php:10
#: application/views/notes/main.php:5 application/views/notes/main.php:8
@@ -1366,16 +1363,16 @@ msgstr ""
msgid "Notes"
msgstr "Poznámky"
#: application/controllers/Notes.php:38
#: application/controllers/Notes.php:37
msgid "Add Notes"
msgstr ""
#: application/controllers/Notes.php:58
#: application/controllers/Notes.php:64
#: application/views/oqrs/showrequests.php:88
msgid "Note"
msgstr ""
#: application/controllers/Notes.php:79 application/views/notes/edit.php:7
#: application/controllers/Notes.php:92 application/views/notes/edit.php:7
#: application/views/notes/view.php:19
msgid "Edit Note"
msgstr "Editovat poznámku"
@@ -1598,8 +1595,6 @@ msgstr ""
#: application/views/satellite/edit.php:40
#: application/views/satellite/index.php:26
#: application/views/search/stored_queries.php:22
#: application/views/station_profile/index.php:55
#: application/views/station_profile/index.php:106
#: application/views/stationsetup/stationsetup.php:33
#: application/views/stationsetup/stationsetup.php:137
#: application/views/stationsetup/stationsetup.php:192
@@ -1679,8 +1674,16 @@ msgid ""
"date"
msgstr ""
#: application/controllers/Station.php:35
#: application/controllers/Station.php:78 application/views/csv/index.php:19
#: application/controllers/Station.php:36
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:51
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:59 application/views/csv/index.php:19
#: application/views/dxatlas/index.php:19
#: application/views/labels/index.php:124
#: application/views/logbookadvanced/edit.php:18
@@ -1695,16 +1698,7 @@ msgstr ""
msgid "Station Location"
msgstr "Umístění stanice"
#: application/controllers/Station.php:55
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:70
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:92
#: application/controllers/Station.php:73
msgid "Duplicate Station Location:"
msgstr ""
@@ -1797,20 +1791,17 @@ msgid "Are you sure you want to delete the public slug?"
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid ""
"Are you sure you want to make the following station the active station: "
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid "Set Active"
msgstr ""
#: application/controllers/Stationsetup.php:351
#: application/views/station_profile/index.php:71
#: application/views/stationsetup/stationsetup.php:156
msgid "Active Station"
msgstr ""
@@ -1819,7 +1810,6 @@ msgstr ""
#: application/views/interface_assets/header.php:113
#: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20
#: application/views/simplefle/index.php:28
#: application/views/station_profile/index.php:76
#: application/views/stationsetup/stationsetup.php:161
#: application/views/user/main.php:87 application/views/user/main.php:89
msgid "QSO"
@@ -1835,8 +1825,6 @@ msgstr ""
#: application/views/mode/index.php:52 application/views/satellite/edit.php:39
#: application/views/satellite/index.php:25
#: application/views/search/stored_queries.php:21
#: application/views/station_profile/index.php:46
#: application/views/station_profile/index.php:79
#: application/views/stationsetup/stationsetup.php:128
#: application/views/stationsetup/stationsetup.php:165
#: application/views/themes/index.php:104 application/views/user/main.php:52
@@ -1844,29 +1832,23 @@ msgid "Edit"
msgstr "Upravit"
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:99
#: application/views/stationsetup/stationsetup.php:185
msgid "Are you sure you want to delete all QSOs within this station profile?"
msgstr ""
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:54
#: application/views/station_profile/index.php:101
#: application/views/stationsetup/stationsetup.php:136
#: application/views/stationsetup/stationsetup.php:187
msgid "Empty Log"
msgstr ""
#: application/controllers/Stationsetup.php:367
#: application/views/station_profile/index.php:47
#: application/views/station_profile/index.php:82
#: application/views/stationsetup/stationsetup.php:129
#: application/views/stationsetup/stationsetup.php:168
msgid "Copy"
msgstr ""
#: application/controllers/Stationsetup.php:372
#: application/views/station_profile/index.php:105
#: application/views/stationsetup/stationsetup.php:191
#, php-format
msgid ""
@@ -2130,31 +2112,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4129
#: application/models/Logbook_model.php:4143
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4135
#: application/models/Logbook_model.php:4149
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4140
#: application/models/Logbook_model.php:4154
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4143
#: application/models/Logbook_model.php:4157
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4146
#: application/models/Logbook_model.php:4160
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4149
#: application/models/Logbook_model.php:4163
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4152
#: application/models/Logbook_model.php:4166
msgid "unknown"
msgstr ""
@@ -2695,7 +2677,6 @@ msgstr ""
#: application/views/hrdlog/export.php:74
#: application/views/interface_assets/footer.php:34
#: application/views/qrz/export.php:73 application/views/qrz/export.php:94
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
#: application/views/view_log/qso.php:622
#: application/views/webadif/export.php:34
@@ -5568,7 +5549,6 @@ msgstr[2] ""
#: application/views/public_search/result.php:17
#: application/views/station_profile/create.php:57
#: application/views/station_profile/edit.php:46
#: application/views/station_profile/index.php:42
#: application/views/stationsetup/linkedlocations.php:32
#: application/views/stationsetup/stationsetup.php:123
msgid "Station Callsign"
@@ -6312,7 +6292,6 @@ msgid "Satellite Pass"
msgstr ""
#: application/views/interface_assets/header.php:265
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Admin"
msgstr ""
@@ -9413,60 +9392,6 @@ msgstr ""
msgid "Signature"
msgstr ""
#: application/views/station_profile/index.php:15
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/station_profile/index.php:16
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/station_profile/index.php:17
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/station_profile/index.php:19
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/station_profile/index.php:25
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/station_profile/index.php:41
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/create.php:17
msgid "Station Logbook Name"
msgstr ""
@@ -9514,6 +9439,11 @@ msgstr ""
msgid "Link Location"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:34
msgid "Unlink Station Location"
msgstr ""
@@ -9538,12 +9468,52 @@ msgstr ""
msgid "Station Locations"
msgstr ""
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/stationsetup/stationsetup.php:98
msgid ""
"The 'Linked' column shows if the station location is linked with the Active "
"Logbook selected above."
msgstr ""
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/stationsetup/stationsetup.php:127
msgid "Linked"
msgstr ""

View File

@@ -14,7 +14,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-08-13 19:24+0000\n"
"POT-Creation-Date: 2024-08-15 07:16+0000\n"
"PO-Revision-Date: 2024-08-12 10:19+0000\n"
"Last-Translator: Fabian Berg <80885850+HB9HIL@users.noreply.github.com>\n"
"Language-Team: German <https://translate.wavelog.org/projects/wavelog/main-"
@@ -409,11 +409,11 @@ msgstr "ITU-Zonen"
msgid "Backup"
msgstr "Backup"
#: application/controllers/Backup.php:48
#: application/controllers/Backup.php:50
msgid "ADIF - Backup"
msgstr "ADIF - Backup"
#: application/controllers/Backup.php:80
#: application/controllers/Backup.php:84
msgid "Notes - Backup"
msgstr "Notizen - Backup"
@@ -1042,7 +1042,6 @@ msgstr "RST (R)"
#: application/views/qso/components/previous_contacts.php:81
#: application/views/search/result_search.php:11
#: application/views/search/search_result_ajax.php:7
#: application/views/station_profile/index.php:43
#: application/views/stationsetup/stationsetup.php:124
#: application/views/statistics/custom_result.php:92
#: application/views/timeline/index.php:118 application/views/user/edit.php:232
@@ -1140,7 +1139,6 @@ msgstr "Staat"
#: application/views/search/result.php:33
#: application/views/search/search_result_ajax.php:13
#: application/views/simplefle/index.php:147
#: application/views/station_profile/index.php:44
#: application/views/stationsetup/stationsetup.php:125
#: application/views/timeline/index.php:257 application/views/user/edit.php:130
#: application/views/user/edit.php:238 application/views/user/edit.php:260
@@ -1308,7 +1306,6 @@ msgstr "Operator"
#: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368
#: application/views/station_profile/create.php:73
#: application/views/station_profile/edit.php:78
#: application/views/station_profile/index.php:65
#: application/views/stationsetup/linkedlocations.php:17
#: application/views/stationsetup/linkedlocations.php:45
#: application/views/stationsetup/stationsetup.php:150
@@ -1368,7 +1365,7 @@ msgstr "Modes"
msgid "Edit Mode"
msgstr "Bearbeite Mode"
#: application/controllers/Notes.php:19
#: application/controllers/Notes.php:18
#: application/views/interface_assets/header.php:128
#: application/views/notes/add.php:9 application/views/notes/edit.php:10
#: application/views/notes/main.php:5 application/views/notes/main.php:8
@@ -1380,16 +1377,16 @@ msgstr "Bearbeite Mode"
msgid "Notes"
msgstr "Notizen"
#: application/controllers/Notes.php:38
#: application/controllers/Notes.php:37
msgid "Add Notes"
msgstr "Füge Notizen hinzu"
#: application/controllers/Notes.php:58
#: application/controllers/Notes.php:64
#: application/views/oqrs/showrequests.php:88
msgid "Note"
msgstr "Notiz"
#: application/controllers/Notes.php:79 application/views/notes/edit.php:7
#: application/controllers/Notes.php:92 application/views/notes/edit.php:7
#: application/views/notes/view.php:19
msgid "Edit Note"
msgstr "Editiere Notiz"
@@ -1612,8 +1609,6 @@ msgstr "Standardgerät (klicken zum freigeben)"
#: application/views/satellite/edit.php:40
#: application/views/satellite/index.php:26
#: application/views/search/stored_queries.php:22
#: application/views/station_profile/index.php:55
#: application/views/station_profile/index.php:106
#: application/views/stationsetup/stationsetup.php:33
#: application/views/stationsetup/stationsetup.php:137
#: application/views/stationsetup/stationsetup.php:192
@@ -1695,8 +1690,16 @@ msgstr ""
"Unbestätigte QSOs auf LoTW, bei denen das Rufzeichen nach dem QSO-Datum "
"Daten zu LoTW hochgeladen hat"
#: application/controllers/Station.php:35
#: application/controllers/Station.php:78 application/views/csv/index.php:19
#: application/controllers/Station.php:36
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr "Erstelle Stationsstandort"
#: application/controllers/Station.php:51
msgid "Edit Station Location: "
msgstr "Bearbeite Stationsstandort: "
#: application/controllers/Station.php:59 application/views/csv/index.php:19
#: application/views/dxatlas/index.php:19
#: application/views/labels/index.php:124
#: application/views/logbookadvanced/edit.php:18
@@ -1711,16 +1714,7 @@ msgstr ""
msgid "Station Location"
msgstr "Stationsprofil"
#: application/controllers/Station.php:55
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr "Erstelle Stationsstandort"
#: application/controllers/Station.php:70
msgid "Edit Station Location: "
msgstr "Bearbeite Stationsstandort: "
#: application/controllers/Station.php:92
#: application/controllers/Station.php:73
msgid "Duplicate Station Location:"
msgstr "Doppelter Stationsstandort:"
@@ -1816,7 +1810,6 @@ msgid "Are you sure you want to delete the public slug?"
msgstr "Bist Du Dir sicher die Kurz-URL zu löschen?"
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid ""
"Are you sure you want to make the following station the active station: "
@@ -1825,13 +1818,11 @@ msgstr ""
"machen möchtest?: "
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid "Set Active"
msgstr "Aktivieren"
#: application/controllers/Stationsetup.php:351
#: application/views/station_profile/index.php:71
#: application/views/stationsetup/stationsetup.php:156
msgid "Active Station"
msgstr "Aktive Station"
@@ -1840,7 +1831,6 @@ msgstr "Aktive Station"
#: application/views/interface_assets/header.php:113
#: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20
#: application/views/simplefle/index.php:28
#: application/views/station_profile/index.php:76
#: application/views/stationsetup/stationsetup.php:161
#: application/views/user/main.php:87 application/views/user/main.php:89
msgid "QSO"
@@ -1856,8 +1846,6 @@ msgstr "QSO"
#: application/views/mode/index.php:52 application/views/satellite/edit.php:39
#: application/views/satellite/index.php:25
#: application/views/search/stored_queries.php:21
#: application/views/station_profile/index.php:46
#: application/views/station_profile/index.php:79
#: application/views/stationsetup/stationsetup.php:128
#: application/views/stationsetup/stationsetup.php:165
#: application/views/themes/index.php:104 application/views/user/main.php:52
@@ -1865,7 +1853,6 @@ msgid "Edit"
msgstr "Bearbeiten"
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:99
#: application/views/stationsetup/stationsetup.php:185
msgid "Are you sure you want to delete all QSOs within this station profile?"
msgstr ""
@@ -1873,23 +1860,18 @@ msgstr ""
"möchtest?"
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:54
#: application/views/station_profile/index.php:101
#: application/views/stationsetup/stationsetup.php:136
#: application/views/stationsetup/stationsetup.php:187
msgid "Empty Log"
msgstr "Lösche Log"
#: application/controllers/Stationsetup.php:367
#: application/views/station_profile/index.php:47
#: application/views/station_profile/index.php:82
#: application/views/stationsetup/stationsetup.php:129
#: application/views/stationsetup/stationsetup.php:168
msgid "Copy"
msgstr "Kopieren"
#: application/controllers/Stationsetup.php:372
#: application/views/station_profile/index.php:105
#: application/views/stationsetup/stationsetup.php:191
#, php-format
msgid ""
@@ -2169,31 +2151,31 @@ msgstr "HRDlog: Keine QSOs gefunden zum hochladen für Stationsrufzeichen: "
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr "HRDlog: Keine Stationsprofile mit HRDlog Zugangsdaten gefunden."
#: application/models/Logbook_model.php:4129
#: application/models/Logbook_model.php:4143
msgid "QSO could not be matched"
msgstr "QSO konnte nicht gefunden werden"
#: application/models/Logbook_model.php:4135
#: application/models/Logbook_model.php:4149
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr "bestätigt durch LoTW/Clublog/eQSL/Contest"
#: application/models/Logbook_model.php:4140
#: application/models/Logbook_model.php:4154
msgid "confirmed by award manager"
msgstr "bestätigt durch Diplommananger"
#: application/models/Logbook_model.php:4143
#: application/models/Logbook_model.php:4157
msgid "confirmed by cross-check of DCL data"
msgstr "bestätigt durch Cross-Check von DCL-Daten"
#: application/models/Logbook_model.php:4146
#: application/models/Logbook_model.php:4160
msgid "confirmation pending"
msgstr "Bestätigung ausstehend"
#: application/models/Logbook_model.php:4149
#: application/models/Logbook_model.php:4163
msgid "unconfirmed"
msgstr "nicht bestätigt"
#: application/models/Logbook_model.php:4152
#: application/models/Logbook_model.php:4166
msgid "unknown"
msgstr "unbekannt"
@@ -2734,7 +2716,6 @@ msgstr "Die max. Dateigröße für Uploads beträgt "
#: application/views/hrdlog/export.php:74
#: application/views/interface_assets/footer.php:34
#: application/views/qrz/export.php:73 application/views/qrz/export.php:94
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
#: application/views/view_log/qso.php:622
#: application/views/webadif/export.php:34
@@ -5849,7 +5830,6 @@ msgstr[1] "Die Datenbank enthält %d QSOs ohne Stationsprofil (Standort)"
#: application/views/public_search/result.php:17
#: application/views/station_profile/create.php:57
#: application/views/station_profile/edit.php:46
#: application/views/station_profile/index.php:42
#: application/views/stationsetup/linkedlocations.php:32
#: application/views/stationsetup/stationsetup.php:123
msgid "Station Callsign"
@@ -6640,7 +6620,6 @@ msgid "Satellite Pass"
msgstr "Satellitenüberflug"
#: application/views/interface_assets/header.php:265
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Admin"
msgstr "Admin"
@@ -9891,70 +9870,6 @@ msgstr "Zonen"
msgid "Signature"
msgstr "Signaturen"
#: application/views/station_profile/index.php:15
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
"Stationsstandorte definieren die Orte, von denen aus du QRV bist. Dein "
"Zuhause, Bei Freunden oder Unterwegs."
#: application/views/station_profile/index.php:16
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
"Ähnlich wie Logbücher trennen die Stationsstandorte die entsprechenden QSO "
"voneinander ab."
#: application/views/station_profile/index.php:17
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
"Es kann immer nur ein Stationsstandort aktiv sein. Welches das aktuell ist "
"siehst du in der Liste an dem 'Aktive Station' Symbol."
#: application/views/station_profile/index.php:19
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr "Erstelle einen neuen Stationsstandort"
#: application/views/station_profile/index.php:25
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
"Achtung: Du musst einen aktiven Stationsstandort auswählen. Gehe zu "
"Rufzeichen -> Stationsstandorte um einen zu aktivieren."
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
"Aufgrund von Änderungen in Wavelog musst du QSOs wieder einem "
"Stationsstandort zuordnen."
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr "Wartung"
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr "Bitte mache die Zuordnung in "
#: application/views/station_profile/index.php:41
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr "Station Name"
#: application/views/stationsetup/create.php:17
msgid "Station Logbook Name"
msgstr "Name des Stationslogbuchs"
@@ -10002,6 +9917,11 @@ msgstr "Wähle verfügbare Stationsstandorte"
msgid "Link Location"
msgstr "Verknüpfe Standort"
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr "Station Name"
#: application/views/stationsetup/linkedlocations.php:34
msgid "Unlink Station Location"
msgstr "Entferne Verknüpfung"
@@ -10031,6 +9951,28 @@ msgstr "Besucherseite"
msgid "Station Locations"
msgstr "Stationsstandorte"
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
"Stationsstandorte definieren die Orte, von denen aus du QRV bist. Dein "
"Zuhause, Bei Freunden oder Unterwegs."
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
"Ähnlich wie Logbücher trennen die Stationsstandorte die entsprechenden QSO "
"voneinander ab."
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
"Es kann immer nur ein Stationsstandort aktiv sein. Welches das aktuell ist "
"siehst du in der Liste an dem 'Aktive Station' Symbol."
#: application/views/stationsetup/stationsetup.php:98
msgid ""
"The 'Linked' column shows if the station location is linked with the Active "
@@ -10039,6 +9981,34 @@ msgstr ""
"Die Spalte 'verlinkt' zeigt an, ob der Standort mit dem aktiven Logbuch "
"verknüpft wurde."
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr "Erstelle einen neuen Stationsstandort"
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
"Achtung: Du musst einen aktiven Stationsstandort auswählen. Gehe zu "
"Rufzeichen -> Stationsstandorte um einen zu aktivieren."
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
"Aufgrund von Änderungen in Wavelog musst du QSOs wieder einem "
"Stationsstandort zuordnen."
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr "Wartung"
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr "Bitte mache die Zuordnung in "
#: application/views/stationsetup/stationsetup.php:127
msgid "Linked"
msgstr "Verlinkt"

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-08-13 19:24+0000\n"
"POT-Creation-Date: 2024-08-15 07:16+0000\n"
"PO-Revision-Date: 2024-07-09 13:25+0000\n"
"Last-Translator: Fabian Berg <hb9hil@wavelog.org>\n"
"Language-Team: Greek <https://translate.wavelog.org/projects/wavelog/main-"
@@ -401,11 +401,11 @@ msgstr ""
msgid "Backup"
msgstr ""
#: application/controllers/Backup.php:48
#: application/controllers/Backup.php:50
msgid "ADIF - Backup"
msgstr ""
#: application/controllers/Backup.php:80
#: application/controllers/Backup.php:84
msgid "Notes - Backup"
msgstr ""
@@ -1027,7 +1027,6 @@ msgstr ""
#: application/views/qso/components/previous_contacts.php:81
#: application/views/search/result_search.php:11
#: application/views/search/search_result_ajax.php:7
#: application/views/station_profile/index.php:43
#: application/views/stationsetup/stationsetup.php:124
#: application/views/statistics/custom_result.php:92
#: application/views/timeline/index.php:118 application/views/user/edit.php:232
@@ -1125,7 +1124,6 @@ msgstr "Επαρχία"
#: application/views/search/result.php:33
#: application/views/search/search_result_ajax.php:13
#: application/views/simplefle/index.php:147
#: application/views/station_profile/index.php:44
#: application/views/stationsetup/stationsetup.php:125
#: application/views/timeline/index.php:257 application/views/user/edit.php:130
#: application/views/user/edit.php:238 application/views/user/edit.php:260
@@ -1293,7 +1291,6 @@ msgstr "Χειριστής"
#: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368
#: application/views/station_profile/create.php:73
#: application/views/station_profile/edit.php:78
#: application/views/station_profile/index.php:65
#: application/views/stationsetup/linkedlocations.php:17
#: application/views/stationsetup/linkedlocations.php:45
#: application/views/stationsetup/stationsetup.php:150
@@ -1353,7 +1350,7 @@ msgstr ""
msgid "Edit Mode"
msgstr ""
#: application/controllers/Notes.php:19
#: application/controllers/Notes.php:18
#: application/views/interface_assets/header.php:128
#: application/views/notes/add.php:9 application/views/notes/edit.php:10
#: application/views/notes/main.php:5 application/views/notes/main.php:8
@@ -1365,16 +1362,16 @@ msgstr ""
msgid "Notes"
msgstr "Σημειώσεις"
#: application/controllers/Notes.php:38
#: application/controllers/Notes.php:37
msgid "Add Notes"
msgstr ""
#: application/controllers/Notes.php:58
#: application/controllers/Notes.php:64
#: application/views/oqrs/showrequests.php:88
msgid "Note"
msgstr ""
#: application/controllers/Notes.php:79 application/views/notes/edit.php:7
#: application/controllers/Notes.php:92 application/views/notes/edit.php:7
#: application/views/notes/view.php:19
msgid "Edit Note"
msgstr "Επεξεργασία Σημείωσης"
@@ -1597,8 +1594,6 @@ msgstr ""
#: application/views/satellite/edit.php:40
#: application/views/satellite/index.php:26
#: application/views/search/stored_queries.php:22
#: application/views/station_profile/index.php:55
#: application/views/station_profile/index.php:106
#: application/views/stationsetup/stationsetup.php:33
#: application/views/stationsetup/stationsetup.php:137
#: application/views/stationsetup/stationsetup.php:192
@@ -1678,8 +1673,16 @@ msgid ""
"date"
msgstr ""
#: application/controllers/Station.php:35
#: application/controllers/Station.php:78 application/views/csv/index.php:19
#: application/controllers/Station.php:36
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:51
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:59 application/views/csv/index.php:19
#: application/views/dxatlas/index.php:19
#: application/views/labels/index.php:124
#: application/views/logbookadvanced/edit.php:18
@@ -1694,16 +1697,7 @@ msgstr ""
msgid "Station Location"
msgstr "Τοποθεσία Σταθμού"
#: application/controllers/Station.php:55
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:70
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:92
#: application/controllers/Station.php:73
msgid "Duplicate Station Location:"
msgstr ""
@@ -1796,20 +1790,17 @@ msgid "Are you sure you want to delete the public slug?"
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid ""
"Are you sure you want to make the following station the active station: "
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid "Set Active"
msgstr ""
#: application/controllers/Stationsetup.php:351
#: application/views/station_profile/index.php:71
#: application/views/stationsetup/stationsetup.php:156
msgid "Active Station"
msgstr ""
@@ -1818,7 +1809,6 @@ msgstr ""
#: application/views/interface_assets/header.php:113
#: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20
#: application/views/simplefle/index.php:28
#: application/views/station_profile/index.php:76
#: application/views/stationsetup/stationsetup.php:161
#: application/views/user/main.php:87 application/views/user/main.php:89
msgid "QSO"
@@ -1834,8 +1824,6 @@ msgstr ""
#: application/views/mode/index.php:52 application/views/satellite/edit.php:39
#: application/views/satellite/index.php:25
#: application/views/search/stored_queries.php:21
#: application/views/station_profile/index.php:46
#: application/views/station_profile/index.php:79
#: application/views/stationsetup/stationsetup.php:128
#: application/views/stationsetup/stationsetup.php:165
#: application/views/themes/index.php:104 application/views/user/main.php:52
@@ -1843,29 +1831,23 @@ msgid "Edit"
msgstr ""
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:99
#: application/views/stationsetup/stationsetup.php:185
msgid "Are you sure you want to delete all QSOs within this station profile?"
msgstr ""
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:54
#: application/views/station_profile/index.php:101
#: application/views/stationsetup/stationsetup.php:136
#: application/views/stationsetup/stationsetup.php:187
msgid "Empty Log"
msgstr ""
#: application/controllers/Stationsetup.php:367
#: application/views/station_profile/index.php:47
#: application/views/station_profile/index.php:82
#: application/views/stationsetup/stationsetup.php:129
#: application/views/stationsetup/stationsetup.php:168
msgid "Copy"
msgstr ""
#: application/controllers/Stationsetup.php:372
#: application/views/station_profile/index.php:105
#: application/views/stationsetup/stationsetup.php:191
#, php-format
msgid ""
@@ -2129,31 +2111,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4129
#: application/models/Logbook_model.php:4143
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4135
#: application/models/Logbook_model.php:4149
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4140
#: application/models/Logbook_model.php:4154
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4143
#: application/models/Logbook_model.php:4157
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4146
#: application/models/Logbook_model.php:4160
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4149
#: application/models/Logbook_model.php:4163
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4152
#: application/models/Logbook_model.php:4166
msgid "unknown"
msgstr ""
@@ -2694,7 +2676,6 @@ msgstr ""
#: application/views/hrdlog/export.php:74
#: application/views/interface_assets/footer.php:34
#: application/views/qrz/export.php:73 application/views/qrz/export.php:94
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
#: application/views/view_log/qso.php:622
#: application/views/webadif/export.php:34
@@ -5565,7 +5546,6 @@ msgstr[1] ""
#: application/views/public_search/result.php:17
#: application/views/station_profile/create.php:57
#: application/views/station_profile/edit.php:46
#: application/views/station_profile/index.php:42
#: application/views/stationsetup/linkedlocations.php:32
#: application/views/stationsetup/stationsetup.php:123
msgid "Station Callsign"
@@ -6309,7 +6289,6 @@ msgid "Satellite Pass"
msgstr ""
#: application/views/interface_assets/header.php:265
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Admin"
msgstr ""
@@ -9406,60 +9385,6 @@ msgstr ""
msgid "Signature"
msgstr ""
#: application/views/station_profile/index.php:15
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/station_profile/index.php:16
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/station_profile/index.php:17
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/station_profile/index.php:19
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/station_profile/index.php:25
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/station_profile/index.php:41
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/create.php:17
msgid "Station Logbook Name"
msgstr ""
@@ -9507,6 +9432,11 @@ msgstr ""
msgid "Link Location"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:34
msgid "Unlink Station Location"
msgstr ""
@@ -9531,12 +9461,52 @@ msgstr ""
msgid "Station Locations"
msgstr ""
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/stationsetup/stationsetup.php:98
msgid ""
"The 'Linked' column shows if the station location is linked with the Active "
"Logbook selected above."
msgstr ""
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/stationsetup/stationsetup.php:127
msgid "Linked"
msgstr ""

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-08-13 19:24+0000\n"
"POT-Creation-Date: 2024-08-15 07:16+0000\n"
"PO-Revision-Date: 2024-07-09 13:25+0000\n"
"Last-Translator: Anonymous <noreply@weblate.org>\n"
"Language-Team: Spanish <https://translate.wavelog.org/projects/wavelog/main-"
@@ -401,11 +401,11 @@ msgstr "Zonas ITU"
msgid "Backup"
msgstr "Copia de seguridad"
#: application/controllers/Backup.php:48
#: application/controllers/Backup.php:50
msgid "ADIF - Backup"
msgstr "ADIF - Copia de seguridad"
#: application/controllers/Backup.php:80
#: application/controllers/Backup.php:84
msgid "Notes - Backup"
msgstr "Notas - Copia de seguridad"
@@ -1027,7 +1027,6 @@ msgstr "RST (Recibida)"
#: application/views/qso/components/previous_contacts.php:81
#: application/views/search/result_search.php:11
#: application/views/search/search_result_ajax.php:7
#: application/views/station_profile/index.php:43
#: application/views/stationsetup/stationsetup.php:124
#: application/views/statistics/custom_result.php:92
#: application/views/timeline/index.php:118 application/views/user/edit.php:232
@@ -1125,7 +1124,6 @@ msgstr "Estado"
#: application/views/search/result.php:33
#: application/views/search/search_result_ajax.php:13
#: application/views/simplefle/index.php:147
#: application/views/station_profile/index.php:44
#: application/views/stationsetup/stationsetup.php:125
#: application/views/timeline/index.php:257 application/views/user/edit.php:130
#: application/views/user/edit.php:238 application/views/user/edit.php:260
@@ -1293,7 +1291,6 @@ msgstr "Operador"
#: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368
#: application/views/station_profile/create.php:73
#: application/views/station_profile/edit.php:78
#: application/views/station_profile/index.php:65
#: application/views/stationsetup/linkedlocations.php:17
#: application/views/stationsetup/linkedlocations.php:45
#: application/views/stationsetup/stationsetup.php:150
@@ -1353,7 +1350,7 @@ msgstr "Modos"
msgid "Edit Mode"
msgstr ""
#: application/controllers/Notes.php:19
#: application/controllers/Notes.php:18
#: application/views/interface_assets/header.php:128
#: application/views/notes/add.php:9 application/views/notes/edit.php:10
#: application/views/notes/main.php:5 application/views/notes/main.php:8
@@ -1365,16 +1362,16 @@ msgstr ""
msgid "Notes"
msgstr "Notas"
#: application/controllers/Notes.php:38
#: application/controllers/Notes.php:37
msgid "Add Notes"
msgstr ""
#: application/controllers/Notes.php:58
#: application/controllers/Notes.php:64
#: application/views/oqrs/showrequests.php:88
msgid "Note"
msgstr ""
#: application/controllers/Notes.php:79 application/views/notes/edit.php:7
#: application/controllers/Notes.php:92 application/views/notes/edit.php:7
#: application/views/notes/view.php:19
msgid "Edit Note"
msgstr "Editar nota"
@@ -1599,8 +1596,6 @@ msgstr ""
#: application/views/satellite/edit.php:40
#: application/views/satellite/index.php:26
#: application/views/search/stored_queries.php:22
#: application/views/station_profile/index.php:55
#: application/views/station_profile/index.php:106
#: application/views/stationsetup/stationsetup.php:33
#: application/views/stationsetup/stationsetup.php:137
#: application/views/stationsetup/stationsetup.php:192
@@ -1680,8 +1675,16 @@ msgid ""
"date"
msgstr ""
#: application/controllers/Station.php:35
#: application/controllers/Station.php:78 application/views/csv/index.php:19
#: application/controllers/Station.php:36
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr "Crear Localización de Estación"
#: application/controllers/Station.php:51
msgid "Edit Station Location: "
msgstr "Editar Localización de Estación: "
#: application/controllers/Station.php:59 application/views/csv/index.php:19
#: application/views/dxatlas/index.php:19
#: application/views/labels/index.php:124
#: application/views/logbookadvanced/edit.php:18
@@ -1696,16 +1699,7 @@ msgstr ""
msgid "Station Location"
msgstr "Perfil de estación"
#: application/controllers/Station.php:55
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr "Crear Localización de Estación"
#: application/controllers/Station.php:70
msgid "Edit Station Location: "
msgstr "Editar Localización de Estación: "
#: application/controllers/Station.php:92
#: application/controllers/Station.php:73
msgid "Duplicate Station Location:"
msgstr ""
@@ -1801,20 +1795,17 @@ msgid "Are you sure you want to delete the public slug?"
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid ""
"Are you sure you want to make the following station the active station: "
msgstr "¿Está seguro que desea poner como activa la siguiente estación: "
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid "Set Active"
msgstr "Poner como Activa"
#: application/controllers/Stationsetup.php:351
#: application/views/station_profile/index.php:71
#: application/views/stationsetup/stationsetup.php:156
msgid "Active Station"
msgstr "Estación Activa"
@@ -1823,7 +1814,6 @@ msgstr "Estación Activa"
#: application/views/interface_assets/header.php:113
#: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20
#: application/views/simplefle/index.php:28
#: application/views/station_profile/index.php:76
#: application/views/stationsetup/stationsetup.php:161
#: application/views/user/main.php:87 application/views/user/main.php:89
msgid "QSO"
@@ -1839,8 +1829,6 @@ msgstr ""
#: application/views/mode/index.php:52 application/views/satellite/edit.php:39
#: application/views/satellite/index.php:25
#: application/views/search/stored_queries.php:21
#: application/views/station_profile/index.php:46
#: application/views/station_profile/index.php:79
#: application/views/stationsetup/stationsetup.php:128
#: application/views/stationsetup/stationsetup.php:165
#: application/views/themes/index.php:104 application/views/user/main.php:52
@@ -1848,30 +1836,24 @@ msgid "Edit"
msgstr "Editar"
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:99
#: application/views/stationsetup/stationsetup.php:185
msgid "Are you sure you want to delete all QSOs within this station profile?"
msgstr ""
"¿Está seguro que desea eliminar todos los QSOs en este perfil de estación?"
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:54
#: application/views/station_profile/index.php:101
#: application/views/stationsetup/stationsetup.php:136
#: application/views/stationsetup/stationsetup.php:187
msgid "Empty Log"
msgstr "Libro Vacío"
#: application/controllers/Stationsetup.php:367
#: application/views/station_profile/index.php:47
#: application/views/station_profile/index.php:82
#: application/views/stationsetup/stationsetup.php:129
#: application/views/stationsetup/stationsetup.php:168
msgid "Copy"
msgstr "Copiar"
#: application/controllers/Stationsetup.php:372
#: application/views/station_profile/index.php:105
#: application/views/stationsetup/stationsetup.php:191
#, php-format
msgid ""
@@ -2135,31 +2117,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4129
#: application/models/Logbook_model.php:4143
msgid "QSO could not be matched"
msgstr "QSOs que no concuerdan"
#: application/models/Logbook_model.php:4135
#: application/models/Logbook_model.php:4149
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr "confirmados por LoTW/Clublog/eQSL/Concurso"
#: application/models/Logbook_model.php:4140
#: application/models/Logbook_model.php:4154
msgid "confirmed by award manager"
msgstr "confirmados por el administrador del premio"
#: application/models/Logbook_model.php:4143
#: application/models/Logbook_model.php:4157
msgid "confirmed by cross-check of DCL data"
msgstr "confirmados al hacer chequeo cruzadoc on datos de DCL"
#: application/models/Logbook_model.php:4146
#: application/models/Logbook_model.php:4160
msgid "confirmation pending"
msgstr "pendiente de confirmación"
#: application/models/Logbook_model.php:4149
#: application/models/Logbook_model.php:4163
msgid "unconfirmed"
msgstr "sin confirmar"
#: application/models/Logbook_model.php:4152
#: application/models/Logbook_model.php:4166
msgid "unknown"
msgstr "desconocido"
@@ -2700,7 +2682,6 @@ msgstr "El tamaño máximo del archivo subido es "
#: application/views/hrdlog/export.php:74
#: application/views/interface_assets/footer.php:34
#: application/views/qrz/export.php:73 application/views/qrz/export.php:94
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
#: application/views/view_log/qso.php:622
#: application/views/webadif/export.php:34
@@ -5600,7 +5581,6 @@ msgstr[1] ""
#: application/views/public_search/result.php:17
#: application/views/station_profile/create.php:57
#: application/views/station_profile/edit.php:46
#: application/views/station_profile/index.php:42
#: application/views/stationsetup/linkedlocations.php:32
#: application/views/stationsetup/stationsetup.php:123
msgid "Station Callsign"
@@ -6349,7 +6329,6 @@ msgid "Satellite Pass"
msgstr ""
#: application/views/interface_assets/header.php:265
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Admin"
msgstr "Administrador"
@@ -9530,70 +9509,6 @@ msgstr "Zonas"
msgid "Signature"
msgstr "Firma"
#: application/views/station_profile/index.php:15
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
"Las localizaciones de Estación le permiten definir localizaciones de "
"operación, como su QTH, el QTH de un amigo o una estación portable."
#: application/views/station_profile/index.php:16
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
"De forma similar a los libros de guardia, un perfil de estación mantiene "
"asociado un conjunto de QSOs."
#: application/views/station_profile/index.php:17
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
"Solo una estación puede estar activa en cualquier momento. En la tabla de "
"abajo esta se muestra con la etiqueta de -Estación Activa-."
#: application/views/station_profile/index.php:19
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr "Crear una Localización de Estación"
#: application/views/station_profile/index.php:25
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
"Atención: Debe configurar una Localización de Estación como activa. vaya a "
"Indicativo->Localización de Estación para seleccionar una."
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
"Debido a cambios recientes en Wavelog, debe reasignar sus QSO a sus perfiles "
"de estación."
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr "Mantenimiento"
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr "Por favor, reasignelas en "
#: application/views/station_profile/index.php:41
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr "Nombre de Perfil"
#: application/views/stationsetup/create.php:17
msgid "Station Logbook Name"
msgstr "Nombre del Libro de Guardia de Estación"
@@ -9641,6 +9556,11 @@ msgstr "Seleccionar Localizaciones de Estación Disponibles"
msgid "Link Location"
msgstr "Enlazar Localización"
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr "Nombre de Perfil"
#: application/views/stationsetup/linkedlocations.php:34
msgid "Unlink Station Location"
msgstr "Desenlazar la Localización de la Estación"
@@ -9670,12 +9590,62 @@ msgstr ""
msgid "Station Locations"
msgstr ""
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
"Las localizaciones de Estación le permiten definir localizaciones de "
"operación, como su QTH, el QTH de un amigo o una estación portable."
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
"De forma similar a los libros de guardia, un perfil de estación mantiene "
"asociado un conjunto de QSOs."
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
"Solo una estación puede estar activa en cualquier momento. En la tabla de "
"abajo esta se muestra con la etiqueta de -Estación Activa-."
#: application/views/stationsetup/stationsetup.php:98
msgid ""
"The 'Linked' column shows if the station location is linked with the Active "
"Logbook selected above."
msgstr ""
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr "Crear una Localización de Estación"
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
"Atención: Debe configurar una Localización de Estación como activa. vaya a "
"Indicativo->Localización de Estación para seleccionar una."
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
"Debido a cambios recientes en Wavelog, debe reasignar sus QSO a sus perfiles "
"de estación."
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr "Mantenimiento"
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr "Por favor, reasignelas en "
#: application/views/stationsetup/stationsetup.php:127
msgid "Linked"
msgstr ""

View File

@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-08-13 19:24+0000\n"
"POT-Creation-Date: 2024-08-15 07:16+0000\n"
"PO-Revision-Date: 2024-07-09 13:25+0000\n"
"Last-Translator: Anonymous <noreply@weblate.org>\n"
"Language-Team: Finnish <https://translate.wavelog.org/projects/wavelog/main-"
@@ -400,11 +400,11 @@ msgstr ""
msgid "Backup"
msgstr "Varmuuskopiot"
#: application/controllers/Backup.php:48
#: application/controllers/Backup.php:50
msgid "ADIF - Backup"
msgstr ""
#: application/controllers/Backup.php:80
#: application/controllers/Backup.php:84
msgid "Notes - Backup"
msgstr ""
@@ -1024,7 +1024,6 @@ msgstr ""
#: application/views/qso/components/previous_contacts.php:81
#: application/views/search/result_search.php:11
#: application/views/search/search_result_ajax.php:7
#: application/views/station_profile/index.php:43
#: application/views/stationsetup/stationsetup.php:124
#: application/views/statistics/custom_result.php:92
#: application/views/timeline/index.php:118 application/views/user/edit.php:232
@@ -1122,7 +1121,6 @@ msgstr "osavaltio"
#: application/views/search/result.php:33
#: application/views/search/search_result_ajax.php:13
#: application/views/simplefle/index.php:147
#: application/views/station_profile/index.php:44
#: application/views/stationsetup/stationsetup.php:125
#: application/views/timeline/index.php:257 application/views/user/edit.php:130
#: application/views/user/edit.php:238 application/views/user/edit.php:260
@@ -1290,7 +1288,6 @@ msgstr ""
#: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368
#: application/views/station_profile/create.php:73
#: application/views/station_profile/edit.php:78
#: application/views/station_profile/index.php:65
#: application/views/stationsetup/linkedlocations.php:17
#: application/views/stationsetup/linkedlocations.php:45
#: application/views/stationsetup/stationsetup.php:150
@@ -1350,7 +1347,7 @@ msgstr "Modet"
msgid "Edit Mode"
msgstr ""
#: application/controllers/Notes.php:19
#: application/controllers/Notes.php:18
#: application/views/interface_assets/header.php:128
#: application/views/notes/add.php:9 application/views/notes/edit.php:10
#: application/views/notes/main.php:5 application/views/notes/main.php:8
@@ -1362,16 +1359,16 @@ msgstr ""
msgid "Notes"
msgstr "Muistiinpanot"
#: application/controllers/Notes.php:38
#: application/controllers/Notes.php:37
msgid "Add Notes"
msgstr ""
#: application/controllers/Notes.php:58
#: application/controllers/Notes.php:64
#: application/views/oqrs/showrequests.php:88
msgid "Note"
msgstr ""
#: application/controllers/Notes.php:79 application/views/notes/edit.php:7
#: application/controllers/Notes.php:92 application/views/notes/edit.php:7
#: application/views/notes/view.php:19
msgid "Edit Note"
msgstr "Muokkaa muistiinpanoa"
@@ -1594,8 +1591,6 @@ msgstr ""
#: application/views/satellite/edit.php:40
#: application/views/satellite/index.php:26
#: application/views/search/stored_queries.php:22
#: application/views/station_profile/index.php:55
#: application/views/station_profile/index.php:106
#: application/views/stationsetup/stationsetup.php:33
#: application/views/stationsetup/stationsetup.php:137
#: application/views/stationsetup/stationsetup.php:192
@@ -1675,8 +1670,16 @@ msgid ""
"date"
msgstr ""
#: application/controllers/Station.php:35
#: application/controllers/Station.php:78 application/views/csv/index.php:19
#: application/controllers/Station.php:36
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:51
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:59 application/views/csv/index.php:19
#: application/views/dxatlas/index.php:19
#: application/views/labels/index.php:124
#: application/views/logbookadvanced/edit.php:18
@@ -1691,16 +1694,7 @@ msgstr ""
msgid "Station Location"
msgstr "Asemaprofiili"
#: application/controllers/Station.php:55
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:70
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:92
#: application/controllers/Station.php:73
msgid "Duplicate Station Location:"
msgstr ""
@@ -1793,20 +1787,17 @@ msgid "Are you sure you want to delete the public slug?"
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid ""
"Are you sure you want to make the following station the active station: "
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid "Set Active"
msgstr ""
#: application/controllers/Stationsetup.php:351
#: application/views/station_profile/index.php:71
#: application/views/stationsetup/stationsetup.php:156
msgid "Active Station"
msgstr ""
@@ -1815,7 +1806,6 @@ msgstr ""
#: application/views/interface_assets/header.php:113
#: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20
#: application/views/simplefle/index.php:28
#: application/views/station_profile/index.php:76
#: application/views/stationsetup/stationsetup.php:161
#: application/views/user/main.php:87 application/views/user/main.php:89
msgid "QSO"
@@ -1831,8 +1821,6 @@ msgstr ""
#: application/views/mode/index.php:52 application/views/satellite/edit.php:39
#: application/views/satellite/index.php:25
#: application/views/search/stored_queries.php:21
#: application/views/station_profile/index.php:46
#: application/views/station_profile/index.php:79
#: application/views/stationsetup/stationsetup.php:128
#: application/views/stationsetup/stationsetup.php:165
#: application/views/themes/index.php:104 application/views/user/main.php:52
@@ -1840,29 +1828,23 @@ msgid "Edit"
msgstr "Muokkaa"
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:99
#: application/views/stationsetup/stationsetup.php:185
msgid "Are you sure you want to delete all QSOs within this station profile?"
msgstr ""
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:54
#: application/views/station_profile/index.php:101
#: application/views/stationsetup/stationsetup.php:136
#: application/views/stationsetup/stationsetup.php:187
msgid "Empty Log"
msgstr ""
#: application/controllers/Stationsetup.php:367
#: application/views/station_profile/index.php:47
#: application/views/station_profile/index.php:82
#: application/views/stationsetup/stationsetup.php:129
#: application/views/stationsetup/stationsetup.php:168
msgid "Copy"
msgstr ""
#: application/controllers/Stationsetup.php:372
#: application/views/station_profile/index.php:105
#: application/views/stationsetup/stationsetup.php:191
#, php-format
msgid ""
@@ -2126,31 +2108,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4129
#: application/models/Logbook_model.php:4143
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4135
#: application/models/Logbook_model.php:4149
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4140
#: application/models/Logbook_model.php:4154
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4143
#: application/models/Logbook_model.php:4157
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4146
#: application/models/Logbook_model.php:4160
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4149
#: application/models/Logbook_model.php:4163
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4152
#: application/models/Logbook_model.php:4166
msgid "unknown"
msgstr ""
@@ -2691,7 +2673,6 @@ msgstr ""
#: application/views/hrdlog/export.php:74
#: application/views/interface_assets/footer.php:34
#: application/views/qrz/export.php:73 application/views/qrz/export.php:94
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
#: application/views/view_log/qso.php:622
#: application/views/webadif/export.php:34
@@ -5562,7 +5543,6 @@ msgstr[1] ""
#: application/views/public_search/result.php:17
#: application/views/station_profile/create.php:57
#: application/views/station_profile/edit.php:46
#: application/views/station_profile/index.php:42
#: application/views/stationsetup/linkedlocations.php:32
#: application/views/stationsetup/stationsetup.php:123
msgid "Station Callsign"
@@ -6306,7 +6286,6 @@ msgid "Satellite Pass"
msgstr ""
#: application/views/interface_assets/header.php:265
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Admin"
msgstr ""
@@ -9403,60 +9382,6 @@ msgstr ""
msgid "Signature"
msgstr ""
#: application/views/station_profile/index.php:15
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/station_profile/index.php:16
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/station_profile/index.php:17
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/station_profile/index.php:19
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/station_profile/index.php:25
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/station_profile/index.php:41
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/create.php:17
msgid "Station Logbook Name"
msgstr ""
@@ -9504,6 +9429,11 @@ msgstr ""
msgid "Link Location"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:34
msgid "Unlink Station Location"
msgstr ""
@@ -9528,12 +9458,52 @@ msgstr ""
msgid "Station Locations"
msgstr ""
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/stationsetup/stationsetup.php:98
msgid ""
"The 'Linked' column shows if the station location is linked with the Active "
"Logbook selected above."
msgstr ""
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/stationsetup/stationsetup.php:127
msgid "Linked"
msgstr ""

View File

@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-08-13 19:24+0000\n"
"POT-Creation-Date: 2024-08-15 07:16+0000\n"
"PO-Revision-Date: 2024-07-29 12:05+0000\n"
"Last-Translator: \"Francisco (F4VSE)\" <kikosgc@users.noreply.github.com>\n"
"Language-Team: French <https://translate.wavelog.org/projects/wavelog/main-"
@@ -404,11 +404,11 @@ msgstr "Zones ITU"
msgid "Backup"
msgstr "Sauvegarde"
#: application/controllers/Backup.php:48
#: application/controllers/Backup.php:50
msgid "ADIF - Backup"
msgstr "ADIF - Sauvegarde"
#: application/controllers/Backup.php:80
#: application/controllers/Backup.php:84
msgid "Notes - Backup"
msgstr "Notes - Sauvegarde"
@@ -1040,7 +1040,6 @@ msgstr "RST (R)"
#: application/views/qso/components/previous_contacts.php:81
#: application/views/search/result_search.php:11
#: application/views/search/search_result_ajax.php:7
#: application/views/station_profile/index.php:43
#: application/views/stationsetup/stationsetup.php:124
#: application/views/statistics/custom_result.php:92
#: application/views/timeline/index.php:118 application/views/user/edit.php:232
@@ -1138,7 +1137,6 @@ msgstr "Etat"
#: application/views/search/result.php:33
#: application/views/search/search_result_ajax.php:13
#: application/views/simplefle/index.php:147
#: application/views/station_profile/index.php:44
#: application/views/stationsetup/stationsetup.php:125
#: application/views/timeline/index.php:257 application/views/user/edit.php:130
#: application/views/user/edit.php:238 application/views/user/edit.php:260
@@ -1306,7 +1304,6 @@ msgstr "Opérateur"
#: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368
#: application/views/station_profile/create.php:73
#: application/views/station_profile/edit.php:78
#: application/views/station_profile/index.php:65
#: application/views/stationsetup/linkedlocations.php:17
#: application/views/stationsetup/linkedlocations.php:45
#: application/views/stationsetup/stationsetup.php:150
@@ -1366,7 +1363,7 @@ msgstr "Modes"
msgid "Edit Mode"
msgstr "Modifier le mode"
#: application/controllers/Notes.php:19
#: application/controllers/Notes.php:18
#: application/views/interface_assets/header.php:128
#: application/views/notes/add.php:9 application/views/notes/edit.php:10
#: application/views/notes/main.php:5 application/views/notes/main.php:8
@@ -1378,16 +1375,16 @@ msgstr "Modifier le mode"
msgid "Notes"
msgstr "Notes"
#: application/controllers/Notes.php:38
#: application/controllers/Notes.php:37
msgid "Add Notes"
msgstr "Ajouter des notes"
#: application/controllers/Notes.php:58
#: application/controllers/Notes.php:64
#: application/views/oqrs/showrequests.php:88
msgid "Note"
msgstr "Note"
#: application/controllers/Notes.php:79 application/views/notes/edit.php:7
#: application/controllers/Notes.php:92 application/views/notes/edit.php:7
#: application/views/notes/view.php:19
msgid "Edit Note"
msgstr "Edition d'une Note"
@@ -1612,8 +1609,6 @@ msgstr ""
#: application/views/satellite/edit.php:40
#: application/views/satellite/index.php:26
#: application/views/search/stored_queries.php:22
#: application/views/station_profile/index.php:55
#: application/views/station_profile/index.php:106
#: application/views/stationsetup/stationsetup.php:33
#: application/views/stationsetup/stationsetup.php:137
#: application/views/stationsetup/stationsetup.php:192
@@ -1695,8 +1690,16 @@ msgstr ""
"QSOs non confirmés sur LoTW, mais l'indicatif a été téléchargé sur LoTW "
"après la date du QSO"
#: application/controllers/Station.php:35
#: application/controllers/Station.php:78 application/views/csv/index.php:19
#: application/controllers/Station.php:36
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr "Créer un emplacement de station"
#: application/controllers/Station.php:51
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:59 application/views/csv/index.php:19
#: application/views/dxatlas/index.php:19
#: application/views/labels/index.php:124
#: application/views/logbookadvanced/edit.php:18
@@ -1711,16 +1714,7 @@ msgstr ""
msgid "Station Location"
msgstr "Profil de la Station"
#: application/controllers/Station.php:55
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr "Créer un emplacement de station"
#: application/controllers/Station.php:70
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:92
#: application/controllers/Station.php:73
msgid "Duplicate Station Location:"
msgstr ""
@@ -1813,20 +1807,17 @@ msgid "Are you sure you want to delete the public slug?"
msgstr "Êtes-vous sûr de vouloir supprimer le slug public ?"
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid ""
"Are you sure you want to make the following station the active station: "
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid "Set Active"
msgstr "Définir actif"
#: application/controllers/Stationsetup.php:351
#: application/views/station_profile/index.php:71
#: application/views/stationsetup/stationsetup.php:156
msgid "Active Station"
msgstr "Station active"
@@ -1835,7 +1826,6 @@ msgstr "Station active"
#: application/views/interface_assets/header.php:113
#: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20
#: application/views/simplefle/index.php:28
#: application/views/station_profile/index.php:76
#: application/views/stationsetup/stationsetup.php:161
#: application/views/user/main.php:87 application/views/user/main.php:89
msgid "QSO"
@@ -1851,8 +1841,6 @@ msgstr "QSO"
#: application/views/mode/index.php:52 application/views/satellite/edit.php:39
#: application/views/satellite/index.php:25
#: application/views/search/stored_queries.php:21
#: application/views/station_profile/index.php:46
#: application/views/station_profile/index.php:79
#: application/views/stationsetup/stationsetup.php:128
#: application/views/stationsetup/stationsetup.php:165
#: application/views/themes/index.php:104 application/views/user/main.php:52
@@ -1860,29 +1848,23 @@ msgid "Edit"
msgstr "Editer"
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:99
#: application/views/stationsetup/stationsetup.php:185
msgid "Are you sure you want to delete all QSOs within this station profile?"
msgstr "Etes-vous certain de supprimer tous les QSO de cette station ?"
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:54
#: application/views/station_profile/index.php:101
#: application/views/stationsetup/stationsetup.php:136
#: application/views/stationsetup/stationsetup.php:187
msgid "Empty Log"
msgstr "Journal vide"
#: application/controllers/Stationsetup.php:367
#: application/views/station_profile/index.php:47
#: application/views/station_profile/index.php:82
#: application/views/stationsetup/stationsetup.php:129
#: application/views/stationsetup/stationsetup.php:168
msgid "Copy"
msgstr "Copier"
#: application/controllers/Stationsetup.php:372
#: application/views/station_profile/index.php:105
#: application/views/stationsetup/stationsetup.php:191
#, php-format
msgid ""
@@ -2158,31 +2140,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4129
#: application/models/Logbook_model.php:4143
msgid "QSO could not be matched"
msgstr "pas de correspondance pour le QSO"
#: application/models/Logbook_model.php:4135
#: application/models/Logbook_model.php:4149
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr "confirmé par LoTW/Clublog/eQSL/Contest"
#: application/models/Logbook_model.php:4140
#: application/models/Logbook_model.php:4154
msgid "confirmed by award manager"
msgstr "confirmé par le manager de l'Award"
#: application/models/Logbook_model.php:4143
#: application/models/Logbook_model.php:4157
msgid "confirmed by cross-check of DCL data"
msgstr "confirmé par recoupement des données DCL"
#: application/models/Logbook_model.php:4146
#: application/models/Logbook_model.php:4160
msgid "confirmation pending"
msgstr "confirmation en attente"
#: application/models/Logbook_model.php:4149
#: application/models/Logbook_model.php:4163
msgid "unconfirmed"
msgstr "non confirmé"
#: application/models/Logbook_model.php:4152
#: application/models/Logbook_model.php:4166
msgid "unknown"
msgstr "inconnu"
@@ -2723,7 +2705,6 @@ msgstr "La taille maximum d'un fichier à télécharger est "
#: application/views/hrdlog/export.php:74
#: application/views/interface_assets/footer.php:34
#: application/views/qrz/export.php:73 application/views/qrz/export.php:94
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
#: application/views/view_log/qso.php:622
#: application/views/webadif/export.php:34
@@ -5623,7 +5604,6 @@ msgstr[1] ""
#: application/views/public_search/result.php:17
#: application/views/station_profile/create.php:57
#: application/views/station_profile/edit.php:46
#: application/views/station_profile/index.php:42
#: application/views/stationsetup/linkedlocations.php:32
#: application/views/stationsetup/stationsetup.php:123
msgid "Station Callsign"
@@ -6372,7 +6352,6 @@ msgid "Satellite Pass"
msgstr ""
#: application/views/interface_assets/header.php:265
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Admin"
msgstr ""
@@ -9472,60 +9451,6 @@ msgstr ""
msgid "Signature"
msgstr ""
#: application/views/station_profile/index.php:15
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/station_profile/index.php:16
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/station_profile/index.php:17
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/station_profile/index.php:19
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/station_profile/index.php:25
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/station_profile/index.php:41
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/create.php:17
msgid "Station Logbook Name"
msgstr ""
@@ -9573,6 +9498,11 @@ msgstr ""
msgid "Link Location"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:34
msgid "Unlink Station Location"
msgstr ""
@@ -9602,12 +9532,52 @@ msgstr ""
msgid "Station Locations"
msgstr ""
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/stationsetup/stationsetup.php:98
msgid ""
"The 'Linked' column shows if the station location is linked with the Active "
"Logbook selected above."
msgstr ""
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/stationsetup/stationsetup.php:127
msgid "Linked"
msgstr ""

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-08-13 19:24+0000\n"
"POT-Creation-Date: 2024-08-15 07:16+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -400,11 +400,11 @@ msgstr ""
msgid "Backup"
msgstr ""
#: application/controllers/Backup.php:48
#: application/controllers/Backup.php:50
msgid "ADIF - Backup"
msgstr ""
#: application/controllers/Backup.php:80
#: application/controllers/Backup.php:84
msgid "Notes - Backup"
msgstr ""
@@ -1024,7 +1024,6 @@ msgstr ""
#: application/views/qso/components/previous_contacts.php:81
#: application/views/search/result_search.php:11
#: application/views/search/search_result_ajax.php:7
#: application/views/station_profile/index.php:43
#: application/views/stationsetup/stationsetup.php:124
#: application/views/statistics/custom_result.php:92
#: application/views/timeline/index.php:118 application/views/user/edit.php:232
@@ -1122,7 +1121,6 @@ msgstr ""
#: application/views/search/result.php:33
#: application/views/search/search_result_ajax.php:13
#: application/views/simplefle/index.php:147
#: application/views/station_profile/index.php:44
#: application/views/stationsetup/stationsetup.php:125
#: application/views/timeline/index.php:257 application/views/user/edit.php:130
#: application/views/user/edit.php:238 application/views/user/edit.php:260
@@ -1290,7 +1288,6 @@ msgstr ""
#: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368
#: application/views/station_profile/create.php:73
#: application/views/station_profile/edit.php:78
#: application/views/station_profile/index.php:65
#: application/views/stationsetup/linkedlocations.php:17
#: application/views/stationsetup/linkedlocations.php:45
#: application/views/stationsetup/stationsetup.php:150
@@ -1350,7 +1347,7 @@ msgstr ""
msgid "Edit Mode"
msgstr ""
#: application/controllers/Notes.php:19
#: application/controllers/Notes.php:18
#: application/views/interface_assets/header.php:128
#: application/views/notes/add.php:9 application/views/notes/edit.php:10
#: application/views/notes/main.php:5 application/views/notes/main.php:8
@@ -1362,16 +1359,16 @@ msgstr ""
msgid "Notes"
msgstr ""
#: application/controllers/Notes.php:38
#: application/controllers/Notes.php:37
msgid "Add Notes"
msgstr ""
#: application/controllers/Notes.php:58
#: application/controllers/Notes.php:64
#: application/views/oqrs/showrequests.php:88
msgid "Note"
msgstr ""
#: application/controllers/Notes.php:79 application/views/notes/edit.php:7
#: application/controllers/Notes.php:92 application/views/notes/edit.php:7
#: application/views/notes/view.php:19
msgid "Edit Note"
msgstr ""
@@ -1594,8 +1591,6 @@ msgstr ""
#: application/views/satellite/edit.php:40
#: application/views/satellite/index.php:26
#: application/views/search/stored_queries.php:22
#: application/views/station_profile/index.php:55
#: application/views/station_profile/index.php:106
#: application/views/stationsetup/stationsetup.php:33
#: application/views/stationsetup/stationsetup.php:137
#: application/views/stationsetup/stationsetup.php:192
@@ -1675,8 +1670,16 @@ msgid ""
"date"
msgstr ""
#: application/controllers/Station.php:35
#: application/controllers/Station.php:78 application/views/csv/index.php:19
#: application/controllers/Station.php:36
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:51
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:59 application/views/csv/index.php:19
#: application/views/dxatlas/index.php:19
#: application/views/labels/index.php:124
#: application/views/logbookadvanced/edit.php:18
@@ -1691,16 +1694,7 @@ msgstr ""
msgid "Station Location"
msgstr ""
#: application/controllers/Station.php:55
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:70
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:92
#: application/controllers/Station.php:73
msgid "Duplicate Station Location:"
msgstr ""
@@ -1793,20 +1787,17 @@ msgid "Are you sure you want to delete the public slug?"
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid ""
"Are you sure you want to make the following station the active station: "
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid "Set Active"
msgstr ""
#: application/controllers/Stationsetup.php:351
#: application/views/station_profile/index.php:71
#: application/views/stationsetup/stationsetup.php:156
msgid "Active Station"
msgstr ""
@@ -1815,7 +1806,6 @@ msgstr ""
#: application/views/interface_assets/header.php:113
#: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20
#: application/views/simplefle/index.php:28
#: application/views/station_profile/index.php:76
#: application/views/stationsetup/stationsetup.php:161
#: application/views/user/main.php:87 application/views/user/main.php:89
msgid "QSO"
@@ -1831,8 +1821,6 @@ msgstr ""
#: application/views/mode/index.php:52 application/views/satellite/edit.php:39
#: application/views/satellite/index.php:25
#: application/views/search/stored_queries.php:21
#: application/views/station_profile/index.php:46
#: application/views/station_profile/index.php:79
#: application/views/stationsetup/stationsetup.php:128
#: application/views/stationsetup/stationsetup.php:165
#: application/views/themes/index.php:104 application/views/user/main.php:52
@@ -1840,29 +1828,23 @@ msgid "Edit"
msgstr ""
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:99
#: application/views/stationsetup/stationsetup.php:185
msgid "Are you sure you want to delete all QSOs within this station profile?"
msgstr ""
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:54
#: application/views/station_profile/index.php:101
#: application/views/stationsetup/stationsetup.php:136
#: application/views/stationsetup/stationsetup.php:187
msgid "Empty Log"
msgstr ""
#: application/controllers/Stationsetup.php:367
#: application/views/station_profile/index.php:47
#: application/views/station_profile/index.php:82
#: application/views/stationsetup/stationsetup.php:129
#: application/views/stationsetup/stationsetup.php:168
msgid "Copy"
msgstr ""
#: application/controllers/Stationsetup.php:372
#: application/views/station_profile/index.php:105
#: application/views/stationsetup/stationsetup.php:191
#, php-format
msgid ""
@@ -2126,31 +2108,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4129
#: application/models/Logbook_model.php:4143
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4135
#: application/models/Logbook_model.php:4149
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4140
#: application/models/Logbook_model.php:4154
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4143
#: application/models/Logbook_model.php:4157
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4146
#: application/models/Logbook_model.php:4160
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4149
#: application/models/Logbook_model.php:4163
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4152
#: application/models/Logbook_model.php:4166
msgid "unknown"
msgstr ""
@@ -2691,7 +2673,6 @@ msgstr ""
#: application/views/hrdlog/export.php:74
#: application/views/interface_assets/footer.php:34
#: application/views/qrz/export.php:73 application/views/qrz/export.php:94
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
#: application/views/view_log/qso.php:622
#: application/views/webadif/export.php:34
@@ -5562,7 +5543,6 @@ msgstr[1] ""
#: application/views/public_search/result.php:17
#: application/views/station_profile/create.php:57
#: application/views/station_profile/edit.php:46
#: application/views/station_profile/index.php:42
#: application/views/stationsetup/linkedlocations.php:32
#: application/views/stationsetup/stationsetup.php:123
msgid "Station Callsign"
@@ -6306,7 +6286,6 @@ msgid "Satellite Pass"
msgstr ""
#: application/views/interface_assets/header.php:265
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Admin"
msgstr ""
@@ -9389,60 +9368,6 @@ msgstr ""
msgid "Signature"
msgstr ""
#: application/views/station_profile/index.php:15
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/station_profile/index.php:16
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/station_profile/index.php:17
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/station_profile/index.php:19
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/station_profile/index.php:25
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/station_profile/index.php:41
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/create.php:17
msgid "Station Logbook Name"
msgstr ""
@@ -9490,6 +9415,11 @@ msgstr ""
msgid "Link Location"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:34
msgid "Unlink Station Location"
msgstr ""
@@ -9514,12 +9444,52 @@ msgstr ""
msgid "Station Locations"
msgstr ""
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/stationsetup/stationsetup.php:98
msgid ""
"The 'Linked' column shows if the station location is linked with the Active "
"Logbook selected above."
msgstr ""
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/stationsetup/stationsetup.php:127
msgid "Linked"
msgstr ""

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-08-13 19:24+0000\n"
"POT-Creation-Date: 2024-08-15 07:16+0000\n"
"PO-Revision-Date: 2024-08-09 07:24+0000\n"
"Last-Translator: Luca <lucabennati1996@gmail.com>\n"
"Language-Team: Italian <https://translate.wavelog.org/projects/wavelog/main-"
@@ -401,11 +401,11 @@ msgstr "Zone ITU"
msgid "Backup"
msgstr "Backup"
#: application/controllers/Backup.php:48
#: application/controllers/Backup.php:50
msgid "ADIF - Backup"
msgstr "ADIF - Backup"
#: application/controllers/Backup.php:80
#: application/controllers/Backup.php:84
msgid "Notes - Backup"
msgstr "Note - Backup"
@@ -1027,7 +1027,6 @@ msgstr ""
#: application/views/qso/components/previous_contacts.php:81
#: application/views/search/result_search.php:11
#: application/views/search/search_result_ajax.php:7
#: application/views/station_profile/index.php:43
#: application/views/stationsetup/stationsetup.php:124
#: application/views/statistics/custom_result.php:92
#: application/views/timeline/index.php:118 application/views/user/edit.php:232
@@ -1125,7 +1124,6 @@ msgstr "Stato"
#: application/views/search/result.php:33
#: application/views/search/search_result_ajax.php:13
#: application/views/simplefle/index.php:147
#: application/views/station_profile/index.php:44
#: application/views/stationsetup/stationsetup.php:125
#: application/views/timeline/index.php:257 application/views/user/edit.php:130
#: application/views/user/edit.php:238 application/views/user/edit.php:260
@@ -1293,7 +1291,6 @@ msgstr "Operatore"
#: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368
#: application/views/station_profile/create.php:73
#: application/views/station_profile/edit.php:78
#: application/views/station_profile/index.php:65
#: application/views/stationsetup/linkedlocations.php:17
#: application/views/stationsetup/linkedlocations.php:45
#: application/views/stationsetup/stationsetup.php:150
@@ -1353,7 +1350,7 @@ msgstr ""
msgid "Edit Mode"
msgstr ""
#: application/controllers/Notes.php:19
#: application/controllers/Notes.php:18
#: application/views/interface_assets/header.php:128
#: application/views/notes/add.php:9 application/views/notes/edit.php:10
#: application/views/notes/main.php:5 application/views/notes/main.php:8
@@ -1365,16 +1362,16 @@ msgstr ""
msgid "Notes"
msgstr "Note"
#: application/controllers/Notes.php:38
#: application/controllers/Notes.php:37
msgid "Add Notes"
msgstr ""
#: application/controllers/Notes.php:58
#: application/controllers/Notes.php:64
#: application/views/oqrs/showrequests.php:88
msgid "Note"
msgstr ""
#: application/controllers/Notes.php:79 application/views/notes/edit.php:7
#: application/controllers/Notes.php:92 application/views/notes/edit.php:7
#: application/views/notes/view.php:19
msgid "Edit Note"
msgstr "Modifica Nota"
@@ -1597,8 +1594,6 @@ msgstr ""
#: application/views/satellite/edit.php:40
#: application/views/satellite/index.php:26
#: application/views/search/stored_queries.php:22
#: application/views/station_profile/index.php:55
#: application/views/station_profile/index.php:106
#: application/views/stationsetup/stationsetup.php:33
#: application/views/stationsetup/stationsetup.php:137
#: application/views/stationsetup/stationsetup.php:192
@@ -1678,8 +1673,16 @@ msgid ""
"date"
msgstr ""
#: application/controllers/Station.php:35
#: application/controllers/Station.php:78 application/views/csv/index.php:19
#: application/controllers/Station.php:36
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:51
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:59 application/views/csv/index.php:19
#: application/views/dxatlas/index.php:19
#: application/views/labels/index.php:124
#: application/views/logbookadvanced/edit.php:18
@@ -1694,16 +1697,7 @@ msgstr ""
msgid "Station Location"
msgstr "Luogo Stazione"
#: application/controllers/Station.php:55
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:70
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:92
#: application/controllers/Station.php:73
msgid "Duplicate Station Location:"
msgstr ""
@@ -1796,20 +1790,17 @@ msgid "Are you sure you want to delete the public slug?"
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid ""
"Are you sure you want to make the following station the active station: "
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid "Set Active"
msgstr ""
#: application/controllers/Stationsetup.php:351
#: application/views/station_profile/index.php:71
#: application/views/stationsetup/stationsetup.php:156
msgid "Active Station"
msgstr ""
@@ -1818,7 +1809,6 @@ msgstr ""
#: application/views/interface_assets/header.php:113
#: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20
#: application/views/simplefle/index.php:28
#: application/views/station_profile/index.php:76
#: application/views/stationsetup/stationsetup.php:161
#: application/views/user/main.php:87 application/views/user/main.php:89
msgid "QSO"
@@ -1834,8 +1824,6 @@ msgstr ""
#: application/views/mode/index.php:52 application/views/satellite/edit.php:39
#: application/views/satellite/index.php:25
#: application/views/search/stored_queries.php:21
#: application/views/station_profile/index.php:46
#: application/views/station_profile/index.php:79
#: application/views/stationsetup/stationsetup.php:128
#: application/views/stationsetup/stationsetup.php:165
#: application/views/themes/index.php:104 application/views/user/main.php:52
@@ -1843,29 +1831,23 @@ msgid "Edit"
msgstr ""
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:99
#: application/views/stationsetup/stationsetup.php:185
msgid "Are you sure you want to delete all QSOs within this station profile?"
msgstr ""
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:54
#: application/views/station_profile/index.php:101
#: application/views/stationsetup/stationsetup.php:136
#: application/views/stationsetup/stationsetup.php:187
msgid "Empty Log"
msgstr ""
#: application/controllers/Stationsetup.php:367
#: application/views/station_profile/index.php:47
#: application/views/station_profile/index.php:82
#: application/views/stationsetup/stationsetup.php:129
#: application/views/stationsetup/stationsetup.php:168
msgid "Copy"
msgstr ""
#: application/controllers/Stationsetup.php:372
#: application/views/station_profile/index.php:105
#: application/views/stationsetup/stationsetup.php:191
#, php-format
msgid ""
@@ -2129,31 +2111,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4129
#: application/models/Logbook_model.php:4143
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4135
#: application/models/Logbook_model.php:4149
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4140
#: application/models/Logbook_model.php:4154
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4143
#: application/models/Logbook_model.php:4157
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4146
#: application/models/Logbook_model.php:4160
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4149
#: application/models/Logbook_model.php:4163
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4152
#: application/models/Logbook_model.php:4166
msgid "unknown"
msgstr ""
@@ -2694,7 +2676,6 @@ msgstr ""
#: application/views/hrdlog/export.php:74
#: application/views/interface_assets/footer.php:34
#: application/views/qrz/export.php:73 application/views/qrz/export.php:94
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
#: application/views/view_log/qso.php:622
#: application/views/webadif/export.php:34
@@ -5565,7 +5546,6 @@ msgstr[1] ""
#: application/views/public_search/result.php:17
#: application/views/station_profile/create.php:57
#: application/views/station_profile/edit.php:46
#: application/views/station_profile/index.php:42
#: application/views/stationsetup/linkedlocations.php:32
#: application/views/stationsetup/stationsetup.php:123
msgid "Station Callsign"
@@ -6309,7 +6289,6 @@ msgid "Satellite Pass"
msgstr ""
#: application/views/interface_assets/header.php:265
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Admin"
msgstr ""
@@ -9401,60 +9380,6 @@ msgstr ""
msgid "Signature"
msgstr ""
#: application/views/station_profile/index.php:15
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/station_profile/index.php:16
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/station_profile/index.php:17
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/station_profile/index.php:19
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/station_profile/index.php:25
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/station_profile/index.php:41
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/create.php:17
msgid "Station Logbook Name"
msgstr ""
@@ -9502,6 +9427,11 @@ msgstr ""
msgid "Link Location"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:34
msgid "Unlink Station Location"
msgstr ""
@@ -9526,12 +9456,52 @@ msgstr ""
msgid "Station Locations"
msgstr ""
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/stationsetup/stationsetup.php:98
msgid ""
"The 'Linked' column shows if the station location is linked with the Active "
"Logbook selected above."
msgstr ""
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/stationsetup/stationsetup.php:127
msgid "Linked"
msgstr ""

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-08-13 19:24+0000\n"
"POT-Creation-Date: 2024-08-15 07:16+0000\n"
"PO-Revision-Date: 2024-08-12 05:44+0000\n"
"Last-Translator: Casper van Lieburg <pa7dx@yahoo.com>\n"
"Language-Team: Dutch <https://translate.wavelog.org/projects/wavelog/main-"
@@ -401,11 +401,11 @@ msgstr ""
msgid "Backup"
msgstr ""
#: application/controllers/Backup.php:48
#: application/controllers/Backup.php:50
msgid "ADIF - Backup"
msgstr ""
#: application/controllers/Backup.php:80
#: application/controllers/Backup.php:84
msgid "Notes - Backup"
msgstr ""
@@ -1025,7 +1025,6 @@ msgstr ""
#: application/views/qso/components/previous_contacts.php:81
#: application/views/search/result_search.php:11
#: application/views/search/search_result_ajax.php:7
#: application/views/station_profile/index.php:43
#: application/views/stationsetup/stationsetup.php:124
#: application/views/statistics/custom_result.php:92
#: application/views/timeline/index.php:118 application/views/user/edit.php:232
@@ -1123,7 +1122,6 @@ msgstr ""
#: application/views/search/result.php:33
#: application/views/search/search_result_ajax.php:13
#: application/views/simplefle/index.php:147
#: application/views/station_profile/index.php:44
#: application/views/stationsetup/stationsetup.php:125
#: application/views/timeline/index.php:257 application/views/user/edit.php:130
#: application/views/user/edit.php:238 application/views/user/edit.php:260
@@ -1291,7 +1289,6 @@ msgstr ""
#: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368
#: application/views/station_profile/create.php:73
#: application/views/station_profile/edit.php:78
#: application/views/station_profile/index.php:65
#: application/views/stationsetup/linkedlocations.php:17
#: application/views/stationsetup/linkedlocations.php:45
#: application/views/stationsetup/stationsetup.php:150
@@ -1351,7 +1348,7 @@ msgstr ""
msgid "Edit Mode"
msgstr ""
#: application/controllers/Notes.php:19
#: application/controllers/Notes.php:18
#: application/views/interface_assets/header.php:128
#: application/views/notes/add.php:9 application/views/notes/edit.php:10
#: application/views/notes/main.php:5 application/views/notes/main.php:8
@@ -1363,16 +1360,16 @@ msgstr ""
msgid "Notes"
msgstr "Aantekeningen"
#: application/controllers/Notes.php:38
#: application/controllers/Notes.php:37
msgid "Add Notes"
msgstr ""
#: application/controllers/Notes.php:58
#: application/controllers/Notes.php:64
#: application/views/oqrs/showrequests.php:88
msgid "Note"
msgstr ""
#: application/controllers/Notes.php:79 application/views/notes/edit.php:7
#: application/controllers/Notes.php:92 application/views/notes/edit.php:7
#: application/views/notes/view.php:19
msgid "Edit Note"
msgstr ""
@@ -1595,8 +1592,6 @@ msgstr ""
#: application/views/satellite/edit.php:40
#: application/views/satellite/index.php:26
#: application/views/search/stored_queries.php:22
#: application/views/station_profile/index.php:55
#: application/views/station_profile/index.php:106
#: application/views/stationsetup/stationsetup.php:33
#: application/views/stationsetup/stationsetup.php:137
#: application/views/stationsetup/stationsetup.php:192
@@ -1676,8 +1671,16 @@ msgid ""
"date"
msgstr ""
#: application/controllers/Station.php:35
#: application/controllers/Station.php:78 application/views/csv/index.php:19
#: application/controllers/Station.php:36
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:51
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:59 application/views/csv/index.php:19
#: application/views/dxatlas/index.php:19
#: application/views/labels/index.php:124
#: application/views/logbookadvanced/edit.php:18
@@ -1692,16 +1695,7 @@ msgstr ""
msgid "Station Location"
msgstr "Station Profiel"
#: application/controllers/Station.php:55
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:70
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:92
#: application/controllers/Station.php:73
msgid "Duplicate Station Location:"
msgstr ""
@@ -1794,20 +1788,17 @@ msgid "Are you sure you want to delete the public slug?"
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid ""
"Are you sure you want to make the following station the active station: "
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid "Set Active"
msgstr ""
#: application/controllers/Stationsetup.php:351
#: application/views/station_profile/index.php:71
#: application/views/stationsetup/stationsetup.php:156
msgid "Active Station"
msgstr ""
@@ -1816,7 +1807,6 @@ msgstr ""
#: application/views/interface_assets/header.php:113
#: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20
#: application/views/simplefle/index.php:28
#: application/views/station_profile/index.php:76
#: application/views/stationsetup/stationsetup.php:161
#: application/views/user/main.php:87 application/views/user/main.php:89
msgid "QSO"
@@ -1832,8 +1822,6 @@ msgstr ""
#: application/views/mode/index.php:52 application/views/satellite/edit.php:39
#: application/views/satellite/index.php:25
#: application/views/search/stored_queries.php:21
#: application/views/station_profile/index.php:46
#: application/views/station_profile/index.php:79
#: application/views/stationsetup/stationsetup.php:128
#: application/views/stationsetup/stationsetup.php:165
#: application/views/themes/index.php:104 application/views/user/main.php:52
@@ -1841,29 +1829,23 @@ msgid "Edit"
msgstr ""
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:99
#: application/views/stationsetup/stationsetup.php:185
msgid "Are you sure you want to delete all QSOs within this station profile?"
msgstr ""
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:54
#: application/views/station_profile/index.php:101
#: application/views/stationsetup/stationsetup.php:136
#: application/views/stationsetup/stationsetup.php:187
msgid "Empty Log"
msgstr ""
#: application/controllers/Stationsetup.php:367
#: application/views/station_profile/index.php:47
#: application/views/station_profile/index.php:82
#: application/views/stationsetup/stationsetup.php:129
#: application/views/stationsetup/stationsetup.php:168
msgid "Copy"
msgstr ""
#: application/controllers/Stationsetup.php:372
#: application/views/station_profile/index.php:105
#: application/views/stationsetup/stationsetup.php:191
#, php-format
msgid ""
@@ -2127,31 +2109,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4129
#: application/models/Logbook_model.php:4143
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4135
#: application/models/Logbook_model.php:4149
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4140
#: application/models/Logbook_model.php:4154
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4143
#: application/models/Logbook_model.php:4157
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4146
#: application/models/Logbook_model.php:4160
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4149
#: application/models/Logbook_model.php:4163
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4152
#: application/models/Logbook_model.php:4166
msgid "unknown"
msgstr ""
@@ -2692,7 +2674,6 @@ msgstr ""
#: application/views/hrdlog/export.php:74
#: application/views/interface_assets/footer.php:34
#: application/views/qrz/export.php:73 application/views/qrz/export.php:94
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
#: application/views/view_log/qso.php:622
#: application/views/webadif/export.php:34
@@ -5563,7 +5544,6 @@ msgstr[1] ""
#: application/views/public_search/result.php:17
#: application/views/station_profile/create.php:57
#: application/views/station_profile/edit.php:46
#: application/views/station_profile/index.php:42
#: application/views/stationsetup/linkedlocations.php:32
#: application/views/stationsetup/stationsetup.php:123
msgid "Station Callsign"
@@ -6307,7 +6287,6 @@ msgid "Satellite Pass"
msgstr ""
#: application/views/interface_assets/header.php:265
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Admin"
msgstr ""
@@ -9392,60 +9371,6 @@ msgstr ""
msgid "Signature"
msgstr ""
#: application/views/station_profile/index.php:15
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/station_profile/index.php:16
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/station_profile/index.php:17
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/station_profile/index.php:19
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/station_profile/index.php:25
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/station_profile/index.php:41
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/create.php:17
msgid "Station Logbook Name"
msgstr ""
@@ -9493,6 +9418,11 @@ msgstr ""
msgid "Link Location"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:34
msgid "Unlink Station Location"
msgstr ""
@@ -9517,12 +9447,52 @@ msgstr ""
msgid "Station Locations"
msgstr ""
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/stationsetup/stationsetup.php:98
msgid ""
"The 'Linked' column shows if the station location is linked with the Active "
"Logbook selected above."
msgstr ""
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/stationsetup/stationsetup.php:127
msgid "Linked"
msgstr ""

View File

@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-08-13 19:24+0000\n"
"POT-Creation-Date: 2024-08-15 07:16+0000\n"
"PO-Revision-Date: 2024-07-09 13:26+0000\n"
"Last-Translator: Anonymous <noreply@weblate.org>\n"
"Language-Team: Polish <https://translate.wavelog.org/projects/wavelog/main-"
@@ -401,11 +401,11 @@ msgstr ""
msgid "Backup"
msgstr ""
#: application/controllers/Backup.php:48
#: application/controllers/Backup.php:50
msgid "ADIF - Backup"
msgstr ""
#: application/controllers/Backup.php:80
#: application/controllers/Backup.php:84
msgid "Notes - Backup"
msgstr ""
@@ -1026,7 +1026,6 @@ msgstr ""
#: application/views/qso/components/previous_contacts.php:81
#: application/views/search/result_search.php:11
#: application/views/search/search_result_ajax.php:7
#: application/views/station_profile/index.php:43
#: application/views/stationsetup/stationsetup.php:124
#: application/views/statistics/custom_result.php:92
#: application/views/timeline/index.php:118 application/views/user/edit.php:232
@@ -1124,7 +1123,6 @@ msgstr "Stan"
#: application/views/search/result.php:33
#: application/views/search/search_result_ajax.php:13
#: application/views/simplefle/index.php:147
#: application/views/station_profile/index.php:44
#: application/views/stationsetup/stationsetup.php:125
#: application/views/timeline/index.php:257 application/views/user/edit.php:130
#: application/views/user/edit.php:238 application/views/user/edit.php:260
@@ -1292,7 +1290,6 @@ msgstr ""
#: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368
#: application/views/station_profile/create.php:73
#: application/views/station_profile/edit.php:78
#: application/views/station_profile/index.php:65
#: application/views/stationsetup/linkedlocations.php:17
#: application/views/stationsetup/linkedlocations.php:45
#: application/views/stationsetup/stationsetup.php:150
@@ -1352,7 +1349,7 @@ msgstr ""
msgid "Edit Mode"
msgstr ""
#: application/controllers/Notes.php:19
#: application/controllers/Notes.php:18
#: application/views/interface_assets/header.php:128
#: application/views/notes/add.php:9 application/views/notes/edit.php:10
#: application/views/notes/main.php:5 application/views/notes/main.php:8
@@ -1364,16 +1361,16 @@ msgstr ""
msgid "Notes"
msgstr "Notatki"
#: application/controllers/Notes.php:38
#: application/controllers/Notes.php:37
msgid "Add Notes"
msgstr ""
#: application/controllers/Notes.php:58
#: application/controllers/Notes.php:64
#: application/views/oqrs/showrequests.php:88
msgid "Note"
msgstr ""
#: application/controllers/Notes.php:79 application/views/notes/edit.php:7
#: application/controllers/Notes.php:92 application/views/notes/edit.php:7
#: application/views/notes/view.php:19
msgid "Edit Note"
msgstr "Edytuj notatkę"
@@ -1596,8 +1593,6 @@ msgstr ""
#: application/views/satellite/edit.php:40
#: application/views/satellite/index.php:26
#: application/views/search/stored_queries.php:22
#: application/views/station_profile/index.php:55
#: application/views/station_profile/index.php:106
#: application/views/stationsetup/stationsetup.php:33
#: application/views/stationsetup/stationsetup.php:137
#: application/views/stationsetup/stationsetup.php:192
@@ -1677,8 +1672,16 @@ msgid ""
"date"
msgstr ""
#: application/controllers/Station.php:35
#: application/controllers/Station.php:78 application/views/csv/index.php:19
#: application/controllers/Station.php:36
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:51
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:59 application/views/csv/index.php:19
#: application/views/dxatlas/index.php:19
#: application/views/labels/index.php:124
#: application/views/logbookadvanced/edit.php:18
@@ -1693,16 +1696,7 @@ msgstr ""
msgid "Station Location"
msgstr "Lokalizacja stacji"
#: application/controllers/Station.php:55
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:70
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:92
#: application/controllers/Station.php:73
msgid "Duplicate Station Location:"
msgstr ""
@@ -1795,20 +1789,17 @@ msgid "Are you sure you want to delete the public slug?"
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid ""
"Are you sure you want to make the following station the active station: "
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid "Set Active"
msgstr ""
#: application/controllers/Stationsetup.php:351
#: application/views/station_profile/index.php:71
#: application/views/stationsetup/stationsetup.php:156
msgid "Active Station"
msgstr ""
@@ -1817,7 +1808,6 @@ msgstr ""
#: application/views/interface_assets/header.php:113
#: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20
#: application/views/simplefle/index.php:28
#: application/views/station_profile/index.php:76
#: application/views/stationsetup/stationsetup.php:161
#: application/views/user/main.php:87 application/views/user/main.php:89
msgid "QSO"
@@ -1833,8 +1823,6 @@ msgstr ""
#: application/views/mode/index.php:52 application/views/satellite/edit.php:39
#: application/views/satellite/index.php:25
#: application/views/search/stored_queries.php:21
#: application/views/station_profile/index.php:46
#: application/views/station_profile/index.php:79
#: application/views/stationsetup/stationsetup.php:128
#: application/views/stationsetup/stationsetup.php:165
#: application/views/themes/index.php:104 application/views/user/main.php:52
@@ -1842,29 +1830,23 @@ msgid "Edit"
msgstr ""
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:99
#: application/views/stationsetup/stationsetup.php:185
msgid "Are you sure you want to delete all QSOs within this station profile?"
msgstr ""
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:54
#: application/views/station_profile/index.php:101
#: application/views/stationsetup/stationsetup.php:136
#: application/views/stationsetup/stationsetup.php:187
msgid "Empty Log"
msgstr ""
#: application/controllers/Stationsetup.php:367
#: application/views/station_profile/index.php:47
#: application/views/station_profile/index.php:82
#: application/views/stationsetup/stationsetup.php:129
#: application/views/stationsetup/stationsetup.php:168
msgid "Copy"
msgstr ""
#: application/controllers/Stationsetup.php:372
#: application/views/station_profile/index.php:105
#: application/views/stationsetup/stationsetup.php:191
#, php-format
msgid ""
@@ -2128,31 +2110,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4129
#: application/models/Logbook_model.php:4143
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4135
#: application/models/Logbook_model.php:4149
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4140
#: application/models/Logbook_model.php:4154
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4143
#: application/models/Logbook_model.php:4157
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4146
#: application/models/Logbook_model.php:4160
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4149
#: application/models/Logbook_model.php:4163
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4152
#: application/models/Logbook_model.php:4166
msgid "unknown"
msgstr ""
@@ -2693,7 +2675,6 @@ msgstr ""
#: application/views/hrdlog/export.php:74
#: application/views/interface_assets/footer.php:34
#: application/views/qrz/export.php:73 application/views/qrz/export.php:94
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
#: application/views/view_log/qso.php:622
#: application/views/webadif/export.php:34
@@ -5566,7 +5547,6 @@ msgstr[2] ""
#: application/views/public_search/result.php:17
#: application/views/station_profile/create.php:57
#: application/views/station_profile/edit.php:46
#: application/views/station_profile/index.php:42
#: application/views/stationsetup/linkedlocations.php:32
#: application/views/stationsetup/stationsetup.php:123
msgid "Station Callsign"
@@ -6310,7 +6290,6 @@ msgid "Satellite Pass"
msgstr ""
#: application/views/interface_assets/header.php:265
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Admin"
msgstr ""
@@ -9404,60 +9383,6 @@ msgstr ""
msgid "Signature"
msgstr ""
#: application/views/station_profile/index.php:15
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/station_profile/index.php:16
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/station_profile/index.php:17
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/station_profile/index.php:19
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/station_profile/index.php:25
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/station_profile/index.php:41
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/create.php:17
msgid "Station Logbook Name"
msgstr ""
@@ -9505,6 +9430,11 @@ msgstr ""
msgid "Link Location"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:34
msgid "Unlink Station Location"
msgstr ""
@@ -9529,12 +9459,52 @@ msgstr ""
msgid "Station Locations"
msgstr ""
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/stationsetup/stationsetup.php:98
msgid ""
"The 'Linked' column shows if the station location is linked with the Active "
"Logbook selected above."
msgstr ""
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/stationsetup/stationsetup.php:127
msgid "Linked"
msgstr ""

View File

@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-08-13 19:24+0000\n"
"POT-Creation-Date: 2024-08-15 07:16+0000\n"
"PO-Revision-Date: 2024-08-12 15:29+0000\n"
"Last-Translator: \"Francisco (F4VSE)\" <kikosgc@users.noreply.github.com>\n"
"Language-Team: Portuguese (Portugal) <https://translate.wavelog.org/projects/"
@@ -403,11 +403,11 @@ msgstr "Zonas ITU"
msgid "Backup"
msgstr "Backup"
#: application/controllers/Backup.php:48
#: application/controllers/Backup.php:50
msgid "ADIF - Backup"
msgstr "Backup ADIF"
#: application/controllers/Backup.php:80
#: application/controllers/Backup.php:84
msgid "Notes - Backup"
msgstr "Notas - Backup"
@@ -1037,7 +1037,6 @@ msgstr "RST (R)"
#: application/views/qso/components/previous_contacts.php:81
#: application/views/search/result_search.php:11
#: application/views/search/search_result_ajax.php:7
#: application/views/station_profile/index.php:43
#: application/views/stationsetup/stationsetup.php:124
#: application/views/statistics/custom_result.php:92
#: application/views/timeline/index.php:118 application/views/user/edit.php:232
@@ -1135,7 +1134,6 @@ msgstr "Estado"
#: application/views/search/result.php:33
#: application/views/search/search_result_ajax.php:13
#: application/views/simplefle/index.php:147
#: application/views/station_profile/index.php:44
#: application/views/stationsetup/stationsetup.php:125
#: application/views/timeline/index.php:257 application/views/user/edit.php:130
#: application/views/user/edit.php:238 application/views/user/edit.php:260
@@ -1303,7 +1301,6 @@ msgstr "Operador"
#: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368
#: application/views/station_profile/create.php:73
#: application/views/station_profile/edit.php:78
#: application/views/station_profile/index.php:65
#: application/views/stationsetup/linkedlocations.php:17
#: application/views/stationsetup/linkedlocations.php:45
#: application/views/stationsetup/stationsetup.php:150
@@ -1363,7 +1360,7 @@ msgstr "Modos"
msgid "Edit Mode"
msgstr "Editar Modo"
#: application/controllers/Notes.php:19
#: application/controllers/Notes.php:18
#: application/views/interface_assets/header.php:128
#: application/views/notes/add.php:9 application/views/notes/edit.php:10
#: application/views/notes/main.php:5 application/views/notes/main.php:8
@@ -1375,16 +1372,16 @@ msgstr "Editar Modo"
msgid "Notes"
msgstr "Notas"
#: application/controllers/Notes.php:38
#: application/controllers/Notes.php:37
msgid "Add Notes"
msgstr "Adicionar notas"
#: application/controllers/Notes.php:58
#: application/controllers/Notes.php:64
#: application/views/oqrs/showrequests.php:88
msgid "Note"
msgstr "Nota"
#: application/controllers/Notes.php:79 application/views/notes/edit.php:7
#: application/controllers/Notes.php:92 application/views/notes/edit.php:7
#: application/views/notes/view.php:19
msgid "Edit Note"
msgstr "Editar nota"
@@ -1609,8 +1606,6 @@ msgstr "Predefinição (clique para libertar)"
#: application/views/satellite/edit.php:40
#: application/views/satellite/index.php:26
#: application/views/search/stored_queries.php:22
#: application/views/station_profile/index.php:55
#: application/views/station_profile/index.php:106
#: application/views/stationsetup/stationsetup.php:33
#: application/views/stationsetup/stationsetup.php:137
#: application/views/stationsetup/stationsetup.php:192
@@ -1692,8 +1687,16 @@ msgstr ""
"Contactos não confirmados no LoTW, mas o indicativo foi enviados para o LoTW "
"após a data do contacto"
#: application/controllers/Station.php:35
#: application/controllers/Station.php:78 application/views/csv/index.php:19
#: application/controllers/Station.php:36
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr "Criar localização da estação"
#: application/controllers/Station.php:51
msgid "Edit Station Location: "
msgstr "Editar localização da estação: "
#: application/controllers/Station.php:59 application/views/csv/index.php:19
#: application/views/dxatlas/index.php:19
#: application/views/labels/index.php:124
#: application/views/logbookadvanced/edit.php:18
@@ -1708,16 +1711,7 @@ msgstr ""
msgid "Station Location"
msgstr "Localização da estação"
#: application/controllers/Station.php:55
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr "Criar localização da estação"
#: application/controllers/Station.php:70
msgid "Edit Station Location: "
msgstr "Editar localização da estação: "
#: application/controllers/Station.php:92
#: application/controllers/Station.php:73
msgid "Duplicate Station Location:"
msgstr "Localização da estação duplicada:"
@@ -1812,7 +1806,6 @@ msgid "Are you sure you want to delete the public slug?"
msgstr "Tem a certeza de que pretende eliminar o slug público?"
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid ""
"Are you sure you want to make the following station the active station: "
@@ -1821,13 +1814,11 @@ msgstr ""
"ativa: "
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid "Set Active"
msgstr "Definir ativa"
#: application/controllers/Stationsetup.php:351
#: application/views/station_profile/index.php:71
#: application/views/stationsetup/stationsetup.php:156
msgid "Active Station"
msgstr "Estação ativa"
@@ -1836,7 +1827,6 @@ msgstr "Estação ativa"
#: application/views/interface_assets/header.php:113
#: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20
#: application/views/simplefle/index.php:28
#: application/views/station_profile/index.php:76
#: application/views/stationsetup/stationsetup.php:161
#: application/views/user/main.php:87 application/views/user/main.php:89
msgid "QSO"
@@ -1852,8 +1842,6 @@ msgstr "Contacto"
#: application/views/mode/index.php:52 application/views/satellite/edit.php:39
#: application/views/satellite/index.php:25
#: application/views/search/stored_queries.php:21
#: application/views/station_profile/index.php:46
#: application/views/station_profile/index.php:79
#: application/views/stationsetup/stationsetup.php:128
#: application/views/stationsetup/stationsetup.php:165
#: application/views/themes/index.php:104 application/views/user/main.php:52
@@ -1861,7 +1849,6 @@ msgid "Edit"
msgstr "Editar"
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:99
#: application/views/stationsetup/stationsetup.php:185
msgid "Are you sure you want to delete all QSOs within this station profile?"
msgstr ""
@@ -1869,23 +1856,18 @@ msgstr ""
"de estação?"
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:54
#: application/views/station_profile/index.php:101
#: application/views/stationsetup/stationsetup.php:136
#: application/views/stationsetup/stationsetup.php:187
msgid "Empty Log"
msgstr "Registo vazio"
#: application/controllers/Stationsetup.php:367
#: application/views/station_profile/index.php:47
#: application/views/station_profile/index.php:82
#: application/views/stationsetup/stationsetup.php:129
#: application/views/stationsetup/stationsetup.php:168
msgid "Copy"
msgstr "Copiar"
#: application/controllers/Stationsetup.php:372
#: application/views/station_profile/index.php:105
#: application/views/stationsetup/stationsetup.php:191
#, php-format
msgid ""
@@ -2167,31 +2149,31 @@ msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
"HRDlog: Não foram encontrados perfis de estação com credenciais do HRDlog."
#: application/models/Logbook_model.php:4129
#: application/models/Logbook_model.php:4143
msgid "QSO could not be matched"
msgstr "Não há correspondência de contactos"
#: application/models/Logbook_model.php:4135
#: application/models/Logbook_model.php:4149
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr "confirmado por LoTW/Clublog/eQSL/Contest"
#: application/models/Logbook_model.php:4140
#: application/models/Logbook_model.php:4154
msgid "confirmed by award manager"
msgstr "confirmado pelo gestor do diploma"
#: application/models/Logbook_model.php:4143
#: application/models/Logbook_model.php:4157
msgid "confirmed by cross-check of DCL data"
msgstr "confirmado pelo controlo cruzado dos dados da DCL"
#: application/models/Logbook_model.php:4146
#: application/models/Logbook_model.php:4160
msgid "confirmation pending"
msgstr "confirmação pendente"
#: application/models/Logbook_model.php:4149
#: application/models/Logbook_model.php:4163
msgid "unconfirmed"
msgstr "não confirmado"
#: application/models/Logbook_model.php:4152
#: application/models/Logbook_model.php:4166
msgid "unknown"
msgstr "desconhecido"
@@ -2732,7 +2714,6 @@ msgstr "O tamanho máximo de upload de ficheiro é "
#: application/views/hrdlog/export.php:74
#: application/views/interface_assets/footer.php:34
#: application/views/qrz/export.php:73 application/views/qrz/export.php:94
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
#: application/views/view_log/qso.php:622
#: application/views/webadif/export.php:34
@@ -5835,7 +5816,6 @@ msgstr[1] ""
#: application/views/public_search/result.php:17
#: application/views/station_profile/create.php:57
#: application/views/station_profile/edit.php:46
#: application/views/station_profile/index.php:42
#: application/views/stationsetup/linkedlocations.php:32
#: application/views/stationsetup/stationsetup.php:123
msgid "Station Callsign"
@@ -6627,7 +6607,6 @@ msgid "Satellite Pass"
msgstr "Passagem de Satélite"
#: application/views/interface_assets/header.php:265
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Admin"
msgstr "Administrador"
@@ -9884,70 +9863,6 @@ msgstr "Zonas"
msgid "Signature"
msgstr "Assinatura"
#: application/views/station_profile/index.php:15
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
"A “Station Locations” define os locais de operação, como o seu QTH, o QTH de "
"um amigo ou uma estação portátil."
#: application/views/station_profile/index.php:16
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
"Semelhante aos logbooks, um perfil de estação mantém um conjunto de "
"contactos juntos."
#: application/views/station_profile/index.php:17
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
"Apenas uma estação pode estar ativa de cada vez. Na tabela abaixo, isto é "
"mostrado com o emblema -Active Station- (Estação ativa)."
#: application/views/station_profile/index.php:19
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr "Criar uma localização de estação"
#: application/views/station_profile/index.php:25
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
"Atenção: É necessário definir uma localização de estação ativa. Aceda a "
"Indicativo de chamada->Localização da estação para selecionar uma."
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
"Devido a alterações recentes no Wavelog, é necessário reatribuir contactos "
"aos perfis da sua estação."
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr "Manutenção"
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr "Por favor, reatribua-os em "
#: application/views/station_profile/index.php:41
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr "Nome do perfil"
#: application/views/stationsetup/create.php:17
msgid "Station Logbook Name"
msgstr "Nome do logbook da estação"
@@ -9995,6 +9910,11 @@ msgstr "Selecionar localizações de estações disponíveis"
msgid "Link Location"
msgstr "Conectar localização"
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr "Nome do perfil"
#: application/views/stationsetup/linkedlocations.php:34
msgid "Unlink Station Location"
msgstr "Desconectar localização da estação"
@@ -10023,6 +9943,28 @@ msgstr "Site de visitantes"
msgid "Station Locations"
msgstr "Localizações das Estações"
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
"A “Station Locations” define os locais de operação, como o seu QTH, o QTH de "
"um amigo ou uma estação portátil."
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
"Semelhante aos logbooks, um perfil de estação mantém um conjunto de "
"contactos juntos."
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
"Apenas uma estação pode estar ativa de cada vez. Na tabela abaixo, isto é "
"mostrado com o emblema -Active Station- (Estação ativa)."
#: application/views/stationsetup/stationsetup.php:98
msgid ""
"The 'Linked' column shows if the station location is linked with the Active "
@@ -10031,6 +9973,34 @@ msgstr ""
"A coluna 'Conectado' mostra se a localização da estação está ligada ao "
"logbook Ativo selecionado acima."
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr "Criar uma localização de estação"
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
"Atenção: É necessário definir uma localização de estação ativa. Aceda a "
"Indicativo de chamada->Localização da estação para selecionar uma."
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
"Devido a alterações recentes no Wavelog, é necessário reatribuir contactos "
"aos perfis da sua estação."
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr "Manutenção"
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr "Por favor, reatribua-os em "
#: application/views/stationsetup/stationsetup.php:127
msgid "Linked"
msgstr "Conectado"

View File

@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-08-13 19:24+0000\n"
"POT-Creation-Date: 2024-08-15 07:16+0000\n"
"PO-Revision-Date: 2024-08-12 13:55+0000\n"
"Last-Translator: Michael Skolsky <r1blh@yandex.ru>\n"
"Language-Team: Russian <https://translate.wavelog.org/projects/wavelog/main-"
@@ -404,11 +404,11 @@ msgstr "Зоны ITU"
msgid "Backup"
msgstr "Резервное копирование"
#: application/controllers/Backup.php:48
#: application/controllers/Backup.php:50
msgid "ADIF - Backup"
msgstr "Резервное копирование ADIF"
#: application/controllers/Backup.php:80
#: application/controllers/Backup.php:84
msgid "Notes - Backup"
msgstr "Резервное копирование заметок"
@@ -1039,7 +1039,6 @@ msgstr "RST (RX)"
#: application/views/qso/components/previous_contacts.php:81
#: application/views/search/result_search.php:11
#: application/views/search/search_result_ajax.php:7
#: application/views/station_profile/index.php:43
#: application/views/stationsetup/stationsetup.php:124
#: application/views/statistics/custom_result.php:92
#: application/views/timeline/index.php:118 application/views/user/edit.php:232
@@ -1137,7 +1136,6 @@ msgstr "Область/штат"
#: application/views/search/result.php:33
#: application/views/search/search_result_ajax.php:13
#: application/views/simplefle/index.php:147
#: application/views/station_profile/index.php:44
#: application/views/stationsetup/stationsetup.php:125
#: application/views/timeline/index.php:257 application/views/user/edit.php:130
#: application/views/user/edit.php:238 application/views/user/edit.php:260
@@ -1305,7 +1303,6 @@ msgstr "Оператор"
#: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368
#: application/views/station_profile/create.php:73
#: application/views/station_profile/edit.php:78
#: application/views/station_profile/index.php:65
#: application/views/stationsetup/linkedlocations.php:17
#: application/views/stationsetup/linkedlocations.php:45
#: application/views/stationsetup/stationsetup.php:150
@@ -1365,7 +1362,7 @@ msgstr "Виды модуляции"
msgid "Edit Mode"
msgstr "Редактировать"
#: application/controllers/Notes.php:19
#: application/controllers/Notes.php:18
#: application/views/interface_assets/header.php:128
#: application/views/notes/add.php:9 application/views/notes/edit.php:10
#: application/views/notes/main.php:5 application/views/notes/main.php:8
@@ -1377,16 +1374,16 @@ msgstr "Редактировать"
msgid "Notes"
msgstr "Заметки"
#: application/controllers/Notes.php:38
#: application/controllers/Notes.php:37
msgid "Add Notes"
msgstr "Добавить"
#: application/controllers/Notes.php:58
#: application/controllers/Notes.php:64
#: application/views/oqrs/showrequests.php:88
msgid "Note"
msgstr "Заметка"
#: application/controllers/Notes.php:79 application/views/notes/edit.php:7
#: application/controllers/Notes.php:92 application/views/notes/edit.php:7
#: application/views/notes/view.php:19
msgid "Edit Note"
msgstr "Редактировать"
@@ -1609,8 +1606,6 @@ msgstr "По умолчанию (нажмите, чтобы освободить
#: application/views/satellite/edit.php:40
#: application/views/satellite/index.php:26
#: application/views/search/stored_queries.php:22
#: application/views/station_profile/index.php:55
#: application/views/station_profile/index.php:106
#: application/views/stationsetup/stationsetup.php:33
#: application/views/stationsetup/stationsetup.php:137
#: application/views/stationsetup/stationsetup.php:192
@@ -1692,8 +1687,16 @@ msgstr ""
"QSO, не подтверждённые на LoTW, при том, что корреспондент загружал данные "
"на LoTW после даты QSO"
#: application/controllers/Station.php:35
#: application/controllers/Station.php:78 application/views/csv/index.php:19
#: application/controllers/Station.php:36
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr "Создать профиль QTH"
#: application/controllers/Station.php:51
msgid "Edit Station Location: "
msgstr "Редактировать профиль QTH: "
#: application/controllers/Station.php:59 application/views/csv/index.php:19
#: application/views/dxatlas/index.php:19
#: application/views/labels/index.php:124
#: application/views/logbookadvanced/edit.php:18
@@ -1708,16 +1711,7 @@ msgstr ""
msgid "Station Location"
msgstr "Профиль QTH"
#: application/controllers/Station.php:55
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr "Создать профиль QTH"
#: application/controllers/Station.php:70
msgid "Edit Station Location: "
msgstr "Редактировать профиль QTH: "
#: application/controllers/Station.php:92
#: application/controllers/Station.php:73
msgid "Duplicate Station Location:"
msgstr "Дубликат профиля QTH:"
@@ -1812,20 +1806,17 @@ msgid "Are you sure you want to delete the public slug?"
msgstr "Вы уверены, что хотите удалить публичный псевдоним?"
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid ""
"Are you sure you want to make the following station the active station: "
msgstr "Вы уверены, что хотите сделать этот профиль QTH активным: "
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid "Set Active"
msgstr "Установить активным"
#: application/controllers/Stationsetup.php:351
#: application/views/station_profile/index.php:71
#: application/views/stationsetup/stationsetup.php:156
msgid "Active Station"
msgstr "Активный профиль QTH"
@@ -1834,7 +1825,6 @@ msgstr "Активный профиль QTH"
#: application/views/interface_assets/header.php:113
#: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20
#: application/views/simplefle/index.php:28
#: application/views/station_profile/index.php:76
#: application/views/stationsetup/stationsetup.php:161
#: application/views/user/main.php:87 application/views/user/main.php:89
msgid "QSO"
@@ -1850,8 +1840,6 @@ msgstr "QSO"
#: application/views/mode/index.php:52 application/views/satellite/edit.php:39
#: application/views/satellite/index.php:25
#: application/views/search/stored_queries.php:21
#: application/views/station_profile/index.php:46
#: application/views/station_profile/index.php:79
#: application/views/stationsetup/stationsetup.php:128
#: application/views/stationsetup/stationsetup.php:165
#: application/views/themes/index.php:104 application/views/user/main.php:52
@@ -1859,29 +1847,23 @@ msgid "Edit"
msgstr "Редактировать"
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:99
#: application/views/stationsetup/stationsetup.php:185
msgid "Are you sure you want to delete all QSOs within this station profile?"
msgstr "Вы уверены, что хотите удалить все QSO из этого профиля станции?"
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:54
#: application/views/station_profile/index.php:101
#: application/views/stationsetup/stationsetup.php:136
#: application/views/stationsetup/stationsetup.php:187
msgid "Empty Log"
msgstr "Очистить лог"
#: application/controllers/Stationsetup.php:367
#: application/views/station_profile/index.php:47
#: application/views/station_profile/index.php:82
#: application/views/stationsetup/stationsetup.php:129
#: application/views/stationsetup/stationsetup.php:168
msgid "Copy"
msgstr "Скопировать"
#: application/controllers/Stationsetup.php:372
#: application/views/station_profile/index.php:105
#: application/views/stationsetup/stationsetup.php:191
#, php-format
msgid ""
@@ -2160,31 +2142,31 @@ msgstr "HRDlog: на найдены QSO для загруки для позыв
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr "HRDlog: не найдены профили QTH с данными входя на HRDlog."
#: application/models/Logbook_model.php:4129
#: application/models/Logbook_model.php:4143
msgid "QSO could not be matched"
msgstr "QSO не может быть сопоставлено"
#: application/models/Logbook_model.php:4135
#: application/models/Logbook_model.php:4149
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr "подтверждено LoTW/Clublog/eQSL/Contest"
#: application/models/Logbook_model.php:4140
#: application/models/Logbook_model.php:4154
msgid "confirmed by award manager"
msgstr "подтверждено менеджером диплома"
#: application/models/Logbook_model.php:4143
#: application/models/Logbook_model.php:4157
msgid "confirmed by cross-check of DCL data"
msgstr "подтверждено кросс-проверкой с данными DCL"
#: application/models/Logbook_model.php:4146
#: application/models/Logbook_model.php:4160
msgid "confirmation pending"
msgstr "подтверждение ожидается"
#: application/models/Logbook_model.php:4149
#: application/models/Logbook_model.php:4163
msgid "unconfirmed"
msgstr "не подтверждено"
#: application/models/Logbook_model.php:4152
#: application/models/Logbook_model.php:4166
msgid "unknown"
msgstr "неизвестно"
@@ -2725,7 +2707,6 @@ msgstr "Максимальный размер загружаемого файл
#: application/views/hrdlog/export.php:74
#: application/views/interface_assets/footer.php:34
#: application/views/qrz/export.php:73 application/views/qrz/export.php:94
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
#: application/views/view_log/qso.php:622
#: application/views/webadif/export.php:34
@@ -5825,7 +5806,6 @@ msgstr[2] "База данных содержит %d QSO без привязан
#: application/views/public_search/result.php:17
#: application/views/station_profile/create.php:57
#: application/views/station_profile/edit.php:46
#: application/views/station_profile/index.php:42
#: application/views/stationsetup/linkedlocations.php:32
#: application/views/stationsetup/stationsetup.php:123
msgid "Station Callsign"
@@ -6609,7 +6589,6 @@ msgid "Satellite Pass"
msgstr "Прохождение спутника"
#: application/views/interface_assets/header.php:265
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Admin"
msgstr "Администрирование"
@@ -9842,68 +9821,6 @@ msgstr "Зоны"
msgid "Signature"
msgstr "Подпись"
#: application/views/station_profile/index.php:15
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
"Профили QTH определяют места работы, например, ваш QTH, QTH друзей или "
"портативная станция."
#: application/views/station_profile/index.php:16
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr "Также, как и журнал, профиль QTH объединяет набор QSO."
#: application/views/station_profile/index.php:17
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
"Только один профиль QTH может быть активен в каждый момент. В таблице ниже "
"он отмечена меткой -Активный профиль QTH-."
#: application/views/station_profile/index.php:19
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr "Создать профиль QTH"
#: application/views/station_profile/index.php:25
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
"Внимание. Вам нужно установить активный профиль QTH. Перейдите в меню "
"Позывной->профили QTH, чтобы выбрать активный профиль."
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
"Из-за недавних изменений в Wavelog вам нужно переназначить QSO вашим "
"профилям станции."
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr "Обслуживание"
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr "Пожалуйста, переназначьте их в "
#: application/views/station_profile/index.php:41
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr "Название профиля"
#: application/views/stationsetup/create.php:17
msgid "Station Logbook Name"
msgstr "Имя журнала"
@@ -9951,6 +9868,11 @@ msgstr "Выберите доступный профиль QTH"
msgid "Link Location"
msgstr "Привязать профиль QTH"
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr "Название профиля"
#: application/views/stationsetup/linkedlocations.php:34
msgid "Unlink Station Location"
msgstr "Отвязать профиль QTH"
@@ -9978,6 +9900,26 @@ msgstr "Публичная страница"
msgid "Station Locations"
msgstr "Профили QTH"
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
"Профили QTH определяют места работы, например, ваш QTH, QTH друзей или "
"портативная станция."
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr "Также, как и журнал, профиль QTH объединяет набор QSO."
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
"Только один профиль QTH может быть активен в каждый момент. В таблице ниже "
"он отмечена меткой -Активный профиль QTH-."
#: application/views/stationsetup/stationsetup.php:98
msgid ""
"The 'Linked' column shows if the station location is linked with the Active "
@@ -9986,6 +9928,34 @@ msgstr ""
"Столбец \"Привязка\" показывает привязан ли профиль QTH к активному журналу, "
"выбранному выше."
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr "Создать профиль QTH"
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
"Внимание. Вам нужно установить активный профиль QTH. Перейдите в меню "
"Позывной->профили QTH, чтобы выбрать активный профиль."
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
"Из-за недавних изменений в Wavelog вам нужно переназначить QSO вашим "
"профилям станции."
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr "Обслуживание"
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr "Пожалуйста, переназначьте их в "
#: application/views/stationsetup/stationsetup.php:127
msgid "Linked"
msgstr "Привязка"

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-08-13 19:24+0000\n"
"POT-Creation-Date: 2024-08-15 07:16+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -399,11 +399,11 @@ msgstr ""
msgid "Backup"
msgstr ""
#: application/controllers/Backup.php:48
#: application/controllers/Backup.php:50
msgid "ADIF - Backup"
msgstr ""
#: application/controllers/Backup.php:80
#: application/controllers/Backup.php:84
msgid "Notes - Backup"
msgstr ""
@@ -1023,7 +1023,6 @@ msgstr ""
#: application/views/qso/components/previous_contacts.php:81
#: application/views/search/result_search.php:11
#: application/views/search/search_result_ajax.php:7
#: application/views/station_profile/index.php:43
#: application/views/stationsetup/stationsetup.php:124
#: application/views/statistics/custom_result.php:92
#: application/views/timeline/index.php:118 application/views/user/edit.php:232
@@ -1121,7 +1120,6 @@ msgstr ""
#: application/views/search/result.php:33
#: application/views/search/search_result_ajax.php:13
#: application/views/simplefle/index.php:147
#: application/views/station_profile/index.php:44
#: application/views/stationsetup/stationsetup.php:125
#: application/views/timeline/index.php:257 application/views/user/edit.php:130
#: application/views/user/edit.php:238 application/views/user/edit.php:260
@@ -1289,7 +1287,6 @@ msgstr ""
#: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368
#: application/views/station_profile/create.php:73
#: application/views/station_profile/edit.php:78
#: application/views/station_profile/index.php:65
#: application/views/stationsetup/linkedlocations.php:17
#: application/views/stationsetup/linkedlocations.php:45
#: application/views/stationsetup/stationsetup.php:150
@@ -1349,7 +1346,7 @@ msgstr ""
msgid "Edit Mode"
msgstr ""
#: application/controllers/Notes.php:19
#: application/controllers/Notes.php:18
#: application/views/interface_assets/header.php:128
#: application/views/notes/add.php:9 application/views/notes/edit.php:10
#: application/views/notes/main.php:5 application/views/notes/main.php:8
@@ -1361,16 +1358,16 @@ msgstr ""
msgid "Notes"
msgstr ""
#: application/controllers/Notes.php:38
#: application/controllers/Notes.php:37
msgid "Add Notes"
msgstr ""
#: application/controllers/Notes.php:58
#: application/controllers/Notes.php:64
#: application/views/oqrs/showrequests.php:88
msgid "Note"
msgstr ""
#: application/controllers/Notes.php:79 application/views/notes/edit.php:7
#: application/controllers/Notes.php:92 application/views/notes/edit.php:7
#: application/views/notes/view.php:19
msgid "Edit Note"
msgstr ""
@@ -1593,8 +1590,6 @@ msgstr ""
#: application/views/satellite/edit.php:40
#: application/views/satellite/index.php:26
#: application/views/search/stored_queries.php:22
#: application/views/station_profile/index.php:55
#: application/views/station_profile/index.php:106
#: application/views/stationsetup/stationsetup.php:33
#: application/views/stationsetup/stationsetup.php:137
#: application/views/stationsetup/stationsetup.php:192
@@ -1674,8 +1669,16 @@ msgid ""
"date"
msgstr ""
#: application/controllers/Station.php:35
#: application/controllers/Station.php:78 application/views/csv/index.php:19
#: application/controllers/Station.php:36
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:51
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:59 application/views/csv/index.php:19
#: application/views/dxatlas/index.php:19
#: application/views/labels/index.php:124
#: application/views/logbookadvanced/edit.php:18
@@ -1690,16 +1693,7 @@ msgstr ""
msgid "Station Location"
msgstr ""
#: application/controllers/Station.php:55
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:70
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:92
#: application/controllers/Station.php:73
msgid "Duplicate Station Location:"
msgstr ""
@@ -1792,20 +1786,17 @@ msgid "Are you sure you want to delete the public slug?"
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid ""
"Are you sure you want to make the following station the active station: "
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid "Set Active"
msgstr ""
#: application/controllers/Stationsetup.php:351
#: application/views/station_profile/index.php:71
#: application/views/stationsetup/stationsetup.php:156
msgid "Active Station"
msgstr ""
@@ -1814,7 +1805,6 @@ msgstr ""
#: application/views/interface_assets/header.php:113
#: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20
#: application/views/simplefle/index.php:28
#: application/views/station_profile/index.php:76
#: application/views/stationsetup/stationsetup.php:161
#: application/views/user/main.php:87 application/views/user/main.php:89
msgid "QSO"
@@ -1830,8 +1820,6 @@ msgstr ""
#: application/views/mode/index.php:52 application/views/satellite/edit.php:39
#: application/views/satellite/index.php:25
#: application/views/search/stored_queries.php:21
#: application/views/station_profile/index.php:46
#: application/views/station_profile/index.php:79
#: application/views/stationsetup/stationsetup.php:128
#: application/views/stationsetup/stationsetup.php:165
#: application/views/themes/index.php:104 application/views/user/main.php:52
@@ -1839,29 +1827,23 @@ msgid "Edit"
msgstr ""
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:99
#: application/views/stationsetup/stationsetup.php:185
msgid "Are you sure you want to delete all QSOs within this station profile?"
msgstr ""
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:54
#: application/views/station_profile/index.php:101
#: application/views/stationsetup/stationsetup.php:136
#: application/views/stationsetup/stationsetup.php:187
msgid "Empty Log"
msgstr ""
#: application/controllers/Stationsetup.php:367
#: application/views/station_profile/index.php:47
#: application/views/station_profile/index.php:82
#: application/views/stationsetup/stationsetup.php:129
#: application/views/stationsetup/stationsetup.php:168
msgid "Copy"
msgstr ""
#: application/controllers/Stationsetup.php:372
#: application/views/station_profile/index.php:105
#: application/views/stationsetup/stationsetup.php:191
#, php-format
msgid ""
@@ -2125,31 +2107,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4129
#: application/models/Logbook_model.php:4143
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4135
#: application/models/Logbook_model.php:4149
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4140
#: application/models/Logbook_model.php:4154
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4143
#: application/models/Logbook_model.php:4157
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4146
#: application/models/Logbook_model.php:4160
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4149
#: application/models/Logbook_model.php:4163
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4152
#: application/models/Logbook_model.php:4166
msgid "unknown"
msgstr ""
@@ -2690,7 +2672,6 @@ msgstr ""
#: application/views/hrdlog/export.php:74
#: application/views/interface_assets/footer.php:34
#: application/views/qrz/export.php:73 application/views/qrz/export.php:94
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
#: application/views/view_log/qso.php:622
#: application/views/webadif/export.php:34
@@ -5561,7 +5542,6 @@ msgstr[1] ""
#: application/views/public_search/result.php:17
#: application/views/station_profile/create.php:57
#: application/views/station_profile/edit.php:46
#: application/views/station_profile/index.php:42
#: application/views/stationsetup/linkedlocations.php:32
#: application/views/stationsetup/stationsetup.php:123
msgid "Station Callsign"
@@ -6305,7 +6285,6 @@ msgid "Satellite Pass"
msgstr ""
#: application/views/interface_assets/header.php:265
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Admin"
msgstr ""
@@ -9388,60 +9367,6 @@ msgstr ""
msgid "Signature"
msgstr ""
#: application/views/station_profile/index.php:15
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/station_profile/index.php:16
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/station_profile/index.php:17
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/station_profile/index.php:19
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/station_profile/index.php:25
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/station_profile/index.php:41
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/create.php:17
msgid "Station Logbook Name"
msgstr ""
@@ -9489,6 +9414,11 @@ msgstr ""
msgid "Link Location"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:34
msgid "Unlink Station Location"
msgstr ""
@@ -9513,12 +9443,52 @@ msgstr ""
msgid "Station Locations"
msgstr ""
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/stationsetup/stationsetup.php:98
msgid ""
"The 'Linked' column shows if the station location is linked with the Active "
"Logbook selected above."
msgstr ""
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/stationsetup/stationsetup.php:127
msgid "Linked"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-08-13 19:24+0000\n"
"POT-Creation-Date: 2024-08-15 07:16+0000\n"
"PO-Revision-Date: 2024-07-09 13:26+0000\n"
"Last-Translator: Anonymous <noreply@weblate.org>\n"
"Language-Team: Swedish <https://translate.wavelog.org/projects/wavelog/main-"
@@ -400,11 +400,11 @@ msgstr ""
msgid "Backup"
msgstr ""
#: application/controllers/Backup.php:48
#: application/controllers/Backup.php:50
msgid "ADIF - Backup"
msgstr ""
#: application/controllers/Backup.php:80
#: application/controllers/Backup.php:84
msgid "Notes - Backup"
msgstr ""
@@ -1026,7 +1026,6 @@ msgstr ""
#: application/views/qso/components/previous_contacts.php:81
#: application/views/search/result_search.php:11
#: application/views/search/search_result_ajax.php:7
#: application/views/station_profile/index.php:43
#: application/views/stationsetup/stationsetup.php:124
#: application/views/statistics/custom_result.php:92
#: application/views/timeline/index.php:118 application/views/user/edit.php:232
@@ -1124,7 +1123,6 @@ msgstr ""
#: application/views/search/result.php:33
#: application/views/search/search_result_ajax.php:13
#: application/views/simplefle/index.php:147
#: application/views/station_profile/index.php:44
#: application/views/stationsetup/stationsetup.php:125
#: application/views/timeline/index.php:257 application/views/user/edit.php:130
#: application/views/user/edit.php:238 application/views/user/edit.php:260
@@ -1292,7 +1290,6 @@ msgstr "Operatör"
#: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368
#: application/views/station_profile/create.php:73
#: application/views/station_profile/edit.php:78
#: application/views/station_profile/index.php:65
#: application/views/stationsetup/linkedlocations.php:17
#: application/views/stationsetup/linkedlocations.php:45
#: application/views/stationsetup/stationsetup.php:150
@@ -1352,7 +1349,7 @@ msgstr ""
msgid "Edit Mode"
msgstr ""
#: application/controllers/Notes.php:19
#: application/controllers/Notes.php:18
#: application/views/interface_assets/header.php:128
#: application/views/notes/add.php:9 application/views/notes/edit.php:10
#: application/views/notes/main.php:5 application/views/notes/main.php:8
@@ -1364,16 +1361,16 @@ msgstr ""
msgid "Notes"
msgstr "Anteckningar"
#: application/controllers/Notes.php:38
#: application/controllers/Notes.php:37
msgid "Add Notes"
msgstr ""
#: application/controllers/Notes.php:58
#: application/controllers/Notes.php:64
#: application/views/oqrs/showrequests.php:88
msgid "Note"
msgstr ""
#: application/controllers/Notes.php:79 application/views/notes/edit.php:7
#: application/controllers/Notes.php:92 application/views/notes/edit.php:7
#: application/views/notes/view.php:19
msgid "Edit Note"
msgstr "Redigera anteckningar"
@@ -1596,8 +1593,6 @@ msgstr ""
#: application/views/satellite/edit.php:40
#: application/views/satellite/index.php:26
#: application/views/search/stored_queries.php:22
#: application/views/station_profile/index.php:55
#: application/views/station_profile/index.php:106
#: application/views/stationsetup/stationsetup.php:33
#: application/views/stationsetup/stationsetup.php:137
#: application/views/stationsetup/stationsetup.php:192
@@ -1677,8 +1672,16 @@ msgid ""
"date"
msgstr ""
#: application/controllers/Station.php:35
#: application/controllers/Station.php:78 application/views/csv/index.php:19
#: application/controllers/Station.php:36
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:51
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:59 application/views/csv/index.php:19
#: application/views/dxatlas/index.php:19
#: application/views/labels/index.php:124
#: application/views/logbookadvanced/edit.php:18
@@ -1693,16 +1696,7 @@ msgstr ""
msgid "Station Location"
msgstr "Stationsplats"
#: application/controllers/Station.php:55
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:70
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:92
#: application/controllers/Station.php:73
msgid "Duplicate Station Location:"
msgstr ""
@@ -1795,20 +1789,17 @@ msgid "Are you sure you want to delete the public slug?"
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid ""
"Are you sure you want to make the following station the active station: "
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid "Set Active"
msgstr ""
#: application/controllers/Stationsetup.php:351
#: application/views/station_profile/index.php:71
#: application/views/stationsetup/stationsetup.php:156
msgid "Active Station"
msgstr ""
@@ -1817,7 +1808,6 @@ msgstr ""
#: application/views/interface_assets/header.php:113
#: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20
#: application/views/simplefle/index.php:28
#: application/views/station_profile/index.php:76
#: application/views/stationsetup/stationsetup.php:161
#: application/views/user/main.php:87 application/views/user/main.php:89
msgid "QSO"
@@ -1833,8 +1823,6 @@ msgstr ""
#: application/views/mode/index.php:52 application/views/satellite/edit.php:39
#: application/views/satellite/index.php:25
#: application/views/search/stored_queries.php:21
#: application/views/station_profile/index.php:46
#: application/views/station_profile/index.php:79
#: application/views/stationsetup/stationsetup.php:128
#: application/views/stationsetup/stationsetup.php:165
#: application/views/themes/index.php:104 application/views/user/main.php:52
@@ -1842,29 +1830,23 @@ msgid "Edit"
msgstr "Redigera"
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:99
#: application/views/stationsetup/stationsetup.php:185
msgid "Are you sure you want to delete all QSOs within this station profile?"
msgstr ""
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:54
#: application/views/station_profile/index.php:101
#: application/views/stationsetup/stationsetup.php:136
#: application/views/stationsetup/stationsetup.php:187
msgid "Empty Log"
msgstr ""
#: application/controllers/Stationsetup.php:367
#: application/views/station_profile/index.php:47
#: application/views/station_profile/index.php:82
#: application/views/stationsetup/stationsetup.php:129
#: application/views/stationsetup/stationsetup.php:168
msgid "Copy"
msgstr ""
#: application/controllers/Stationsetup.php:372
#: application/views/station_profile/index.php:105
#: application/views/stationsetup/stationsetup.php:191
#, php-format
msgid ""
@@ -2128,31 +2110,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4129
#: application/models/Logbook_model.php:4143
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4135
#: application/models/Logbook_model.php:4149
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4140
#: application/models/Logbook_model.php:4154
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4143
#: application/models/Logbook_model.php:4157
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4146
#: application/models/Logbook_model.php:4160
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4149
#: application/models/Logbook_model.php:4163
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4152
#: application/models/Logbook_model.php:4166
msgid "unknown"
msgstr ""
@@ -2693,7 +2675,6 @@ msgstr ""
#: application/views/hrdlog/export.php:74
#: application/views/interface_assets/footer.php:34
#: application/views/qrz/export.php:73 application/views/qrz/export.php:94
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
#: application/views/view_log/qso.php:622
#: application/views/webadif/export.php:34
@@ -5564,7 +5545,6 @@ msgstr[1] ""
#: application/views/public_search/result.php:17
#: application/views/station_profile/create.php:57
#: application/views/station_profile/edit.php:46
#: application/views/station_profile/index.php:42
#: application/views/stationsetup/linkedlocations.php:32
#: application/views/stationsetup/stationsetup.php:123
msgid "Station Callsign"
@@ -6308,7 +6288,6 @@ msgid "Satellite Pass"
msgstr ""
#: application/views/interface_assets/header.php:265
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Admin"
msgstr ""
@@ -9405,60 +9384,6 @@ msgstr ""
msgid "Signature"
msgstr ""
#: application/views/station_profile/index.php:15
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/station_profile/index.php:16
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/station_profile/index.php:17
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/station_profile/index.php:19
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/station_profile/index.php:25
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/station_profile/index.php:41
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/create.php:17
msgid "Station Logbook Name"
msgstr ""
@@ -9506,6 +9431,11 @@ msgstr ""
msgid "Link Location"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:34
msgid "Unlink Station Location"
msgstr ""
@@ -9530,12 +9460,52 @@ msgstr ""
msgid "Station Locations"
msgstr ""
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/stationsetup/stationsetup.php:98
msgid ""
"The 'Linked' column shows if the station location is linked with the Active "
"Logbook selected above."
msgstr ""
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/stationsetup/stationsetup.php:127
msgid "Linked"
msgstr ""

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-08-13 19:24+0000\n"
"POT-Creation-Date: 2024-08-15 07:16+0000\n"
"PO-Revision-Date: 2024-07-26 14:02+0000\n"
"Last-Translator: Halil AYYILDIZ <ta2lghalil@gmail.com>\n"
"Language-Team: Turkish <https://translate.wavelog.org/projects/wavelog/main-"
@@ -401,11 +401,11 @@ msgstr "ITU Bölgeleri"
msgid "Backup"
msgstr "Yedekleme"
#: application/controllers/Backup.php:48
#: application/controllers/Backup.php:50
msgid "ADIF - Backup"
msgstr "ADIF - Yedekleme"
#: application/controllers/Backup.php:80
#: application/controllers/Backup.php:84
msgid "Notes - Backup"
msgstr "Notlar - Yedekleme"
@@ -1031,7 +1031,6 @@ msgstr "RST (A)"
#: application/views/qso/components/previous_contacts.php:81
#: application/views/search/result_search.php:11
#: application/views/search/search_result_ajax.php:7
#: application/views/station_profile/index.php:43
#: application/views/stationsetup/stationsetup.php:124
#: application/views/statistics/custom_result.php:92
#: application/views/timeline/index.php:118 application/views/user/edit.php:232
@@ -1129,7 +1128,6 @@ msgstr "Eyalet"
#: application/views/search/result.php:33
#: application/views/search/search_result_ajax.php:13
#: application/views/simplefle/index.php:147
#: application/views/station_profile/index.php:44
#: application/views/stationsetup/stationsetup.php:125
#: application/views/timeline/index.php:257 application/views/user/edit.php:130
#: application/views/user/edit.php:238 application/views/user/edit.php:260
@@ -1297,7 +1295,6 @@ msgstr "Operatör"
#: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368
#: application/views/station_profile/create.php:73
#: application/views/station_profile/edit.php:78
#: application/views/station_profile/index.php:65
#: application/views/stationsetup/linkedlocations.php:17
#: application/views/stationsetup/linkedlocations.php:45
#: application/views/stationsetup/stationsetup.php:150
@@ -1357,7 +1354,7 @@ msgstr ""
msgid "Edit Mode"
msgstr ""
#: application/controllers/Notes.php:19
#: application/controllers/Notes.php:18
#: application/views/interface_assets/header.php:128
#: application/views/notes/add.php:9 application/views/notes/edit.php:10
#: application/views/notes/main.php:5 application/views/notes/main.php:8
@@ -1369,16 +1366,16 @@ msgstr ""
msgid "Notes"
msgstr "Notlar"
#: application/controllers/Notes.php:38
#: application/controllers/Notes.php:37
msgid "Add Notes"
msgstr ""
#: application/controllers/Notes.php:58
#: application/controllers/Notes.php:64
#: application/views/oqrs/showrequests.php:88
msgid "Note"
msgstr ""
#: application/controllers/Notes.php:79 application/views/notes/edit.php:7
#: application/controllers/Notes.php:92 application/views/notes/edit.php:7
#: application/views/notes/view.php:19
msgid "Edit Note"
msgstr "Notu düzenle"
@@ -1601,8 +1598,6 @@ msgstr ""
#: application/views/satellite/edit.php:40
#: application/views/satellite/index.php:26
#: application/views/search/stored_queries.php:22
#: application/views/station_profile/index.php:55
#: application/views/station_profile/index.php:106
#: application/views/stationsetup/stationsetup.php:33
#: application/views/stationsetup/stationsetup.php:137
#: application/views/stationsetup/stationsetup.php:192
@@ -1682,8 +1677,16 @@ msgid ""
"date"
msgstr ""
#: application/controllers/Station.php:35
#: application/controllers/Station.php:78 application/views/csv/index.php:19
#: application/controllers/Station.php:36
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:51
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:59 application/views/csv/index.php:19
#: application/views/dxatlas/index.php:19
#: application/views/labels/index.php:124
#: application/views/logbookadvanced/edit.php:18
@@ -1698,16 +1701,7 @@ msgstr ""
msgid "Station Location"
msgstr "İstasyon Konumu"
#: application/controllers/Station.php:55
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:70
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:92
#: application/controllers/Station.php:73
msgid "Duplicate Station Location:"
msgstr ""
@@ -1800,20 +1794,17 @@ msgid "Are you sure you want to delete the public slug?"
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid ""
"Are you sure you want to make the following station the active station: "
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid "Set Active"
msgstr ""
#: application/controllers/Stationsetup.php:351
#: application/views/station_profile/index.php:71
#: application/views/stationsetup/stationsetup.php:156
msgid "Active Station"
msgstr ""
@@ -1822,7 +1813,6 @@ msgstr ""
#: application/views/interface_assets/header.php:113
#: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20
#: application/views/simplefle/index.php:28
#: application/views/station_profile/index.php:76
#: application/views/stationsetup/stationsetup.php:161
#: application/views/user/main.php:87 application/views/user/main.php:89
msgid "QSO"
@@ -1838,8 +1828,6 @@ msgstr ""
#: application/views/mode/index.php:52 application/views/satellite/edit.php:39
#: application/views/satellite/index.php:25
#: application/views/search/stored_queries.php:21
#: application/views/station_profile/index.php:46
#: application/views/station_profile/index.php:79
#: application/views/stationsetup/stationsetup.php:128
#: application/views/stationsetup/stationsetup.php:165
#: application/views/themes/index.php:104 application/views/user/main.php:52
@@ -1847,29 +1835,23 @@ msgid "Edit"
msgstr ""
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:99
#: application/views/stationsetup/stationsetup.php:185
msgid "Are you sure you want to delete all QSOs within this station profile?"
msgstr ""
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:54
#: application/views/station_profile/index.php:101
#: application/views/stationsetup/stationsetup.php:136
#: application/views/stationsetup/stationsetup.php:187
msgid "Empty Log"
msgstr ""
#: application/controllers/Stationsetup.php:367
#: application/views/station_profile/index.php:47
#: application/views/station_profile/index.php:82
#: application/views/stationsetup/stationsetup.php:129
#: application/views/stationsetup/stationsetup.php:168
msgid "Copy"
msgstr ""
#: application/controllers/Stationsetup.php:372
#: application/views/station_profile/index.php:105
#: application/views/stationsetup/stationsetup.php:191
#, php-format
msgid ""
@@ -2133,31 +2115,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4129
#: application/models/Logbook_model.php:4143
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4135
#: application/models/Logbook_model.php:4149
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4140
#: application/models/Logbook_model.php:4154
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4143
#: application/models/Logbook_model.php:4157
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4146
#: application/models/Logbook_model.php:4160
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4149
#: application/models/Logbook_model.php:4163
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4152
#: application/models/Logbook_model.php:4166
msgid "unknown"
msgstr ""
@@ -2698,7 +2680,6 @@ msgstr ""
#: application/views/hrdlog/export.php:74
#: application/views/interface_assets/footer.php:34
#: application/views/qrz/export.php:73 application/views/qrz/export.php:94
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
#: application/views/view_log/qso.php:622
#: application/views/webadif/export.php:34
@@ -5569,7 +5550,6 @@ msgstr[1] ""
#: application/views/public_search/result.php:17
#: application/views/station_profile/create.php:57
#: application/views/station_profile/edit.php:46
#: application/views/station_profile/index.php:42
#: application/views/stationsetup/linkedlocations.php:32
#: application/views/stationsetup/stationsetup.php:123
msgid "Station Callsign"
@@ -6313,7 +6293,6 @@ msgid "Satellite Pass"
msgstr ""
#: application/views/interface_assets/header.php:265
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Admin"
msgstr ""
@@ -9405,60 +9384,6 @@ msgstr ""
msgid "Signature"
msgstr ""
#: application/views/station_profile/index.php:15
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/station_profile/index.php:16
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/station_profile/index.php:17
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/station_profile/index.php:19
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/station_profile/index.php:25
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/station_profile/index.php:41
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/create.php:17
msgid "Station Logbook Name"
msgstr ""
@@ -9506,6 +9431,11 @@ msgstr ""
msgid "Link Location"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:34
msgid "Unlink Station Location"
msgstr ""
@@ -9530,12 +9460,52 @@ msgstr ""
msgid "Station Locations"
msgstr ""
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/stationsetup/stationsetup.php:98
msgid ""
"The 'Linked' column shows if the station location is linked with the Active "
"Logbook selected above."
msgstr ""
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/stationsetup/stationsetup.php:127
msgid "Linked"
msgstr ""

View File

@@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-08-13 19:24+0000\n"
"PO-Revision-Date: 2024-08-12 15:29+0000\n"
"POT-Creation-Date: 2024-08-15 07:16+0000\n"
"PO-Revision-Date: 2024-08-14 08:35+0000\n"
"Last-Translator: Karuru <karuru@aerodefense.co.uk>\n"
"Language-Team: Chinese (Simplified) <https://translate.wavelog.org/projects/"
"wavelog/main-translation/zh_Hans/>\n"
@@ -402,11 +402,11 @@ msgstr "ITU 分区"
msgid "Backup"
msgstr "备份"
#: application/controllers/Backup.php:48
#: application/controllers/Backup.php:50
msgid "ADIF - Backup"
msgstr "ADIF - 备份"
#: application/controllers/Backup.php:80
#: application/controllers/Backup.php:84
msgid "Notes - Backup"
msgstr "笔记 - 备份"
@@ -1027,7 +1027,6 @@ msgstr "信号报告(收)"
#: application/views/qso/components/previous_contacts.php:81
#: application/views/search/result_search.php:11
#: application/views/search/search_result_ajax.php:7
#: application/views/station_profile/index.php:43
#: application/views/stationsetup/stationsetup.php:124
#: application/views/statistics/custom_result.php:92
#: application/views/timeline/index.php:118 application/views/user/edit.php:232
@@ -1125,7 +1124,6 @@ msgstr "州"
#: application/views/search/result.php:33
#: application/views/search/search_result_ajax.php:13
#: application/views/simplefle/index.php:147
#: application/views/station_profile/index.php:44
#: application/views/stationsetup/stationsetup.php:125
#: application/views/timeline/index.php:257 application/views/user/edit.php:130
#: application/views/user/edit.php:238 application/views/user/edit.php:260
@@ -1293,7 +1291,6 @@ msgstr "操作员"
#: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368
#: application/views/station_profile/create.php:73
#: application/views/station_profile/edit.php:78
#: application/views/station_profile/index.php:65
#: application/views/stationsetup/linkedlocations.php:17
#: application/views/stationsetup/linkedlocations.php:45
#: application/views/stationsetup/stationsetup.php:150
@@ -1353,7 +1350,7 @@ msgstr "模式"
msgid "Edit Mode"
msgstr "编辑模式"
#: application/controllers/Notes.php:19
#: application/controllers/Notes.php:18
#: application/views/interface_assets/header.php:128
#: application/views/notes/add.php:9 application/views/notes/edit.php:10
#: application/views/notes/main.php:5 application/views/notes/main.php:8
@@ -1365,16 +1362,16 @@ msgstr "编辑模式"
msgid "Notes"
msgstr "笔记"
#: application/controllers/Notes.php:38
#: application/controllers/Notes.php:37
msgid "Add Notes"
msgstr "添加笔记"
#: application/controllers/Notes.php:58
#: application/controllers/Notes.php:64
#: application/views/oqrs/showrequests.php:88
msgid "Note"
msgstr "注解"
#: application/controllers/Notes.php:79 application/views/notes/edit.php:7
#: application/controllers/Notes.php:92 application/views/notes/edit.php:7
#: application/views/notes/view.php:19
msgid "Edit Note"
msgstr "编辑笔记"
@@ -1597,8 +1594,6 @@ msgstr "默认(点击释放)"
#: application/views/satellite/edit.php:40
#: application/views/satellite/index.php:26
#: application/views/search/stored_queries.php:22
#: application/views/station_profile/index.php:55
#: application/views/station_profile/index.php:106
#: application/views/stationsetup/stationsetup.php:33
#: application/views/stationsetup/stationsetup.php:137
#: application/views/stationsetup/stationsetup.php:192
@@ -1678,8 +1673,16 @@ msgid ""
"date"
msgstr "QSO 尚未在 LoTW 确认,但已在 QSO 日期后上传呼号"
#: application/controllers/Station.php:35
#: application/controllers/Station.php:78 application/views/csv/index.php:19
#: application/controllers/Station.php:36
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr "创建台站地址"
#: application/controllers/Station.php:51
msgid "Edit Station Location: "
msgstr "修改台站地址: "
#: application/controllers/Station.php:59 application/views/csv/index.php:19
#: application/views/dxatlas/index.php:19
#: application/views/labels/index.php:124
#: application/views/logbookadvanced/edit.php:18
@@ -1694,16 +1697,7 @@ msgstr "QSO 尚未在 LoTW 确认,但已在 QSO 日期后上传呼号"
msgid "Station Location"
msgstr "电台站地址"
#: application/controllers/Station.php:55
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr "创建台站地址"
#: application/controllers/Station.php:70
msgid "Edit Station Location: "
msgstr "修改台站地址: "
#: application/controllers/Station.php:92
#: application/controllers/Station.php:73
msgid "Duplicate Station Location:"
msgstr "台站地址重复:"
@@ -1796,20 +1790,17 @@ msgid "Are you sure you want to delete the public slug?"
msgstr "确定要删除此公开个性标识符?"
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid ""
"Are you sure you want to make the following station the active station: "
msgstr "确认将如下台站设为启用状态: "
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid "Set Active"
msgstr "设置启用"
#: application/controllers/Stationsetup.php:351
#: application/views/station_profile/index.php:71
#: application/views/stationsetup/stationsetup.php:156
msgid "Active Station"
msgstr "启用"
@@ -1818,7 +1809,6 @@ msgstr "启用"
#: application/views/interface_assets/header.php:113
#: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20
#: application/views/simplefle/index.php:28
#: application/views/station_profile/index.php:76
#: application/views/stationsetup/stationsetup.php:161
#: application/views/user/main.php:87 application/views/user/main.php:89
msgid "QSO"
@@ -1834,8 +1824,6 @@ msgstr "QSO"
#: application/views/mode/index.php:52 application/views/satellite/edit.php:39
#: application/views/satellite/index.php:25
#: application/views/search/stored_queries.php:21
#: application/views/station_profile/index.php:46
#: application/views/station_profile/index.php:79
#: application/views/stationsetup/stationsetup.php:128
#: application/views/stationsetup/stationsetup.php:165
#: application/views/themes/index.php:104 application/views/user/main.php:52
@@ -1843,29 +1831,23 @@ msgid "Edit"
msgstr "编辑"
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:99
#: application/views/stationsetup/stationsetup.php:185
msgid "Are you sure you want to delete all QSOs within this station profile?"
msgstr "确认删除台站下的所有 QSO"
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:54
#: application/views/station_profile/index.php:101
#: application/views/stationsetup/stationsetup.php:136
#: application/views/stationsetup/stationsetup.php:187
msgid "Empty Log"
msgstr "清空日志"
#: application/controllers/Stationsetup.php:367
#: application/views/station_profile/index.php:47
#: application/views/station_profile/index.php:82
#: application/views/stationsetup/stationsetup.php:129
#: application/views/stationsetup/stationsetup.php:168
msgid "Copy"
msgstr "复制"
#: application/controllers/Stationsetup.php:372
#: application/views/station_profile/index.php:105
#: application/views/stationsetup/stationsetup.php:191
#, php-format
msgid ""
@@ -2131,31 +2113,31 @@ msgstr "HRDlog无 QSO 可供上传,台站呼号为: "
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr "HRDlog无台站配置信息。"
#: application/models/Logbook_model.php:4129
#: application/models/Logbook_model.php:4143
msgid "QSO could not be matched"
msgstr "QSO 无法匹配"
#: application/models/Logbook_model.php:4135
#: application/models/Logbook_model.php:4149
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr "已经通过 LoTW/Clublog/eQSL/竞赛 确认"
#: application/models/Logbook_model.php:4140
#: application/models/Logbook_model.php:4154
msgid "confirmed by award manager"
msgstr "已经通过奖项管理员确认"
#: application/models/Logbook_model.php:4143
#: application/models/Logbook_model.php:4157
msgid "confirmed by cross-check of DCL data"
msgstr "已经通过 DCL 数据交叉检查确认"
#: application/models/Logbook_model.php:4146
#: application/models/Logbook_model.php:4160
msgid "confirmation pending"
msgstr "等待确认"
#: application/models/Logbook_model.php:4149
#: application/models/Logbook_model.php:4163
msgid "unconfirmed"
msgstr "未确认"
#: application/models/Logbook_model.php:4152
#: application/models/Logbook_model.php:4166
msgid "unknown"
msgstr "未知"
@@ -2371,7 +2353,7 @@ msgstr "显示"
#: application/views/sattimers/index.php:38
#: application/views/statistics/index.php:112
msgid "Satellite"
msgstr "卫星Satellite"
msgstr "卫星"
#: application/views/activated_gridmap/index.php:30
#: application/views/awards/dxcc/index.php:147
@@ -2696,7 +2678,6 @@ msgstr "最大上传文件大小是 "
#: application/views/hrdlog/export.php:74
#: application/views/interface_assets/footer.php:34
#: application/views/qrz/export.php:73 application/views/qrz/export.php:94
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
#: application/views/view_log/qso.php:622
#: application/views/webadif/export.php:34
@@ -5169,7 +5150,7 @@ msgstr "您没有日志本。单击%s执行此操作"
#, php-format
msgid "You have had %d QSO today"
msgid_plural "You have had %d QSOs today"
msgstr[0] "你今天有%d个QSO"
msgstr[0] "你今天有 %d 个QSO"
#: application/views/dashboard/index.php:97
msgid "You have made no QSOs today; time to turn on the radio!"
@@ -5658,7 +5639,6 @@ msgstr[0] "数据库中共有%d个没有台站信息位置的QSO"
#: application/views/public_search/result.php:17
#: application/views/station_profile/create.php:57
#: application/views/station_profile/edit.php:46
#: application/views/station_profile/index.php:42
#: application/views/stationsetup/linkedlocations.php:32
#: application/views/stationsetup/stationsetup.php:123
msgid "Station Callsign"
@@ -6416,7 +6396,6 @@ msgid "Satellite Pass"
msgstr "卫星过境"
#: application/views/interface_assets/header.php:265
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Admin"
msgstr "管理员"
@@ -9538,62 +9517,6 @@ msgstr "分区"
msgid "Signature"
msgstr "签名"
#: application/views/station_profile/index.php:15
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr "台站地址为电台使用地址,如您或朋友的 QTH或移动台的地址。"
#: application/views/station_profile/index.php:16
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr "和日志簿类似,一个台站地址会和其产生的 QSO 关联起来。"
#: application/views/station_profile/index.php:17
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr "同一时间只允许启用一个台站地址,详见如下表格中的 “启用” 标志。"
#: application/views/station_profile/index.php:19
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr "创建一个台站地址"
#: application/views/station_profile/index.php:25
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
"警告:应事先设置一个 “启用” 中的台站地址,请在右上角 “您的呼号” -> “台站地"
"址” 中选择一个。"
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr "由于 Wavelog 设置更改,您需要重新在电台设置中重新分配 QSO。"
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr "维护"
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr "重新分配 "
#: application/views/station_profile/index.php:41
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr "名称"
#: application/views/stationsetup/create.php:17
msgid "Station Logbook Name"
msgstr "台站日志名称"
@@ -9641,6 +9564,11 @@ msgstr "选择可用台站位置"
msgid "Link Location"
msgstr "链接的台站位置"
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr "名称"
#: application/views/stationsetup/linkedlocations.php:34
msgid "Unlink Station Location"
msgstr "取消链接的台站位置"
@@ -9667,12 +9595,54 @@ msgstr "外部链接"
msgid "Station Locations"
msgstr "台站地址"
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr "台站地址为电台使用地址,如您或朋友的 QTH或移动台的地址。"
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr "和日志簿类似,一个台站地址会和其产生的 QSO 关联起来。"
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr "同一时间只允许启用一个台站地址,详见如下表格中的 “启用” 标志。"
#: application/views/stationsetup/stationsetup.php:98
msgid ""
"The 'Linked' column shows if the station location is linked with the Active "
"Logbook selected above."
msgstr "上方的已启用日志,会显示在关联的台站地址的 “已绑定” 栏中。"
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr "创建一个台站地址"
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
"警告:应事先设置一个 “启用” 中的台站地址,请在右上角 “您的呼号” -> “台站地"
"址” 中选择一个。"
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr "由于 Wavelog 设置更改,您需要重新在电台设置中重新分配 QSO。"
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr "维护"
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr "重新分配 "
#: application/views/stationsetup/stationsetup.php:127
msgid "Linked"
msgstr "已绑定"

View File

@@ -26,10 +26,10 @@
'sat_name' => $result['sat_name'] ?? NULL,
'timestamp' => $timestamp,
);
if ( (isset($result['frequency'])) && ($result['frequency'] != "NULL") && ($result['frequency'] != '') ) {
if ( (isset($result['frequency'])) && ($result['frequency'] != "NULL") && ($result['frequency'] != '') && (is_numeric($result['frequency']))) {
$data['frequency'] = $result['frequency'];
} else {
if ( (isset($result['uplink_freq'])) && ($result['uplink_freq'] != "NULL") && ($result['uplink_freq'] != '') ) {
if ( (isset($result['uplink_freq'])) && ($result['uplink_freq'] != "NULL") && ($result['uplink_freq'] != '') && (is_numeric($result['uplink_freq'])) ) {
$data['frequency'] = $result['uplink_freq'];
} else {
unset($data['frequency']); // Do not update Frequency since it wasn't provided
@@ -44,9 +44,9 @@
$data['mode'] = NULL;
}
}
if (isset($result['frequency_rx'])) {
if ( (isset($result['frequency_rx'])) && (is_numeric($result['frequency_rx'])) ) {
$data['frequency_rx'] = $result['frequency_rx'];
} else if (isset($result['downlink_freq']) && $result['downlink_freq'] != "NULL") {
} else if (isset($result['downlink_freq']) && ($result['downlink_freq'] != "NULL") && (is_numeric($result['downlink_freq']))) {
$data['frequency_rx'] = $result['downlink_freq'];
} else {
$data['frequency_rx'] = NULL;

View File

@@ -9,9 +9,8 @@ class helvetia_model extends CI_Model {
public $stateString = 'AG,AI,AR,BE,BL,BS,FR,GE,GL,GR,JU,LU,NE,NW,OW,SG,SH,SO,SZ,TG,TI,UR,VD,VS,ZG,ZH';
function get_helvetia_array($bands, $postdata) {
$CI =& get_instance();
$CI->load->model('logbooks_model');
$logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
$this->load->model('logbooks_model');
$logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
if (!$logbooks_locations_array) {
return null;
@@ -86,11 +85,9 @@ class helvetia_model extends CI_Model {
/*
* Function gets worked and confirmed summary on each band on the active stationprofile
*/
function get_helvetia_summary($bands, $postdata)
{
$CI =& get_instance();
$CI->load->model('logbooks_model');
$logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
function get_helvetia_summary($bands, $postdata) {
$this->load->model('logbooks_model');
$logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
if (!$logbooks_locations_array) {
return null;
@@ -114,14 +111,15 @@ class helvetia_model extends CI_Model {
return $helvetiaSummary;
}
function getSummaryByBand($band, $postdata, $location_list)
{
function getSummaryByBand($band, $postdata, $location_list) {
$binding=[];
$sql = "SELECT count(distinct thcv.col_state) as count FROM " . $this->config->item('table_name') . " thcv";
$sql .= " where station_id in (" . $location_list . ")";
if ($band == 'SAT') {
$sql .= " and thcv.col_prop_mode ='" . $band . "'";
$sql .= " and thcv.col_prop_mode = 'SAT'";
} else if ($band == 'All') {
$this->load->model('bands');
@@ -133,28 +131,31 @@ class helvetia_model extends CI_Model {
" and thcv.col_prop_mode !='SAT'";
} else {
$sql .= " and thcv.col_prop_mode !='SAT'";
$sql .= " and thcv.col_band ='" . $band . "'";
$sql .= " and thcv.col_band = ?";
$binding[] = $band;
}
if ($postdata['mode'] != 'All') {
$sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')";
$sql .= " and (col_mode = ? or col_submode = ?)";
$binding[] = $postdata['mode'];
$binding[] = $postdata['mode'];
}
$sql .= $this->addStateToQuery();
$query = $this->db->query($sql);
$query = $this->db->query($sql, $binding);
return $query->result();
}
function getSummaryByBandConfirmed($band, $postdata, $location_list)
{
function getSummaryByBandConfirmed($band, $postdata, $location_list) {
$binding=[];
$sql = "SELECT count(distinct thcv.col_state) as count FROM " . $this->config->item('table_name') . " thcv";
$sql .= " where station_id in (" . $location_list . ")";
if ($band == 'SAT') {
$sql .= " and thcv.col_prop_mode ='" . $band . "'";
$sql .= " and thcv.col_prop_mode ='SAT'";
} else if ($band == 'All') {
$this->load->model('bands');
@@ -166,18 +167,21 @@ class helvetia_model extends CI_Model {
" and thcv.col_prop_mode !='SAT'";
} else {
$sql .= " and thcv.col_prop_mode !='SAT'";
$sql .= " and thcv.col_band ='" . $band . "'";
$sql .= " and thcv.col_band = ?";
$binding[] = $band;
}
if ($postdata['mode'] != 'All') {
$sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')";
$sql .= " and (col_mode = ? or col_submode = ?)";
$binding[] = $postdata['mode'];
$binding[] = $postdata['mode'];
}
$sql .= $this->genfunctions->addQslToQuery($postdata);
$sql .= $this->addStateToQuery();
$query = $this->db->query($sql);
$query = $this->db->query($sql, $binding);
return $query->result();
}
@@ -187,11 +191,14 @@ class helvetia_model extends CI_Model {
* $postdata contains data from the form, in this case Lotw or QSL are used
*/
function gethelvetiaWorked($location_list, $band, $postdata) {
$binding=[];
$sql = "SELECT distinct col_state FROM " . $this->config->item('table_name') . " thcv
where station_id in (" . $location_list . ")";
if ($postdata['mode'] != 'All') {
$sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')";
$sql .= " and (col_mode = ? or col_submode = ?)";
$binding[] = $postdata['mode'];
$binding[] = $postdata['mode'];
}
$sql .= $this->addStateToQuery();
@@ -203,7 +210,9 @@ class helvetia_model extends CI_Model {
" and col_state = thcv.col_state";
if ($postdata['mode'] != 'All') {
$sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')";
$sql .= " and (col_mode = ? or col_submode = ?)";
$binding[] = $postdata['mode'];
$binding[] = $postdata['mode'];
}
$sql .= $this->genfunctions->addBandToQuery($band);
@@ -214,7 +223,7 @@ class helvetia_model extends CI_Model {
$sql .= ")";
$query = $this->db->query($sql);
$query = $this->db->query($sql, $binding);
return $query->result();
}
@@ -224,11 +233,14 @@ class helvetia_model extends CI_Model {
* $postdata contains data from the form, in this case Lotw or QSL are used
*/
function gethelvetiaConfirmed($location_list, $band, $postdata) {
$binding=[];
$sql = "SELECT distinct col_state FROM " . $this->config->item('table_name') . " thcv
where station_id in (" . $location_list . ")";
if ($postdata['mode'] != 'All') {
$sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')";
$sql .= " and (col_mode = ? or col_submode = ?)";
$binding[] = $postdata['mode'];
$binding[] = $postdata['mode'];
}
$sql .= $this->addStateToQuery();
@@ -237,7 +249,7 @@ class helvetia_model extends CI_Model {
$sql .= $this->genfunctions->addQslToQuery($postdata);
$query = $this->db->query($sql);
$query = $this->db->query($sql, $binding);
return $query->result();
}

View File

@@ -1707,46 +1707,49 @@ class Logbook_model extends CI_Model {
}
function get_qsos_for_printing($station_id2 = null) {
$binding=[];
$this->load->model('stations');
$station_id = $this->stations->find_active();
$this->load->model('stations');
$station_id = $this->stations->find_active();
$sql = 'SELECT
STATION_CALLSIGN,
COL_PRIMARY_KEY,
COL_CALL,
COL_QSL_VIA,
COL_TIME_ON,
COL_MODE,
COL_SUBMODE,
COL_FREQ,
UPPER(COL_BAND) as COL_BAND,
COL_RST_SENT,
COL_SAT_NAME,
COL_SAT_MODE,
COL_QSL_RCVD,
COL_COMMENT,
(select adif from dxcc_prefixes where (CASE WHEN COL_QSL_VIA != \'\' THEN COL_QSL_VIA ELSE COL_CALL END) like concat(dxcc_prefixes.`call`,\'%\') order by end limit 1) as ADIF,
(select entity from dxcc_prefixes where (CASE WHEN COL_QSL_VIA != \'\' THEN COL_QSL_VIA ELSE COL_CALL END) like concat(dxcc_prefixes.`call`,\'%\') order by end limit 1) as ENTITY,
(CASE WHEN COL_QSL_VIA != \'\' THEN COL_QSL_VIA ELSE COL_CALL END) AS COL_ROUTING
FROM '.$this->config->item('table_name').' thcv
join station_profile on thcv.station_id = station_profile.station_id
WHERE
COL_QSL_SENT in (\'R\', \'Q\')';
$sql = 'SELECT
STATION_CALLSIGN,
COL_PRIMARY_KEY,
COL_CALL,
COL_QSL_VIA,
COL_TIME_ON,
COL_MODE,
COL_SUBMODE,
COL_FREQ,
UPPER(COL_BAND) as COL_BAND,
COL_RST_SENT,
COL_SAT_NAME,
COL_SAT_MODE,
COL_QSL_RCVD,
COL_COMMENT,
(select adif from dxcc_prefixes where (CASE WHEN COL_QSL_VIA != \'\' THEN COL_QSL_VIA ELSE COL_CALL END) like concat(dxcc_prefixes.`call`,\'%\') order by end limit 1) as ADIF,
(select entity from dxcc_prefixes where (CASE WHEN COL_QSL_VIA != \'\' THEN COL_QSL_VIA ELSE COL_CALL END) like concat(dxcc_prefixes.`call`,\'%\') order by end limit 1) as ENTITY,
(CASE WHEN COL_QSL_VIA != \'\' THEN COL_QSL_VIA ELSE COL_CALL END) AS COL_ROUTING
FROM '.$this->config->item('table_name').' thcv
join station_profile on thcv.station_id = station_profile.station_id
WHERE
COL_QSL_SENT in (\'R\', \'Q\')';
if ($station_id2 == NULL) {
$sql .= ' and thcv.station_id = ?';
$binding[] = $station_id;
} else if ($station_id2 != 'All') {
$sql .= ' and thcv.station_id = ?';
$binding[] = $station_id2;
}
if ($station_id2 == NULL) {
$sql .= ' and thcv.station_id = ' . $station_id;
} else if ($station_id2 != 'All') {
$sql .= ' and thcv.station_id = ' . $station_id2;
}
// always filter user. this ensures that even if the station_id is from another user no inaccesible QSOs will be returned
$sql .= ' and station_profile.user_id = ?';
$binding[] = $this->session->userdata('user_id');
// always filter user. this ensures that even if the station_id is from another user no inaccesible QSOs will be returned
$sql .= ' and station_profile.user_id = ' . $this->session->userdata('user_id');
$sql .= ' ORDER BY ADIF, COL_ROUTING';
$sql .= ' ORDER BY ADIF, COL_ROUTING';
$query = $this->db->query($sql);
return $query;
$query = $this->db->query($sql, $binding);
return $query;
}
function get_qsos($num, $offset, $StationLocationsArray = null, $band = '') {
@@ -1812,24 +1815,27 @@ class Logbook_model extends CI_Model {
/*
* Function returns the QSOs from the logbook, which have not been either marked as uploaded to hrdlog, or has been modified with an edit
*/
function get_hrdlog_qsos($station_id){
$sql = 'select *, dxcc_entities.name as station_country from ' . $this->config->item('table_name') . ' thcv ' .
' left join station_profile on thcv.station_id = station_profile.station_id' .
' left outer join dxcc_entities on thcv.col_my_dxcc = dxcc_entities.adif' .
' where thcv.station_id = ' . $station_id .
' and (COL_HRDLOG_QSO_UPLOAD_STATUS is NULL
or COL_HRDLOG_QSO_UPLOAD_STATUS = ""
or COL_HRDLOG_QSO_UPLOAD_STATUS = "M"
or COL_HRDLOG_QSO_UPLOAD_STATUS = "N")';
function get_hrdlog_qsos($station_id){
$binding=[];
$sql = 'select *, dxcc_entities.name as station_country from ' . $this->config->item('table_name') . ' thcv ' .
' left join station_profile on thcv.station_id = station_profile.station_id' .
' left outer join dxcc_entities on thcv.col_my_dxcc = dxcc_entities.adif' .
' where thcv.station_id = ?'.
' and (COL_HRDLOG_QSO_UPLOAD_STATUS is NULL
or COL_HRDLOG_QSO_UPLOAD_STATUS = ""
or COL_HRDLOG_QSO_UPLOAD_STATUS = "M"
or COL_HRDLOG_QSO_UPLOAD_STATUS = "N")';
$binding[]=$station_id;
$query = $this->db->query($sql);
return $query;
}
$query = $this->db->query($sql, $binding);
return $query;
}
/*
* Function returns the QSOs from the logbook, which have not been either marked as uploaded to qrz, or has been modified with an edit
*/
function get_qrz_qsos($station_id, $trusted = false){
$binding=[];
$this->load->model('stations');
if ((!$trusted) && (!$this->stations->check_station_is_accessible($station_id))) {
return;
@@ -1837,62 +1843,55 @@ class Logbook_model extends CI_Model {
$sql = 'select *, dxcc_entities.name as station_country from ' . $this->config->item('table_name') . ' thcv ' .
' left join station_profile on thcv.station_id = station_profile.station_id' .
' left outer join dxcc_entities on thcv.col_my_dxcc = dxcc_entities.adif' .
' where thcv.station_id = ' . $station_id .
' where thcv.station_id = ?'.
' and (COL_QRZCOM_QSO_UPLOAD_STATUS is NULL
or COL_QRZCOM_QSO_UPLOAD_STATUS = ""
or COL_QRZCOM_QSO_UPLOAD_STATUS = "M"
or COL_QRZCOM_QSO_UPLOAD_STATUS = "N")';
$binding[]=$station_id;
$query = $this->db->query($sql);
$query = $this->db->query($sql, $binding);
return $query;
}
/*
* Function returns the QSOs from the logbook, which have not been either marked as uploaded to webADIF
*/
function get_webadif_qsos($station_id,$from = null, $to = null,$trusted = false){
$this->load->model('stations');
if ((!$trusted) && (!$this->stations->check_station_is_accessible($station_id))) {
return;
}
$sql = "
function get_webadif_qsos($station_id,$from = null, $to = null,$trusted = false) {
$binding=[];
$this->load->model('stations');
if ((!$trusted) && (!$this->stations->check_station_is_accessible($station_id))) {
return;
}
$sql = "
SELECT qsos.*, station_profile.*, dxcc_entities.name as station_country
FROM %s qsos
FROM ".$this->config->item('table_name')." qsos
INNER JOIN station_profile ON qsos.station_id = station_profile.station_id
LEFT JOIN dxcc_entities on qsos.col_my_dxcc = dxcc_entities.adif
LEFT OUTER JOIN webadif ON qsos.COL_PRIMARY_KEY = webadif.qso_id
WHERE qsos.station_id = %d
AND qsos.COL_SAT_NAME = 'QO-100'
AND webadif.upload_date IS NULL
WHERE qsos.station_id = ?
AND qsos.COL_SAT_NAME = 'QO-100'
AND webadif.upload_date IS NULL
";
$sql = sprintf(
$sql,
$this->config->item('table_name'),
$station_id
);
if ($from) {
$from = DateTime::createFromFormat('d/m/Y', $from);
$from = $from->format('Y-m-d');
$binding[] = $station_id;
$sql.=" AND qsos.COL_TIME_ON >= %s";
$sql=sprintf(
$sql,
$this->db->escape($from)
);
}
if ($to) {
$to = DateTime::createFromFormat('d/m/Y', $to);
$to = $to->format('Y-m-d');
if ($from) {
$from = DateTime::createFromFormat('d/m/Y', $from);
$from = $from->format('Y-m-d');
$sql.=" AND qsos.COL_TIME_ON <= %s";
$sql=sprintf(
$sql,
$this->db->escape($to)
);
}
$sql.=" AND qsos.COL_TIME_ON >= ?";
$binding[]=$from;
}
if ($to) {
$to = DateTime::createFromFormat('d/m/Y', $to);
$to = $to->format('Y-m-d');
return $this->db->query($sql);
}
$sql.=" AND qsos.COL_TIME_ON <= ?";
$binding[]=$to;
}
return $this->db->query($sql, $binding);
}
/*
* Function returns all the station_id's with QRZ API Key's
@@ -1973,36 +1972,35 @@ class Logbook_model extends CI_Model {
}
}
function get_last_qsos($num, $StationLocationsArray = null) {
function get_last_qsos($num, $StationLocationsArray = null) {
$binding=[];
if($StationLocationsArray == null) {
$this->load->model('logbooks_model');
$logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
} else {
$logbooks_locations_array = $StationLocationsArray;
}
if ($logbooks_locations_array) {
$location_list = "'".implode("','",$logbooks_locations_array)."'";
$sql = "SELECT * FROM ( select * from " . $this->config->item('table_name'). "
WHERE station_id IN(". $location_list .")
order by col_time_on desc
limit ?) hrd
JOIN station_profile ON station_profile.station_id = hrd.station_id
LEFT JOIN dxcc_entities ON hrd.col_dxcc = dxcc_entities.adif
order by col_time_on desc";
$binding[]=$num*1;
$query = $this->db->query($sql,$binding);
return $query;
} else {
return null;
}
if($StationLocationsArray == null) {
$this->load->model('logbooks_model');
$logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
} else {
$logbooks_locations_array = $StationLocationsArray;
}
if ($logbooks_locations_array) {
$location_list = "'".implode("','",$logbooks_locations_array)."'";
$sql = "SELECT * FROM ( select * from " . $this->config->item('table_name'). "
WHERE station_id IN(". $location_list .")
order by col_time_on desc
limit " . $num .
") hrd
JOIN station_profile ON station_profile.station_id = hrd.station_id
LEFT JOIN dxcc_entities ON hrd.col_dxcc = dxcc_entities.adif
order by col_time_on desc";
$query = $this->db->query($sql);
return $query;
} else {
return null;
}
}
function check_if_callsign_cnfmd_in_logbook($callsign, $StationLocationsArray = null, $band = null) {
if($StationLocationsArray == null) {
@@ -2219,69 +2217,72 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray =
}
/* Get all QSOs with a valid grid for use in the KML export */
function kml_get_all_qsos($band, $mode, $dxcc, $cqz, $propagation, $fromdate, $todate) {
$this->load->model('logbooks_model');
$logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
function kml_get_all_qsos($band, $mode, $dxcc, $cqz, $propagation, $fromdate, $todate) {
$this->load->model('logbooks_model');
$logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
$this->db->select('COL_CALL, COL_BAND, COL_TIME_ON, COL_RST_RCVD, COL_RST_SENT, COL_MODE, COL_SUBMODE, COL_NAME, COL_COUNTRY, COL_PRIMARY_KEY, COL_SAT_NAME, COL_GRIDSQUARE');
$this->db->where_in('station_id', $logbooks_locations_array);
$this->db->where("coalesce(COL_GRIDSQUARE, '') <> ''");
$this->db->select('COL_CALL, COL_BAND, COL_TIME_ON, COL_RST_RCVD, COL_RST_SENT, COL_MODE, COL_SUBMODE, COL_NAME, COL_COUNTRY, COL_PRIMARY_KEY, COL_SAT_NAME, COL_GRIDSQUARE');
$this->db->where_in('station_id', $logbooks_locations_array);
$this->db->where("coalesce(COL_GRIDSQUARE, '') <> ''");
if ($band != 'All') {
if ($band == 'SAT') {
$this->db->where('COL_PROP_MODE = \'' . $band . '\'');
}
else {
$this->db->where('COL_PROP_MODE != \'SAT\'');
$this->db->where('COL_BAND = \'' . $band .'\'');
}
}
if ($band != 'All') {
if ($band == 'SAT') {
$this->db->where('COL_PROP_MODE', $band);
}
else {
$this->db->where('COL_PROP_MODE != \'SAT\'');
$this->db->where('COL_BAND', $band);
}
}
if ($mode != 'All') {
$this->db->where('COL_MODE = \'' . $mode . '\'');
}
if ($mode != 'All') {
$this->db->where('COL_MODE', $mode);
}
if ($dxcc != 'All') {
$this->db->where('COL_DXCC = ' . $dxcc);
}
if ($dxcc != 'All') {
$this->db->where('COL_DXCC',$dxcc);
}
if ($cqz != 'All') {
$this->db->where('COL_CQZ = ' . $cqz);
}
if ($cqz != 'All') {
$this->db->where('COL_CQZ', $cqz);
}
if ($propagation != 'All') {
$this->db->where('COL_PROP_MODE = ' . $propagation);
}
if ($propagation != 'All') {
$this->db->where('COL_PROP_MODE', $propagation);
}
// If date is set, we add it to the where-statement
if ($fromdate != "") {
$this->db->where("date(".$this->config->item('table_name').".COL_TIME_ON) >= '".$fromdate."'");
}
if ($todate != "") {
$this->db->where("date(".$this->config->item('table_name').".COL_TIME_ON) <= '".$todate."'");
}
// If date is set, we add it to the where-statement
if ($fromdate != "") {
$this->db->where("date(".$this->config->item('table_name').".COL_TIME_ON) >=", $fromdate);
}
if ($todate != "") {
$this->db->where("date(".$this->config->item('table_name').".COL_TIME_ON) <=", $todate);
}
$query = $this->db->get($this->config->item('table_name'));
return $query;
}
$query = $this->db->get($this->config->item('table_name'));
return $query;
}
function cfd_get_all_qsos($fromdate, $todate) {
$binding=[];
$this->load->model('logbooks_model');
$logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
// If date is set, we add it to the where-statement
if ($fromdate ?? ''!= "") {
$from=" AND date(q.COL_TIME_ON) >= '".$fromdate."'";
$from=" AND date(q.COL_TIME_ON) >= ?";
$binding[]=$fromdate;
} else {
$from="";
}
if ($todate ?? '' != "") {
$till=" AND date(q.COL_TIME_ON) <= '".$todate."'";
$till=" AND date(q.COL_TIME_ON) <= ?";
$binding[]=$todate;
} else {
$till='';
}
$location_list = "'".implode("','",$logbooks_locations_array)."'";
$location_list = "'".implode("','",$logbooks_locations_array)."'";
$sql="SELECT
dx.prefix,dx.name,
@@ -2292,27 +2293,27 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray =
ELSE mo.qrgmode
END AS mode,q.col_band as band,
COUNT(1) as cnfmd
FROM ".$this->config->item('table_name')." q
INNER JOIN
dxcc_entities dx ON (dx.adif = q.COL_DXCC)
INNER JOIN
adif_modes mo ON (mo.mode = q.COL_MODE)
inner join bands b on (b.band=q.COL_BAND)
WHERE
(q.COL_QSL_RCVD = 'Y'
OR q.COL_LOTW_QSL_RCVD = 'Y'
OR q.COL_EQSL_QSL_RCVD = 'Y')
AND q.station_id in (".$location_list.")
AND (b.bandgroup='hf' or b.band = '6m') ".($from ?? '')." ".($till ?? '')."
GROUP BY dx.prefix,dx.name , CASE
WHEN q.col_mode = 'CW' THEN 'C'
WHEN mo.qrgmode = 'DATA' THEN 'R'
WHEN mo.qrgmode = 'SSB' THEN 'F'
ELSE mo.qrgmode
END,q.COL_BAND order by dx.prefix asc, q.col_band desc";
FROM ".$this->config->item('table_name')." q
INNER JOIN
dxcc_entities dx ON (dx.adif = q.COL_DXCC)
INNER JOIN
adif_modes mo ON (mo.mode = q.COL_MODE)
inner join bands b on (b.band=q.COL_BAND)
WHERE
(q.COL_QSL_RCVD = 'Y'
OR q.COL_LOTW_QSL_RCVD = 'Y'
OR q.COL_EQSL_QSL_RCVD = 'Y')
AND q.station_id in (".$location_list.")
AND (b.bandgroup='hf' or b.band = '6m') ".($from ?? '')." ".($till ?? '')."
GROUP BY dx.prefix,dx.name , CASE
WHEN q.col_mode = 'CW' THEN 'C'
WHEN mo.qrgmode = 'DATA' THEN 'R'
WHEN mo.qrgmode = 'SSB' THEN 'F'
ELSE mo.qrgmode
END,q.COL_BAND order by dx.prefix asc, q.col_band desc";
$query = $this->db->query($sql);
return $query;
$query = $this->db->query($sql,$binding);
return $query;
}
@@ -2419,55 +2420,57 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray =
/* Return QSOs over a period of days */
function map_week_qsos($start, $end) {
$this->load->model('logbooks_model');
$logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
$this->load->model('logbooks_model');
$logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
$this->db->where("COL_TIME_ON BETWEEN '".$start."' AND '".$end."'");
$this->db->where_in('station_id', $logbooks_locations_array);
$this->db->order_by("COL_TIME_ON", "ASC");
$query = $this->db->get($this->config->item('table_name'));
$this->db->where("COL_TIME_ON >= ",$start);
$this->db->where("COL_TIME_ON <= ",$end);
$this->db->where_in('station_id', $logbooks_locations_array);
$this->db->order_by("COL_TIME_ON", "ASC");
$query = $this->db->get($this->config->item('table_name'));
return $query;
return $query;
}
/* used to return custom qsos requires start, end date plus a band */
function map_custom_qsos($start, $end, $band, $mode, $propagation) {
$this->load->model('logbooks_model');
$logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
$this->load->model('logbooks_model');
$logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
if (!$logbooks_locations_array) {
return null;
if (!$logbooks_locations_array) {
return null;
}
$this->db->join('dxcc_entities', $this->config->item('table_name').'.col_dxcc = dxcc_entities.adif', 'left');
$this->db->where("COL_TIME_ON >=",$start." 00:00:00");
$this->db->where("COL_TIME_ON <=",$end." 23:59:59'");
$this->db->where_in("station_id", $logbooks_locations_array);
if($band != "All" && $band != "SAT") {
$this->db->where("COL_BAND", $band);
}
if ($band == "SAT") {
$this->db->where("COL_PROP_MODE", "SAT");
}
if ($mode != 'All') {
$this->db->group_start();
$this->db->where("COL_MODE", $mode);
$this->db->or_where("COL_SUBMODE", $mode);
$this->db->group_end();
}
if ($propagation != 'All') {
$this->db->where("COL_PROP_MODE", $propagation);
}
$this->db->order_by("COL_TIME_ON", "ASC");
$query = $this->db->get($this->config->item('table_name'));
return $query;
}
$this->db->join('dxcc_entities', $this->config->item('table_name').'.col_dxcc = dxcc_entities.adif', 'left');
$this->db->where("COL_TIME_ON BETWEEN '".$start." 00:00:00' AND '".$end." 23:59:59'");
$this->db->where_in("station_id", $logbooks_locations_array);
if($band != "All" && $band != "SAT") {
$this->db->where("COL_BAND", $band);
}
if ($band == "SAT") {
$this->db->where("COL_PROP_MODE", "SAT");
}
if ($mode != 'All') {
$this->db->group_start();
$this->db->where("COL_MODE", $mode);
$this->db->or_where("COL_SUBMODE", $mode);
$this->db->group_end();
}
if ($propagation != 'All') {
$this->db->where("COL_PROP_MODE", $propagation);
}
$this->db->order_by("COL_TIME_ON", "ASC");
$query = $this->db->get($this->config->item('table_name'));
return $query;
}
/* Returns QSOs for the date sent eg 2011-09-30 */
function map_day($date) {
$this->load->model('logbooks_model');
@@ -2476,7 +2479,8 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray =
$start = $date." 00:00:00";
$end = $date." 23:59:59";
$this->db->where("COL_TIME_ON BETWEEN '".$start."' AND '".$end."'");
$this->db->where("COL_TIME_ON >= ", $start);
$this->db->where("COL_TIME_ON <= ", $end);
$this->db->where_in('station_id', $logbooks_locations_array);
$this->db->order_by("COL_TIME_ON", "ASC");
$query = $this->db->get($this->config->item('table_name'));
@@ -3204,24 +3208,33 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray =
/* Used to check if the qso is already in the database */
function import_check($datetime, $callsign, $band, $mode, $station_callsign, $station_id = null) {
$binding=[];
$mode=$this->get_main_mode_from_mode($mode);
$this->db->select('COL_PRIMARY_KEY, COL_TIME_ON, COL_CALL, COL_BAND, COL_GRIDSQUARE');
$this->db->where('COL_TIME_ON >= DATE_ADD(DATE_FORMAT("'.$datetime.'", \'%Y-%m-%d %H:%i\' ), INTERVAL -15 MINUTE )');
$this->db->where('COL_TIME_ON <= DATE_ADD(DATE_FORMAT("'.$datetime.'", \'%Y-%m-%d %H:%i\' ), INTERVAL 15 MINUTE )');
$this->db->where('COL_CALL', $callsign);
$this->db->where('COL_STATION_CALLSIGN', $station_callsign);
$this->db->where('COL_BAND', $band);
$this->db->where('COL_MODE', $mode);
$sql='SELECT COL_PRIMARY_KEY, COL_TIME_ON, COL_CALL, COL_BAND, COL_GRIDSQUARE from '.$this->config->item('table_name').'
WHERE COL_TIME_ON >= DATE_ADD(DATE_FORMAT(?, \'%Y-%m-%d %H:%i\' ), INTERVAL -15 MINUTE )
AND COL_TIME_ON <= DATE_ADD(DATE_FORMAT(?, \'%Y-%m-%d %H:%i\' ), INTERVAL 15 MINUTE )
AND COL_CALL=?
AND COL_STATION_CALLSIGN=?
AND COL_BAND=?
AND COL_MODE=?';
$binding[]=$datetime;
$binding[]=$datetime;
$binding[]=$callsign;
$binding[]=$station_callsign;
$binding[]=$band;
$binding[]=$mode;
if(isset($station_id) && $station_id > 0) {
$this->db->where('station_id', $station_id);
$sql.=' AND station_id=?';
$binding[]=$station_id;
}
$query = $this->db->get($this->config->item('table_name'));
$query = $this->db->query($sql, $binding);
if ($query->num_rows() > 0)
{
if ($query->num_rows() > 0) {
$ret = $query->row();
return ["Found", $ret->COL_PRIMARY_KEY, $ret->COL_GRIDSQUARE];
} else {
@@ -3237,7 +3250,7 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray =
'COL_CLUBLOG_QSO_DOWNLOAD_STATUS' => $qsl_status,
);
$this->db->where('date_format(COL_TIME_ON, \'%Y-%m-%d %H:%i:%s\') = "'.$datetime.'"');
$this->db->where('date_format(COL_TIME_ON, \'%Y-%m-%d %H:%i:%s\') = ',$datetime);
$this->db->where('COL_CALL', $callsign);
$this->db->where("replace(replace(COL_BAND,'cm',''),'m','')", $band); // no way to achieve a real bandmatch, so fallback to match without unit. e.g.: "6" was provided by Clublog. Do they mean 6m or 6cm?
$this->db->where('COL_STATION_CALLSIGN', $station_callsign);
@@ -3308,15 +3321,16 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray =
}
$this->db->group_start();
$this->db->where('date_format(COL_LOTW_QSLRDATE, \'%Y-%m-%d %H:%i\') != "'.$qsl_date.'"');
$this->db->where('date_format(COL_LOTW_QSLRDATE, \'%Y-%m-%d %H:%i\') != ',$qsl_date);
$this->db->or_where('COL_LOTW_QSLRDATE is null');
$this->db->group_end();
$this->db->where('date_format(COL_TIME_ON, \'%Y-%m-%d %H:%i\') = "'.$datetime.'"');
$this->db->where('COL_CALL', $callsign);
$this->db->where('COL_BAND', $band);
$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->update($this->config->item('table_name'), $data);
unset($data);
@@ -3325,7 +3339,7 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray =
'COL_DISTANCE' => 0
);
$this->db->select('station_profile.station_gridsquare as station_gridsquare');
$this->db->where('date_format(COL_TIME_ON, \'%Y-%m-%d %H:%i\') = "'.$datetime.'"');
$this->db->where('date_format(COL_TIME_ON, \'%Y-%m-%d %H:%i\') = ',$datetime);
$this->db->where('COL_CALL', $callsign);
$this->db->where('COL_BAND', $band);
$this->db->where('COL_PRIMARY_KEY', $qsoid);
@@ -3348,7 +3362,7 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray =
$data['COL_DISTANCE'] = $this->qra->distance($station_gridsquare, $qsl_vucc_grids, 'K');
}
$this->db->where('date_format(COL_TIME_ON, \'%Y-%m-%d %H:%i\') = "'.$datetime.'"');
$this->db->where('date_format(COL_TIME_ON, \'%Y-%m-%d %H:%i\') = ',$datetime);
$this->db->where('COL_CALL', $callsign);
$this->db->where('COL_BAND', $band);
$this->db->where('COL_PRIMARY_KEY', $qsoid);

View File

@@ -6,8 +6,7 @@ class Note extends CI_Model {
if ($api_key == null) {
$user_id = $this->session->userdata('user_id');
} else {
$CI =& get_instance();
$CI->load->model('api_model');
$this->load->model('api_model');
if (strpos($this->api_model->access($api_key), 'r') !== false) {
$this->api_model->update_last_used($api_key);
$user_id = $this->api_model->key_userid($api_key);
@@ -20,9 +19,9 @@ class Note extends CI_Model {
function add() {
$data = array(
'cat' => xss_clean($this->input->post('category')),
'title' => xss_clean($this->input->post('title')),
'note' => xss_clean($this->input->post('content')),
'cat' => $this->input->post('category', TRUE),
'title' => $this->input->post('title', TRUE),
'note' => $this->input->post('content', TRUE),
'user_id' => $this->session->userdata('user_id')
);
@@ -31,23 +30,37 @@ class Note extends CI_Model {
function edit() {
$data = array(
'cat' => xss_clean($this->input->post('category')),
'title' => xss_clean($this->input->post('title')),
'note' => xss_clean($this->input->post('content'))
'cat' => $this->input->post('category', TRUE),
'title' => $this->input->post('title', TRUE),
'note' => $this->input->post('content', TRUE)
);
$this->db->where('id', xss_clean($this->input->post('id')));
$this->db->where('id', $this->input->post('id', TRUE));
$this->db->where('user_id', $this->session->userdata('user_id'));
$this->db->update('notes', $data);
}
function delete($id) {
$this->db->delete('notes', array('id' => xss_clean($id), 'user_id' =>$this->session->userdata('user_id')));
$clean_id = $this->security->xss_clean($id);
if (! is_numeric($clean_id)) {
show_404();
}
$this->db->delete('notes', array('id' => $clean_id, 'user_id' => $this->session->userdata('user_id')));
}
function view($id) {
$clean_id = $this->security->xss_clean($id);
if (! is_numeric($clean_id)) {
show_404();
}
// Get Note
$this->db->where('id', xss_clean($id));
$this->db->where('id', $clean_id);
$this->db->where('user_id', $this->session->userdata('user_id'));
return $this->db->get('notes');
}

View File

@@ -4,9 +4,8 @@ if (!defined('BASEPATH')) exit('No direct script access allowed');
class Timeline_model extends CI_Model
{
function get_timeline($band, $mode, $award, $qsl, $lotw, $eqsl) {
$CI =& get_instance();
$CI->load->model('logbooks_model');
$logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
$this->load->model('logbooks_model');
$logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
if (!$logbooks_locations_array) {
return null;
@@ -27,6 +26,7 @@ class Timeline_model extends CI_Model
}
public function get_timeline_dxcc($band, $mode, $location_list, $qsl, $lotw, $eqsl) {
$binding = [];
$sql = "select min(date(COL_TIME_ON)) date, prefix, col_country, end, adif from "
.$this->config->item('table_name'). " thcv
join dxcc_entities on thcv.col_dxcc = dxcc_entities.adif
@@ -34,16 +34,19 @@ class Timeline_model extends CI_Model
if ($band != 'All') {
if ($band == 'SAT') {
$sql .= " and col_prop_mode ='" . $band . "'";
$sql .= " and col_prop_mode = ?";
$binding[] = $band;
}
else {
$sql .= " and col_prop_mode !='SAT'";
$sql .= " and col_band ='" . $band . "'";
$sql .= " and col_band = ?";
$binding[] = $band;
}
}
if ($mode != 'All') {
$sql .= " and col_mode ='" . $mode . "'";
$sql .= " and col_mode = ?";
$binding[] = $mode;
}
$sql .= $this->addQslToQuery($qsl, $lotw, $eqsl);
@@ -51,28 +54,32 @@ class Timeline_model extends CI_Model
$sql .= " group by col_dxcc, col_country
order by date desc";
$query = $this->db->query($sql);
$query = $this->db->query($sql, $binding);
return $query->result();
}
public function get_timeline_waja($band, $mode, $location_list, $qsl, $lotw, $eqsl) {
$binding = [];
$sql = "select min(date(COL_TIME_ON)) date, col_state from "
.$this->config->item('table_name'). " thcv
where station_id in (" . $location_list . ")";
if ($band != 'All') {
if ($band == 'SAT') {
$sql .= " and col_prop_mode ='" . $band . "'";
$sql .= " and col_prop_mode = ?";
$binding[] = $band;
}
else {
$sql .= " and col_prop_mode !='SAT'";
$sql .= " and col_band ='" . $band . "'";
$sql .= " and col_band = ?";
$binding[] = $band;
}
}
if ($mode != 'All') {
$sql .= " and col_mode ='" . $mode . "'";
$sql .= " and col_mode = ?";
$binding[] = $mode;
}
$sql .= " and COL_DXCC = '339' and trim(coalesce(COL_STATE,'')) != '' ";
@@ -82,28 +89,32 @@ class Timeline_model extends CI_Model
$sql .= " group by col_state
order by date desc";
$query = $this->db->query($sql);
$query = $this->db->query($sql, $binding);
return $query->result();
}
public function get_timeline_was($band, $mode, $location_list, $qsl, $lotw, $eqsl) {
$binding = [];
$sql = "select min(date(COL_TIME_ON)) date, col_state from "
.$this->config->item('table_name'). " thcv
where station_id in (" . $location_list . ")";
if ($band != 'All') {
if ($band == 'SAT') {
$sql .= " and col_prop_mode ='" . $band . "'";
$sql .= " and col_prop_mode = ?";
$binding[] = $band;
}
else {
$sql .= " and col_prop_mode !='SAT'";
$sql .= " and col_band ='" . $band . "'";
$sql .= " and col_band = ?";
$binding[] = $band;
}
}
if ($mode != 'All') {
$sql .= " and col_mode ='" . $mode . "'";
$sql .= " and col_mode = ?";
$binding[] = $mode;
}
$sql .= " and COL_DXCC in ('291', '6', '110')";
@@ -114,12 +125,13 @@ class Timeline_model extends CI_Model
$sql .= " group by col_state
order by date desc";
$query = $this->db->query($sql);
$query = $this->db->query($sql, $binding);
return $query->result();
}
public function get_timeline_iota($band, $mode, $location_list, $qsl, $lotw, $eqsl) {
$binding = [];
$sql = "select min(date(COL_TIME_ON)) date, col_iota, name, prefix from "
.$this->config->item('table_name'). " thcv
join iota on thcv.col_iota = iota.tag
@@ -127,16 +139,19 @@ class Timeline_model extends CI_Model
if ($band != 'All') {
if ($band == 'SAT') {
$sql .= " and col_prop_mode ='" . $band . "'";
$sql .= " and col_prop_mode = ?";
$binding[] = $band;
}
else {
$sql .= " and col_prop_mode !='SAT'";
$sql .= " and col_band ='" . $band . "'";
$sql .= " and col_band = ?";
$binding[] = $band;
}
}
if ($mode != 'All') {
$sql .= " and col_mode ='" . $mode . "'";
$sql .= " and col_mode = ?";
$binding[] = $mode;
}
$sql .= $this->addQslToQuery($qsl, $lotw, $eqsl);
@@ -144,28 +159,32 @@ class Timeline_model extends CI_Model
$sql .= " and col_iota <> '' group by col_iota, name, prefix
order by date desc";
$query = $this->db->query($sql);
$query = $this->db->query($sql, $binding);
return $query->result();
}
public function get_timeline_waz($band, $mode, $location_list, $qsl, $lotw, $eqsl) {
$binding = [];
$sql = "select min(date(COL_TIME_ON)) date, col_cqz from "
.$this->config->item('table_name'). " thcv
where station_id in (" . $location_list . ")";
if ($band != 'All') {
if ($band == 'SAT') {
$sql .= " and col_prop_mode ='" . $band . "'";
$sql .= " and col_prop_mode = ?";
$binding[] = $band;
}
else {
$sql .= " and col_prop_mode !='SAT'";
$sql .= " and col_band ='" . $band . "'";
$sql .= " and col_band = ?";
$binding[] = $band;
}
}
if ($mode != 'All') {
$sql .= " and col_mode ='" . $mode . "'";
$sql .= " and col_mode = ?";
$binding[] = $mode;
}
$sql .= $this->addQslToQuery($qsl, $lotw, $eqsl);
@@ -173,12 +192,12 @@ class Timeline_model extends CI_Model
$sql .= " and col_cqz <> '' group by col_cqz
order by date desc";
$query = $this->db->query($sql);
$query = $this->db->query($sql, $binding);
return $query->result();
}
// Adds confirmation to query
function addQslToQuery($qsl, $lotw, $eqsl) {
$sql = '';
@@ -212,41 +231,9 @@ class Timeline_model extends CI_Model
return $sql;
}
public function get_timeline_vucc3($band, $mode, $location_list, $qsl, $lotw, $eqsl) {
// $sql = "select min(date(COL_TIME_ON)) date, col_gridsquare from "
$sql = "select min(date(COL_TIME_ON)) date, upper(substring(col_gridsquare, 1, 4)) gridsquare from "
.$this->config->item('table_name'). " thcv
where station_id in (" . $location_list . ")";
if ($band != 'All') {
if ($band == 'SAT') {
$sql .= " and col_prop_mode ='" . $band . "'";
}
else {
$sql .= " and col_prop_mode !='SAT'";
$sql .= " and col_band ='" . $band . "'";
}
}
if ($mode != 'All') {
$sql .= " and col_mode ='" . $mode . "'";
}
$sql .= $this->addQslToQuery($qsl, $lotw, $eqsl);
$sql .= " and col_gridsquare <> '' group by upper(substring(col_gridsquare, 1, 4))
order by date desc";
$query = $this->db->query($sql);
$this->vucc_shit($band, $mode, $location_list, $qsl, $lotw, $eqsl);
return $query->result();
}
public function timeline_qso_details($querystring, $band, $mode, $type){
$CI =& get_instance();
$CI->load->model('logbooks_model');
$logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
$this->load->model('logbooks_model');
$logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
$this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id');
$this->db->join('dxcc_entities', 'dxcc_entities.adif = '.$this->config->item('table_name').'.COL_DXCC', 'left outer');
@@ -290,9 +277,9 @@ class Timeline_model extends CI_Model
'gridsquare' => $grid->gridsquare,
'date' => $grid->date);
}
$col_vucc_grids = $this->get_vucc_grids($band, $mode, $location_list, $qsl, $lotw, $eqsl);
foreach ($col_vucc_grids as $gridSplit) {
$grids = explode(",", $gridSplit->gridsquare);
foreach($grids as $key) {
@@ -312,23 +299,26 @@ class Timeline_model extends CI_Model
}
public function get_gridsquare($band, $mode, $location_list, $qsl, $lotw, $eqsl) {
// $sql = "select min(date(COL_TIME_ON)) date, col_gridsquare from "
$binding = [];
$sql = "select min(COL_TIME_ON) date, upper(substring(col_gridsquare, 1, 4)) gridsquare from "
.$this->config->item('table_name'). " thcv
where station_id in (" . $location_list . ")";
if ($band != 'All') {
if ($band == 'SAT') {
$sql .= " and col_prop_mode ='" . $band . "'";
$sql .= " and col_prop_mode = ?";
$binding[] = $band;
}
else {
$sql .= " and col_prop_mode !='SAT'";
$sql .= " and col_band ='" . $band . "'";
$sql .= " and col_band = ?";
$binding[] = $band;
}
}
if ($mode != 'All') {
$sql .= " and col_mode ='" . $mode . "'";
$sql .= " and col_mode = ?";
$binding[] = $mode;
}
$sql .= $this->addQslToQuery($qsl, $lotw, $eqsl);
@@ -336,38 +326,41 @@ class Timeline_model extends CI_Model
$sql .= " and col_gridsquare <> '' group by upper(substring(col_gridsquare, 1, 4))
order by date desc";
$query = $this->db->query($sql);
$query = $this->db->query($sql, $binding);
return $query->result();
}
public function get_vucc_grids($band, $mode, $location_list, $qsl, $lotw, $eqsl) {
// $sql = "select min(date(COL_TIME_ON)) date, col_gridsquare from "
$binding = [];
$sql = "select COL_TIME_ON as date, upper(col_vucc_grids) gridsquare from "
.$this->config->item('table_name'). " thcv
where station_id in (" . $location_list . ")";
if ($band != 'All') {
if ($band == 'SAT') {
$sql .= " and col_prop_mode ='" . $band . "'";
$sql .= " and col_prop_mode = ?";
$binding[] = $band;
}
else {
$sql .= " and col_prop_mode !='SAT'";
$sql .= " and col_band ='" . $band . "'";
$sql .= " and col_band = ?";
$binding[] = $band;
}
}
if ($mode != 'All') {
$sql .= " and col_mode ='" . $mode . "'";
$sql .= " and col_mode = ?";
$binding[] = $mode;
}
$sql .= $this->addQslToQuery($qsl, $lotw, $eqsl);
$sql .= " and col_vucc_grids <> ''";
$query = $this->db->query($sql);
$query = $this->db->query($sql, $binding);
return $query->result();
}
}

View File

@@ -1,120 +0,0 @@
<div class="container">
<br>
<?php if($this->session->flashdata('message')) { ?>
<!-- Display Message -->
<div class="alert-message error">
<p><?php echo $this->session->flashdata('message'); ?></p>
</div>
<?php } ?>
<h2><?php echo $page_title; ?></h2>
<div class="card">
<div class="card-body">
<p class="card-text"><?= __("Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station."); ?></p>
<p class="card-text"><?= __("Similar to logbooks, a station profile keeps a set of QSOs together."); ?></p>
<p class="card-text"><?= __("Only one station may be active at a time. In the table below this is shown with the -Active Station- badge."); ?></p>
<p><a href="<?php echo site_url('station/create'); ?>" class="btn btn-primary"><i class="fas fa-plus"></i> <?= __("Create a Station Location"); ?></a></p>
<?php if ($stations->num_rows() > 0) { ?>
<?php if($current_active == 0) { ?>
<div class="alert alert-danger" role="alert">
<?= __("Attention: You need to set an active station location. Go to Callsign->Station Location to select one."); ?>
</div>
<?php } ?>
<?php if (($is_there_qsos_with_no_station_id >= 1) && ($is_admin)) { ?>
<div class="alert alert-danger" role="alert">
<span class="badge rounded-pill text-bg-warning"><?= __("Warning"); ?></span> <?= __("Due to recent changes within Wavelog you need to reassign QSOs to your station profiles."); ?>
</br>
<?= __("Please reassign them at "); ?> <a href="<?php echo site_url('debug'); ?>" class="btn btn-warning"><i class="fas fa-sync"></i> <?= __("Admin") . "/" . __("Maintenance"); ?></a>
</div>
<?php } ?>
<div class="table-responsive">
<table id="station_locations_table" class="table table-sm table-striped">
<thead>
<tr>
<th scope="col"><?= __("Profile Name"); ?></th>
<th scope="col"><?= __("Station Callsign"); ?></th>
<th scope="col"><?= __("Country"); ?></th>
<th scope="col"><?= __("Gridsquare"); ?></th>
<th></th>
<th scope="col"><?= __("Edit"); ?></th>
<th scope="col"><?= __("Copy"); ?></th>
<?php
$quickswitch_enabled = ($this->user_options_model->get_options('header_menu', array('option_name'=>'locations_quickswitch'))->row()->option_value ?? 'false');
if ($quickswitch_enabled == 'true') {
?>
<th scope="col">Favorite</th>
<?php } ?>
<th scope="col"><?= __("Empty Log"); ?></th>
<th scope="col"><?= __("Delete"); ?></th>
</tr>
</thead>
<tbody>
<?php foreach ($stations->result() as $row) { ?>
<tr>
<td style="text-align: center; vertical-align: middle;">
<?php echo $row->station_profile_name;?><br>
</td>
<td style="text-align: center; vertical-align: middle;"><?php echo $row->station_callsign;?></td>
<td style="text-align: center; vertical-align: middle;"><?php echo $row->station_country == '' ? '- NONE -' : $row->station_country; if ($row->dxcc_end != NULL) { echo ' <span class="badge text-bg-danger">'.__("Deleted DXCC").'</span>'; } ?></td>
<td style="text-align: center; vertical-align: middle;"><?php echo $row->station_gridsquare;?></td>
<td style="text-align: center" data-order="<?php echo $row->station_id;?>">
<?php if($row->station_active != 1) { ?>
<a href="<?php echo site_url('station/set_active/').$current_active."/".$row->station_id; ?>" class="btn btn-outline-secondary btn-sm" onclick="return confirm('<?= __("Are you sure you want to make the following station the active station: "); ?> <?php echo $row->station_profile_name; ?>');"><?= __("Set Active"); ?></a>
<?php } else { ?>
<span class="badge text-bg-success"><?= __("Active Station"); ?></span>
<?php } ?>
<br>
<span class="badge text-bg-info">ID: <?php echo $row->station_id;?></span>
<span class="badge text-bg-light"><?php echo $row->qso_total;?> <?= __("QSO"); ?></span>
</td>
<td style="text-align: center; vertical-align: middle;">
<a href="<?php echo site_url('station/edit')."/".$row->station_id; ?>" title=<?= __("Edit"); ?> class="btn btn-outline-primary btn-sm"><i class="fas fa-edit"></i></a>
</td>
<td style="text-align: center; vertical-align: middle;">
<a href="<?php echo site_url('station/copy')."/".$row->station_id; ?>" title=<?= __("Copy"); ?> class="btn btn-outline-primary btn-sm"><i class="fas fa-copy"></i></a>
</td>
<?php
if ($quickswitch_enabled == 'true') {
?>
<td style="text-align: center; vertical-align: middle;">
<?php $locationFavorite = ($this->user_options_model->get_options('station_location', array('option_name'=>'is_favorite', 'option_key'=>$row->station_id))->row()->option_value ?? 'false');
if ($locationFavorite == 'true') {
$favStarClasses = 'class="fas fa-star" style="color: #ffc82b;"';
} else {
$favStarClasses = 'class="far fa-star" style="color: #a58118;"';
} ?>
<a href="<?php echo site_url('station/edit_favorite')."/".$row->station_id; ?>" title="mark/unmark as favorite" <?php echo $favStarClasses; ?>></a>
</td>
<?php } ?>
<td style="text-align: center; vertical-align: middle;">
<?php
$cnfmsg = __("Are you sure you want to delete all QSOs within this station profile?");
?>
<a href="<?php echo site_url('station/deletelog')."/".$row->station_id; ?>" class="btn btn-danger btn-sm" title=<?= __("Empty Log"); ?> onclick="return confirm('<?php echo $cnfmsg; ?>');"><i class="fas fa-trash-alt"></i></a></td>
</td>
<td style="text-align: center; vertical-align: middle;">
<?php if($row->station_active != 1) {
$cnfmsg = sprintf(__("Are you sure you want delete station profile '%s'? This will delete all QSOs within this station profile."), $row->station_profile_name); ?>
<a href="<?php echo site_url('station/delete')."/".$row->station_id; ?>" class="btn btn-danger btn-sm" title=<?= __("Delete"); ?> onclick="return confirm('<?= $cnfmsg ?>')"><i class="fas fa-trash-alt"></i></a>
<?php } ?>
</td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
<?php } ?>
</div>
</div>
</div>

View File

@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-08-13 19:24+0000\n"
"POT-Creation-Date: 2024-08-15 07:16+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"
@@ -399,11 +399,11 @@ msgstr ""
msgid "Backup"
msgstr ""
#: application/controllers/Backup.php:48
#: application/controllers/Backup.php:50
msgid "ADIF - Backup"
msgstr ""
#: application/controllers/Backup.php:80
#: application/controllers/Backup.php:84
msgid "Notes - Backup"
msgstr ""
@@ -1023,7 +1023,6 @@ msgstr ""
#: application/views/qso/components/previous_contacts.php:81
#: application/views/search/result_search.php:11
#: application/views/search/search_result_ajax.php:7
#: application/views/station_profile/index.php:43
#: application/views/stationsetup/stationsetup.php:124
#: application/views/statistics/custom_result.php:92
#: application/views/timeline/index.php:118 application/views/user/edit.php:232
@@ -1121,7 +1120,6 @@ msgstr ""
#: application/views/search/result.php:33
#: application/views/search/search_result_ajax.php:13
#: application/views/simplefle/index.php:147
#: application/views/station_profile/index.php:44
#: application/views/stationsetup/stationsetup.php:125
#: application/views/timeline/index.php:257 application/views/user/edit.php:130
#: application/views/user/edit.php:238 application/views/user/edit.php:260
@@ -1289,7 +1287,6 @@ msgstr ""
#: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368
#: application/views/station_profile/create.php:73
#: application/views/station_profile/edit.php:78
#: application/views/station_profile/index.php:65
#: application/views/stationsetup/linkedlocations.php:17
#: application/views/stationsetup/linkedlocations.php:45
#: application/views/stationsetup/stationsetup.php:150
@@ -1349,7 +1346,7 @@ msgstr ""
msgid "Edit Mode"
msgstr ""
#: application/controllers/Notes.php:19
#: application/controllers/Notes.php:18
#: application/views/interface_assets/header.php:128
#: application/views/notes/add.php:9 application/views/notes/edit.php:10
#: application/views/notes/main.php:5 application/views/notes/main.php:8
@@ -1361,16 +1358,16 @@ msgstr ""
msgid "Notes"
msgstr ""
#: application/controllers/Notes.php:38
#: application/controllers/Notes.php:37
msgid "Add Notes"
msgstr ""
#: application/controllers/Notes.php:58
#: application/controllers/Notes.php:64
#: application/views/oqrs/showrequests.php:88
msgid "Note"
msgstr ""
#: application/controllers/Notes.php:79 application/views/notes/edit.php:7
#: application/controllers/Notes.php:92 application/views/notes/edit.php:7
#: application/views/notes/view.php:19
msgid "Edit Note"
msgstr ""
@@ -1593,8 +1590,6 @@ msgstr ""
#: application/views/satellite/edit.php:40
#: application/views/satellite/index.php:26
#: application/views/search/stored_queries.php:22
#: application/views/station_profile/index.php:55
#: application/views/station_profile/index.php:106
#: application/views/stationsetup/stationsetup.php:33
#: application/views/stationsetup/stationsetup.php:137
#: application/views/stationsetup/stationsetup.php:192
@@ -1674,8 +1669,16 @@ msgid ""
"date"
msgstr ""
#: application/controllers/Station.php:35
#: application/controllers/Station.php:78 application/views/csv/index.php:19
#: application/controllers/Station.php:36
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:51
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:59 application/views/csv/index.php:19
#: application/views/dxatlas/index.php:19
#: application/views/labels/index.php:124
#: application/views/logbookadvanced/edit.php:18
@@ -1690,16 +1693,7 @@ msgstr ""
msgid "Station Location"
msgstr ""
#: application/controllers/Station.php:55
#: application/controllers/Stationsetup.php:226
msgid "Create Station Location"
msgstr ""
#: application/controllers/Station.php:70
msgid "Edit Station Location: "
msgstr ""
#: application/controllers/Station.php:92
#: application/controllers/Station.php:73
msgid "Duplicate Station Location:"
msgstr ""
@@ -1792,20 +1786,17 @@ msgid "Are you sure you want to delete the public slug?"
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid ""
"Are you sure you want to make the following station the active station: "
msgstr ""
#: application/controllers/Stationsetup.php:349
#: application/views/station_profile/index.php:69
#: application/views/stationsetup/stationsetup.php:154
msgid "Set Active"
msgstr ""
#: application/controllers/Stationsetup.php:351
#: application/views/station_profile/index.php:71
#: application/views/stationsetup/stationsetup.php:156
msgid "Active Station"
msgstr ""
@@ -1814,7 +1805,6 @@ msgstr ""
#: application/views/interface_assets/header.php:113
#: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20
#: application/views/simplefle/index.php:28
#: application/views/station_profile/index.php:76
#: application/views/stationsetup/stationsetup.php:161
#: application/views/user/main.php:87 application/views/user/main.php:89
msgid "QSO"
@@ -1830,8 +1820,6 @@ msgstr ""
#: application/views/mode/index.php:52 application/views/satellite/edit.php:39
#: application/views/satellite/index.php:25
#: application/views/search/stored_queries.php:21
#: application/views/station_profile/index.php:46
#: application/views/station_profile/index.php:79
#: application/views/stationsetup/stationsetup.php:128
#: application/views/stationsetup/stationsetup.php:165
#: application/views/themes/index.php:104 application/views/user/main.php:52
@@ -1839,29 +1827,23 @@ msgid "Edit"
msgstr ""
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:99
#: application/views/stationsetup/stationsetup.php:185
msgid "Are you sure you want to delete all QSOs within this station profile?"
msgstr ""
#: application/controllers/Stationsetup.php:363
#: application/views/station_profile/index.php:54
#: application/views/station_profile/index.php:101
#: application/views/stationsetup/stationsetup.php:136
#: application/views/stationsetup/stationsetup.php:187
msgid "Empty Log"
msgstr ""
#: application/controllers/Stationsetup.php:367
#: application/views/station_profile/index.php:47
#: application/views/station_profile/index.php:82
#: application/views/stationsetup/stationsetup.php:129
#: application/views/stationsetup/stationsetup.php:168
msgid "Copy"
msgstr ""
#: application/controllers/Stationsetup.php:372
#: application/views/station_profile/index.php:105
#: application/views/stationsetup/stationsetup.php:191
#, php-format
msgid ""
@@ -2125,31 +2107,31 @@ msgstr ""
msgid "HRDlog: No station profiles with HRDlog Credentials found."
msgstr ""
#: application/models/Logbook_model.php:4129
#: application/models/Logbook_model.php:4143
msgid "QSO could not be matched"
msgstr ""
#: application/models/Logbook_model.php:4135
#: application/models/Logbook_model.php:4149
msgid "confirmed by LoTW/Clublog/eQSL/Contest"
msgstr ""
#: application/models/Logbook_model.php:4140
#: application/models/Logbook_model.php:4154
msgid "confirmed by award manager"
msgstr ""
#: application/models/Logbook_model.php:4143
#: application/models/Logbook_model.php:4157
msgid "confirmed by cross-check of DCL data"
msgstr ""
#: application/models/Logbook_model.php:4146
#: application/models/Logbook_model.php:4160
msgid "confirmation pending"
msgstr ""
#: application/models/Logbook_model.php:4149
#: application/models/Logbook_model.php:4163
msgid "unconfirmed"
msgstr ""
#: application/models/Logbook_model.php:4152
#: application/models/Logbook_model.php:4166
msgid "unknown"
msgstr ""
@@ -2690,7 +2672,6 @@ msgstr ""
#: application/views/hrdlog/export.php:74
#: application/views/interface_assets/footer.php:34
#: application/views/qrz/export.php:73 application/views/qrz/export.php:94
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
#: application/views/view_log/qso.php:622
#: application/views/webadif/export.php:34
@@ -5561,7 +5542,6 @@ msgstr[1] ""
#: application/views/public_search/result.php:17
#: application/views/station_profile/create.php:57
#: application/views/station_profile/edit.php:46
#: application/views/station_profile/index.php:42
#: application/views/stationsetup/linkedlocations.php:32
#: application/views/stationsetup/stationsetup.php:123
msgid "Station Callsign"
@@ -6305,7 +6285,6 @@ msgid "Satellite Pass"
msgstr ""
#: application/views/interface_assets/header.php:265
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Admin"
msgstr ""
@@ -9388,60 +9367,6 @@ msgstr ""
msgid "Signature"
msgstr ""
#: application/views/station_profile/index.php:15
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/station_profile/index.php:16
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/station_profile/index.php:17
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/station_profile/index.php:19
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/station_profile/index.php:25
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/station_profile/index.php:31
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/station_profile/index.php:33
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/station_profile/index.php:41
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/create.php:17
msgid "Station Logbook Name"
msgstr ""
@@ -9489,6 +9414,11 @@ msgstr ""
msgid "Link Location"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:31
#: application/views/stationsetup/stationsetup.php:122
msgid "Profile Name"
msgstr ""
#: application/views/stationsetup/linkedlocations.php:34
msgid "Unlink Station Location"
msgstr ""
@@ -9513,12 +9443,52 @@ msgstr ""
msgid "Station Locations"
msgstr ""
#: application/views/stationsetup/stationsetup.php:95
msgid ""
"Station Locations define operating locations, such as your QTH, a friends "
"QTH, or a portable station."
msgstr ""
#: application/views/stationsetup/stationsetup.php:96
msgid "Similar to logbooks, a station profile keeps a set of QSOs together."
msgstr ""
#: application/views/stationsetup/stationsetup.php:97
msgid ""
"Only one station may be active at a time. In the table below this is shown "
"with the -Active Station- badge."
msgstr ""
#: application/views/stationsetup/stationsetup.php:98
msgid ""
"The 'Linked' column shows if the station location is linked with the Active "
"Logbook selected above."
msgstr ""
#: application/views/stationsetup/stationsetup.php:101
msgid "Create a Station Location"
msgstr ""
#: application/views/stationsetup/stationsetup.php:105
msgid ""
"Attention: You need to set an active station location. Go to Callsign-"
">Station Location to select one."
msgstr ""
#: application/views/stationsetup/stationsetup.php:111
msgid ""
"Due to recent changes within Wavelog you need to reassign QSOs to your "
"station profiles."
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Maintenance"
msgstr ""
#: application/views/stationsetup/stationsetup.php:113
msgid "Please reassign them at "
msgstr ""
#: application/views/stationsetup/stationsetup.php:127
msgid "Linked"
msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
"POT-Creation-Date: 2024-08-12 09:45+0000\n"
"PO-Revision-Date: 2024-08-13 04:18+0000\n"
"PO-Revision-Date: 2024-08-13 19:24+0000\n"
"Last-Translator: Dragan Đorđević <4o4a.dragan@gmail.com>\n"
"Language-Team: Serbian <https://translate.wavelog.org/projects/wavelog/"
"installer/sr/>\n"
@@ -451,8 +451,8 @@ msgid ""
"Usually 'localhost'.<br>Optional with '[host]:[port]'. Default port: 3306."
"<br>In a docker compose install type 'wavelog-db'."
msgstr ""
"Obično 'localhost'.<br>Opciono '[host]:[port]'. Podrazumevani port: "
"3306.<br>In a docker compose install type 'wavelog-db'."
"Obično 'localhost'.<br>Opciono sa '[host]:[port]'. Podrazumevani port: 3306. "
"<br>In a docker compose install type 'wavelog-db'."
#: install/index.php:447
msgid "Database Name"