diff --git a/application/config/config.sample.php b/application/config/config.sample.php index bc1827e54..41b38f92e 100644 --- a/application/config/config.sample.php +++ b/application/config/config.sample.php @@ -669,4 +669,17 @@ $config['disable_oqrs'] = false; $config['special_callsign'] = false; // hides the usermenu; takes action only if "special_callsign" is true -$config['sc_hide_usermenu'] = true; \ No newline at end of file +$config['sc_hide_usermenu'] = true; + + +/* +|-------------------------------------------------------------------------- +| Impersonate +|-------------------------------------------------------------------------- +| +| This config switch disables the impersonate feature. This feauture is used to impersonate another user. +| Impersonate is enabled by default. To disable it, set the value to false. +| +*/ + +$config['disable_impersonate'] = false; \ No newline at end of file diff --git a/application/controllers/Contestcalendar.php b/application/controllers/Contestcalendar.php index a6e80a5e9..7eebe29c9 100644 --- a/application/controllers/Contestcalendar.php +++ b/application/controllers/Contestcalendar.php @@ -72,7 +72,6 @@ class Contestcalendar extends CI_Controller { return $rssData; } - private function parseTimeRange($string) { $timeData = array(); @@ -86,7 +85,19 @@ class Contestcalendar extends CI_Controller { // create proper dateTime $timeData['start'] = DateTime::createFromFormat('Hi\Z, M d', $start); + + if (!$timeData['start']) { + // If the first format didn't match, try the format without the comma + $timeData['start'] = DateTime::createFromFormat('Hi\Z M d', $start); + } + $timeData['end'] = DateTime::createFromFormat('Hi\Z, M d', $end); + + if (!$timeData['end']) { + // If the first format didn't match, try the format without the comma + $timeData['end'] = DateTime::createFromFormat('Hi\Z M d', $end); + } + } else { // split in start and end time @@ -144,8 +155,8 @@ class Contestcalendar extends CI_Controller { continue; } - $start = date('Y-m-d', strtotime($contest['start']->format('Y-m-d'))); - $end = date('Y-m-d', strtotime($contest['end']->format('Y-m-d'))); + $start = $contest['start'] == '' ? '' : date('Y-m-d', strtotime($contest['start']->format('Y-m-d'))); + $end = $contest['end'] == '' ? '' : date('Y-m-d', strtotime($contest['end']->format('Y-m-d'))); if ($start <= $this->today && $end >= $this->today) { $contestsToday[] = $contest; @@ -175,8 +186,8 @@ class Contestcalendar extends CI_Controller { continue; } - $start = date('Y-m-d', strtotime($contest['start']->format('Y-m-d'))); - $end = date('Y-m-d', strtotime($contest['end']->format('Y-m-d'))); + $start = $contest['start'] == '' ? '' : date('Y-m-d', strtotime($contest['start']->format('Y-m-d'))); + $end = $contest['end'] == '' ? '' : date('Y-m-d', strtotime($contest['end']->format('Y-m-d'))); if ($start >= $nextFriday && $start <= $nextSunday && $start >= $this->today) { $contestsNextWeekend[] = $contest; diff --git a/application/controllers/Eqsl.php b/application/controllers/Eqsl.php index 6126a2a59..b6b8d2d60 100644 --- a/application/controllers/Eqsl.php +++ b/application/controllers/Eqsl.php @@ -388,6 +388,7 @@ class eqsl extends CI_Controller { return $error; } + session_write_close(); foreach ($images as $image) { $content = file_get_contents("https://www.eqsl.cc" . $image->getAttribute('src')); if ($content === false) { diff --git a/application/controllers/Logbook.php b/application/controllers/Logbook.php index 304d3231d..216dedeae 100644 --- a/application/controllers/Logbook.php +++ b/application/controllers/Logbook.php @@ -139,7 +139,7 @@ class Logbook extends CI_Controller { $return['callsign_name'] = $this->nval($callbook['name'] ?? '', $this->logbook_model->call_name($callsign)); $return['callsign_qra'] = $this->nval($callbook['gridsquare'] ?? '', $this->logbook_model->call_qra($callsign)); - $return['callsign_distance'] = $this->distance($return['callsign_qra']); + $return['callsign_distance'] = $this->distance($return['callsign_qra'], $station_id); $return['callsign_qth'] = $this->nval($callbook['city'] ?? '', $this->logbook_model->call_qth($callsign)); $return['callsign_iota'] = $this->nval($callbook['iota'] ?? '', $this->logbook_model->call_iota($callsign)); $return['qsl_manager'] = $this->nval($callbook['qslmgr'] ?? '', $this->logbook_model->call_qslvia($callsign)); diff --git a/application/controllers/Lotw.php b/application/controllers/Lotw.php index d5b90ed03..cb8de7ba0 100644 --- a/application/controllers/Lotw.php +++ b/application/controllers/Lotw.php @@ -149,14 +149,14 @@ class Lotw extends CI_Controller { $this->Lotw_model->store_certificate($this->session->userdata('user_id'), $info['issued_callsign'], $info['dxcc-id'], $info['validFrom'], $info['validTo_Date'], $info['qso-first-date'], $info['qso-end-date'], $info['pem_key'], $info['general_cert']); // Cert success flash message - $this->session->set_flashdata('Success', $info['issued_callsign'].' Certificate Imported.'); + $this->session->set_flashdata('success', $info['issued_callsign'] . ' ' . __("Certificate Imported.")); } else { // Certificate is in the system time to update $this->Lotw_model->update_certificate($this->session->userdata('user_id'), $info['issued_callsign'], $info['dxcc-id'], $info['validFrom'], $info['validTo_Date'], $info['qso-first-date'], $info['qso-end-date'], $info['pem_key'], $info['general_cert']); // Cert success flash message - $this->session->set_flashdata('Success', $info['issued_callsign'].' Certificate Updated.'); + $this->session->set_flashdata('success', $info['issued_callsign'] . ' ' . __("Certificate Updated.")); } @@ -381,9 +381,9 @@ class Lotw extends CI_Controller { $this->Lotw_model->delete_certificate($this->session->userdata('user_id'), $cert_id); - $this->session->set_flashdata('Success', 'Certificate Deleted.'); + $this->session->set_flashdata('success', __("Certificate Deleted.")); - redirect('/lotw/'); + redirect('lotw'); } @@ -405,7 +405,14 @@ class Lotw extends CI_Controller { $filename = file_get_contents('file://'.$file); $worked = openssl_pkcs12_read($filename, $results, $password); - $data['general_cert'] = $results['cert']; + if ($results['cert']) { + $data['general_cert'] = $results['cert']; + } else { + log_message('error', 'Found no certificate in file '.$file); + unlink($file); + $this->session->set_flashdata('warning', sprintf(__("Found no certificate in file %s. If the filename contains 'key-only' this is typically a certificate request which has not been processed by LoTW yet."), basename($file))); + redirect('lotw'); + } if($worked) { @@ -422,16 +429,16 @@ class Lotw extends CI_Controller { log_message('error', openssl_error_string()); // Set warning message redirect to LoTW main page - $this->session->set_flashdata('Warning', openssl_error_string()); - redirect('/lotw/'); + $this->session->set_flashdata('warning', openssl_error_string()); + redirect('lotw'); } } else { // Reading p12 failed log error message log_message('error', openssl_error_string()); // Set warning message redirect to LoTW main page - $this->session->set_flashdata('Warning', openssl_error_string()); - redirect('/lotw/'); + $this->session->set_flashdata('warning', openssl_error_string()); + redirect('lotw'); } // Read Cert Data @@ -742,7 +749,7 @@ class Lotw extends CI_Controller { // TODO: We don't actually see the error message if ($data['user_lotw_name'] == '' || $data['user_lotw_password'] == '') { - $this->session->set_flashdata('warning', 'You have not defined your ARRL LoTW credentials!'); redirect('lotw/import'); + $this->session->set_flashdata('warning', __("You have not defined your ARRL LoTW credentials!")); redirect('lotw/import'); } $customDate = $this->input->post('from'); @@ -860,7 +867,7 @@ class Lotw extends CI_Controller { if ($fields['login'] == '' || $fields['password'] == '') { - $this->session->set_flashdata('warning', 'You have not defined your ARRL LoTW credentials!'); redirect('lotw/status'); + $this->session->set_flashdata('warning', __("You have not defined your ARRL LoTW credentials!")); redirect('lotw/status'); } // Curl stuff goes here @@ -905,7 +912,7 @@ class Lotw extends CI_Controller { $result = curl_exec($ch); if (stristr($result, "Username/password incorrect")) { - $this->session->set_flashdata('warning', 'Your ARRL username and/or password is incorrect.'); redirect('lotw/status'); + $this->session->set_flashdata('warning', __("Your ARRL username and/or password is incorrect.")); redirect('lotw/status'); } diff --git a/application/controllers/Qrbcalc.php b/application/controllers/Qrbcalc.php index 2056ae154..247b492e6 100644 --- a/application/controllers/Qrbcalc.php +++ b/application/controllers/Qrbcalc.php @@ -23,8 +23,13 @@ class Qrbcalc extends CI_Controller { } public function calculate() { - $locator1 = $this->input->post("locator1"); - $locator2 = $this->input->post("locator2"); + + if(!$this->load->is_loaded('Qra')) { + $this->load->library('Qra'); + } + + $locator1 = strtoupper($this->input->post("locator1", TRUE)); + $locator2 = strtoupper($this->input->post("locator2", TRUE)); if ($this->session->userdata('user_measurement_base') == NULL) { $measurement_base = $this->config->item('measurement_base'); @@ -33,34 +38,39 @@ class Qrbcalc extends CI_Controller { $measurement_base = $this->session->userdata('user_measurement_base'); } - switch ($measurement_base) { - case 'M': - $var_dist = " miles"; - break; - case 'N': - $var_dist = " nautic miles"; - break; - case 'K': - $var_dist = " kilometers"; - break; - } - - if(!$this->load->is_loaded('Qra')) { - $this->load->library('Qra'); - } - - $data['result'] = $this->qra->bearing($locator1, $locator2, $measurement_base); - $data['distance'] = $this->qra->distance($locator1, $locator2, $measurement_base) . $var_dist; - $data['bearing'] = $this->qra->get_bearing($locator1, $locator2) . "º"; $latlng1 = $this->qra->qra2latlong($locator1); $latlng2 = $this->qra->qra2latlong($locator2); $latlng1[0] = number_format((float)$latlng1[0], 3, '.', '');; $latlng1[1] = number_format((float)$latlng1[1], 3, '.', '');; $latlng2[0] = number_format((float)$latlng2[0], 3, '.', '');; $latlng2[1] = number_format((float)$latlng2[1], 3, '.', '');; + $distance = $this->qra->distance($locator1, $locator2, $measurement_base); + $text_latlng1 = $locator1 . ' ' . sprintf(__("Latitude: %s, Longitude: %s"), $latlng1[0], $latlng1[1]); + $text_latlng2 = $locator2 . ' ' . sprintf(__("Latitude: %s, Longitude: %s"), $latlng2[0], $latlng2[1]); + + switch ($measurement_base) { + case 'M': + $var_dist = sprintf(_ngettext("The distance between %s and %s is %s mile.", "The distance between %s and %s is %s miles.", intval($distance)), $locator1, $locator2, $distance); + break; + case 'N': + $var_dist = sprintf(_ngettext("The distance between %s and %s is %s nautical mile.", "The distance between %s and %s is %s nautical miles.", intval($distance)), $locator1, $locator2, $distance); + break; + case 'K': + $var_dist = sprintf(_ngettext("The distance between %s and %s is %s kilometer.", "The distance between %s and %s is %s kilometers.", intval($distance)), $locator1, $locator2, $distance); + break; + } + + $data['result'] = $this->qra->bearing($locator1, $locator2, $measurement_base); + $data['distance'] = $var_dist; + $data['bearing'] = sprintf(__("The bearing is %s."), $this->qra->get_bearing($locator1, $locator2) . "º"); $data['latlng1'] = $latlng1; + $data['text_latlng1'] = $text_latlng1; + $data['text_latlng2'] = $text_latlng2; $data['latlng2'] = $latlng2; + + $data['latlong_info_text'] = __("Negative latitudes are south of the equator, negative longitudes are west of Greenwich."); + header('Content-Type: application/json'); echo json_encode($data); } diff --git a/application/controllers/Qso.php b/application/controllers/Qso.php index 028a89527..0e64e53c3 100644 --- a/application/controllers/Qso.php +++ b/application/controllers/Qso.php @@ -147,16 +147,16 @@ class QSO extends CI_Controller { //change to create_qso function as add and create_qso duplicate functionality $this->logbook_model->create_qso(); - $retuner=[]; - $actstation=$this->stations->find_active() ?? ''; - $returner['activeStationId'] = $actstation; - $profile_info = $this->stations->profile($actstation)->row(); - $returner['activeStationTXPower'] = xss_clean($profile_info->station_power); - $returner['activeStationOP'] = xss_clean($this->session->userdata('operator_callsign')); + $returner=[]; + $actstation=$this->stations->find_active() ?? ''; + $returner['activeStationId'] = $actstation; + $profile_info = $this->stations->profile($actstation)->row(); + $returner['activeStationTXPower'] = xss_clean($profile_info->station_power); + $returner['activeStationOP'] = xss_clean($this->session->userdata('operator_callsign')); $returner['message']='success'; // Get last 5 qsos - echo json_encode($returner); + echo json_encode($returner); } } @@ -205,13 +205,9 @@ class QSO extends CI_Controller { $this->load->model('winkey'); // call settings from model winkey - $data['result'] = $this->winkey->settings($this->session->userdata('user_id'), $this->session->userdata('station_profile_id')); + $data['result'] = $this->winkey->settings($this->session->userdata('user_id'), $this->stations->find_active()); - if ($data['result'] == false) { - $this->load->view('qso/components/winkeysettings', $data); - } else { - $this->load->view('qso/components/winkeysettings_results', $data); - } + $this->load->view('qso/components/winkeysettings', $data); } function cwmacrosave(){ @@ -233,7 +229,7 @@ class QSO extends CI_Controller { $data = [ 'user_id' => $this->session->userdata('user_id'), - 'station_location_id' => $this->session->userdata('station_profile_id'), + 'station_location_id' => $this->stations->find_active(), 'function1_name' => $function1_name, 'function1_macro' => $function1_macro, 'function2_name' => $function2_name, @@ -262,7 +258,7 @@ class QSO extends CI_Controller { header('Content-Type: application/json; charset=utf-8'); // Call settings_json from model winkey - echo $this->winkey->settings_json($this->session->userdata('user_id'), $this->session->userdata('station_profile_id')); + echo $this->winkey->settings_json($this->session->userdata('user_id'), $this->stations->find_active()); } function edit_ajax() { @@ -340,20 +336,20 @@ class QSO extends CI_Controller { function qsl_sent_ajax() { $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'); - + header('Content-Type: application/json'); - + if(!$this->user_model->authorize(2)) { echo json_encode(array('message' => 'Error')); - + } else { // Update Logbook to Mark Paper Card Sent $this->logbook_model->paperqsl_update_sent($id, $method); - + echo json_encode(array('message' => 'OK')); } } diff --git a/application/controllers/Update.php b/application/controllers/Update.php index 20aa07ce9..3cd5d4180 100644 --- a/application/controllers/Update.php +++ b/application/controllers/Update.php @@ -289,7 +289,7 @@ class Update extends CI_Controller { $this->logbook_model->check_missing_continent(); } - public function update_distances() { + public function update_distances($all = false) { $this->load->model('user_model'); if (!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); @@ -297,7 +297,7 @@ class Update extends CI_Controller { } $this->load->model('logbook_model'); - $this->logbook_model->update_distances(); + $this->logbook_model->update_distances($all); } public function check_missing_grid($all = false){ diff --git a/application/controllers/User.php b/application/controllers/User.php index 89a744216..18f31eaaa 100644 --- a/application/controllers/User.php +++ b/application/controllers/User.php @@ -5,14 +5,38 @@ class User extends CI_Controller { public function index() { $this->load->model('user_model'); + + if (!$this->load->is_loaded('encryption')) { + $this->load->library('encryption'); + } + if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $data['results'] = $this->user_model->users(); + $data['session_uid'] = $this->session->userdata('user_id'); + + // Check if impersonating is disabled in the config + if ($this->config->item('disable_impersonate')) { + $data['disable_impersonate'] = true; + } else { + $data['disable_impersonate'] = false; + } + + // Get Date format + if($this->session->userdata('user_date_format')) { + // If Logged in and session exists + $data['custom_date_format'] = $this->session->userdata('user_date_format'); + } else { + // Get Default date format from /config/wavelog.php + $data['custom_date_format'] = $this->config->item('qso_date_format'); + } + + $data['has_flossie'] = ($this->config->item('encryption_key') == 'flossie1234555541') ? true : false; $data['page_title'] = __("User Accounts"); $this->load->view('interface_assets/header', $data); - $this->load->view('user/main'); + $this->load->view('user/index'); $this->load->view('interface_assets/footer'); } @@ -1090,8 +1114,7 @@ class User extends CI_Controller { } } - function reset_password($reset_code = NULL) - { + function reset_password($reset_code = NULL) { $data['reset_code'] = $reset_code; if($reset_code != NULL) { $this->load->helper(array('form', 'url')); @@ -1122,38 +1145,118 @@ class User extends CI_Controller { } } - function check_locator($grid) { - $grid = $this->input->post('user_locator'); - // Allow empty locator - if (preg_match('/^$/', $grid)) return true; - // Allow 6-digit locator - if (preg_match('/^[A-Ra-r]{2}[0-9]{2}[A-Za-z]{2}$/', $grid)) return true; - // Allow 4-digit locator - else if (preg_match('/^[A-Ra-r]{2}[0-9]{2}$/', $grid)) return true; - // Allow 4-digit grid line - else if (preg_match('/^[A-Ra-r]{2}[0-9]{2},[A-Ra-r]{2}[0-9]{2}$/', $grid)) return true; - // Allow 4-digit grid corner - else if (preg_match('/^[A-Ra-r]{2}[0-9]{2},[A-Ra-r]{2}[0-9]{2},[A-Ra-r]{2}[0-9]{2},[A-Ra-r]{2}[0-9]{2}$/', $grid)) return true; - // Allow 2-digit locator - else if (preg_match('/^[A-Ra-r]{2}$/', $grid)) return true; - // Allow 8-digit locator - else if (preg_match('/^[A-Ra-r]{2}[0-9]{2}[A-Za-z]{2}[0-9]{2}$/', $grid)) return true; - else { - $this->form_validation->set_message('check_locator', 'Please check value for grid locator ('.strtoupper($grid).').'); - return false; - } - } + function check_locator($grid) { + $grid = $this->input->post('user_locator'); + // Allow empty locator + if (preg_match('/^$/', $grid)) return true; + // Allow 6-digit locator + if (preg_match('/^[A-Ra-r]{2}[0-9]{2}[A-Za-z]{2}$/', $grid)) return true; + // Allow 4-digit locator + else if (preg_match('/^[A-Ra-r]{2}[0-9]{2}$/', $grid)) return true; + // Allow 4-digit grid line + else if (preg_match('/^[A-Ra-r]{2}[0-9]{2},[A-Ra-r]{2}[0-9]{2}$/', $grid)) return true; + // Allow 4-digit grid corner + else if (preg_match('/^[A-Ra-r]{2}[0-9]{2},[A-Ra-r]{2}[0-9]{2},[A-Ra-r]{2}[0-9]{2},[A-Ra-r]{2}[0-9]{2}$/', $grid)) return true; + // Allow 2-digit locator + else if (preg_match('/^[A-Ra-r]{2}$/', $grid)) return true; + // Allow 8-digit locator + else if (preg_match('/^[A-Ra-r]{2}[0-9]{2}[A-Za-z]{2}[0-9]{2}$/', $grid)) return true; + else { + $this->form_validation->set_message('check_locator', 'Please check value for grid locator ('.strtoupper($grid).').'); + return false; + } + } - function https_check() { - if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on') { - return true; + function https_check() { + if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on') { + return true; + } + if (!empty($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') { + return true; + } + if (!empty($_SERVER['HTTP_X_FORWARDED_SSL']) && $_SERVER['HTTP_X_FORWARDED_SSL'] === 'on') { + return true; + } + return false; } - if (!empty($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') { - return true; + + public function impersonate() { + + // Check if impersonating is disabled in the config + if ($this->config->item('disable_impersonate')) { + show_404(); + } + + // Load the encryption library + if (!$this->load->is_loaded('encryption')) { + $this->load->library('encryption'); + } + // Load the user model + $this->load->model('user_model'); + + // Precheck: If the encryption key is still default, we can't impersonate another user for security reasons + if ($this->config->item('encryption_key') == 'flossie1234555541') { + $this->session->set_flashdata('error', __("You currently can't impersonate another user. Please change the encryption_key in your config.php file first!")); + redirect('dashboard'); + } + + // Prepare the hash + $raw_hash = $this->encryption->decrypt($this->input->post('hash', TRUE) ?? ''); + if (!$raw_hash) { + $this->session->set_flashdata('error', __("Invalid Hash")); + redirect('dashboard'); + } + $hash_parts = explode('/', $raw_hash); + $source_uid = $hash_parts[0]; + $target_uid = $hash_parts[1]; + $timestamp = $hash_parts[2]; + + /** + * Security Checks + */ + // make sure the timestamp is not too old + if (time() - $timestamp > 600) { // 10 minutes + $this->session->set_flashdata('error', __("The impersonation hash is too old. Please try again.")); + redirect('dashboard'); + } + + // is the source user still logged in? + // We fetch the source user from database to also make sure the user exists. We could use source_uid directly, but this is more secure + if ($this->session->userdata('user_id') != $this->user_model->get_by_id($source_uid)->row()->user_id) { + $this->session->set_flashdata('error', __("You can't impersonate another user while you're not logged in as the source user")); + redirect('dashboard'); + } + + // in addition to the check if the user is logged in, we also can check if the session id matches the cookie + if ($this->session->session_id != $this->input->cookie($this->config->item('sess_cookie_name'), TRUE)) { + $this->session->set_flashdata('error', __("There was a problem with your session. Please try again.")); + redirect('dashboard'); + } + + // make sure the target user exists + $target_user = $this->user_model->get_by_id($target_uid)->row(); + if (!$target_user) { + $this->session->set_flashdata('error', __("The requested user to impersonate does not exist")); + redirect('dashboard'); + } + + // before we can impersonate a user, we need to make sure the current user is an admin + // TODO: authorize from additional datatable 'impersonators' to allow other user types to impersonate + $source_user = $this->user_model->get_by_id($source_uid)->row(); + if(!$source_user || !$this->user_model->authorize(99)) { + $this->session->set_flashdata('error', __("You're not allowed to do that!")); + redirect('dashboard'); + } + + /** + * Impersonate the user + */ + // Update the session with the new user_id + // TODO: Find a solution for sessiondata 'radio', so a user would be able to use e.g. his own radio while impersonating another user + // Due the fact that the user is now impersonating another user, he can't use his default radio anymore + $this->user_model->update_session($target_uid); + + // Redirect to the dashboard, the user should now be logged in as the other user + redirect('dashboard'); } - if (!empty($_SERVER['HTTP_X_FORWARDED_SSL']) && $_SERVER['HTTP_X_FORWARDED_SSL'] === 'on') { - return true; - } - return false; -} } diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po index 8eb4232b2..ce2568114 100644 --- a/application/locale/bg_BG/LC_MESSAGES/messages.po +++ b/application/locale/bg_BG/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-17 17:16+0000\n" +"POT-Creation-Date: 2024-08-21 15:06+0000\n" "PO-Revision-Date: 2024-08-17 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Bulgarian \n" "Language-Team: Bosnian \n" "Language-Team: Montenegrin \n" "Language-Team: Czech , 2024. # Rasmus , 2024. # Fabian Berg , 2024. +# "Francisco (F4VSE)" , 2024. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-17 17:16+0000\n" -"PO-Revision-Date: 2024-08-17 19:17+0000\n" +"POT-Creation-Date: 2024-08-21 15:06+0000\n" +"PO-Revision-Date: 2024-08-21 19:27+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: German \n" @@ -25,7 +26,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.6.2\n" +"X-Generator: Weblate 5.7\n" #: application/controllers/Accumulated.php:13 #: application/controllers/Activators.php:13 @@ -57,8 +58,8 @@ msgstr "" #: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 #: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 #: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:348 -#: application/controllers/Eqsl.php:411 application/controllers/Eqsl.php:427 -#: application/controllers/Eqsl.php:487 application/controllers/Hamsat.php:13 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 application/controllers/Hamsat.php:13 #: application/controllers/Kmlexport.php:18 #: application/controllers/Kmlexport.php:33 #: application/controllers/Labels.php:26 @@ -66,17 +67,17 @@ msgstr "" #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 #: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 #: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 -#: application/controllers/Lotw.php:712 application/controllers/Lotw.php:820 -#: application/controllers/Lotw.php:828 application/controllers/Mode.php:15 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 #: application/controllers/Notes.php:10 application/controllers/Options.php:15 #: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 #: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 #: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 #: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 #: application/controllers/Qso.php:9 application/controllers/Qso.php:19 -#: application/controllers/Qso.php:176 application/controllers/Qso.php:279 -#: application/controllers/Qso.php:299 application/controllers/Qso.php:308 -#: application/controllers/Qso.php:603 application/controllers/Radio.php:259 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:599 application/controllers/Radio.php:259 #: application/controllers/Radio.php:285 application/controllers/Radio.php:301 #: application/controllers/Satellite.php:15 #: application/controllers/Sattimers.php:9 @@ -90,10 +91,11 @@ msgstr "" #: application/controllers/Update.php:24 application/controllers/Update.php:273 #: application/controllers/Update.php:284 #: application/controllers/Update.php:295 -#: application/controllers/Update.php:306 application/controllers/User.php:8 -#: application/controllers/User.php:21 application/controllers/User.php:206 -#: application/controllers/User.php:207 application/controllers/User.php:719 -#: application/controllers/User.php:738 application/controllers/User.php:1021 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 #: application/controllers/User_options.php:9 msgid "You're not allowed to do that!" msgstr "Das ist dir nicht gestattet!" @@ -114,7 +116,7 @@ msgstr "Karte der aktivierten Planquadrate" #: application/controllers/Gridmap.php:31 #: application/controllers/Visitor.php:374 #: application/views/activators/index.php:100 -#: application/views/interface_assets/footer.php:42 +#: application/views/interface_assets/footer.php:43 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "Planquadrate" @@ -228,7 +230,7 @@ msgid "Key Invalid - either not found or disabled" msgstr "Schlüssel ungültig – entweder nicht gefunden oder deaktiviert" #: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 +#: application/views/lotw_views/index.php:91 msgid "Valid" msgstr "Gültig" @@ -283,7 +285,7 @@ msgstr "DOK" #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 -#: application/views/lotw_views/index.php:40 +#: application/views/lotw_views/index.php:36 #: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 #: application/views/search/cqzones_result.php:15 #: application/views/search/result.php:27 @@ -362,7 +364,7 @@ msgstr " und " #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:336 #: application/views/search/search_result_ajax.php:9 -#: application/views/station_profile/edit.php:236 +#: application/views/station_profile/edit.php:243 #: application/views/user/edit.php:234 application/views/user/edit.php:256 #: application/views/user/edit.php:278 application/views/user/edit.php:300 #: application/views/user/edit.php:323 @@ -383,7 +385,7 @@ msgstr "SOTA" #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:341 #: application/views/search/search_result_ajax.php:10 -#: application/views/station_profile/edit.php:249 +#: application/views/station_profile/edit.php:256 #: application/views/user/edit.php:235 application/views/user/edit.php:257 #: application/views/user/edit.php:279 application/views/user/edit.php:301 #: application/views/user/edit.php:324 @@ -403,7 +405,7 @@ msgstr "WWFF" #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:346 #: application/views/search/search_result_ajax.php:11 -#: application/views/station_profile/edit.php:262 +#: application/views/station_profile/edit.php:269 #: application/views/user/edit.php:236 application/views/user/edit.php:258 #: application/views/user/edit.php:280 application/views/user/edit.php:302 #: application/views/user/edit.php:325 @@ -676,19 +678,19 @@ msgstr "eQSL Import Information" msgid "eQSL QSO Upload" msgstr "eQSL QSO-Upload" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:416 msgid "eQSL Tools" msgstr "eQSL Tools" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid " / Errors: " msgstr " / Fehler: " -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid "Successfully downloaded: " msgstr "Erfolgreich heruntergeladen: " -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:472 msgid "eQSL Card Image Download" msgstr "eQSL-Karten Bilder Download" @@ -962,7 +964,7 @@ msgstr "LoTW" #: application/views/search/result_search.php:16 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:273 -#: application/views/station_profile/edit.php:298 +#: application/views/station_profile/edit.php:305 #: application/views/timeline/index.php:64 application/views/user/edit.php:564 #: application/views/user/edit.php:667 application/views/user/edit.php:731 msgid "eQSL" @@ -976,7 +978,7 @@ msgstr "eQSL" #: application/views/awards/waja/index.php:71 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 -#: application/views/station_profile/edit.php:345 +#: application/views/station_profile/edit.php:352 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 #: application/views/view_log/partial/log_ajax.php:83 @@ -1151,7 +1153,7 @@ msgstr "Land" #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:318 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:208 +#: application/views/station_profile/edit.php:215 #: application/views/timeline/index.php:202 application/views/user/edit.php:233 #: application/views/user/edit.php:255 application/views/user/edit.php:277 #: application/views/user/edit.php:299 application/views/user/edit.php:322 @@ -1375,15 +1377,15 @@ msgstr "Operator" #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:675 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:159 #: application/views/lookup/index.php:31 -#: application/views/lotw_views/index.php:56 +#: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 #: 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:98 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 #: application/views/stationsetup/stationsetup.php:150 @@ -1413,23 +1415,53 @@ msgstr "Schnellsuche" msgid "Logbook of the World" msgstr "Logbook of the World" -#: application/controllers/Lotw.php:610 +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "Zertifikat importiert." + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "Zertifikat aktualisiert." + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "Zertifikat gelöscht." + +#: application/controllers/Lotw.php:413 +#, php-format +msgid "" +"Found no certificate in file %s. If the filename contains 'key-only' this is " +"typically a certificate request which has not been processed by LoTW yet." +msgstr "" +"Kein Zertifikat in der Datei %s gefunden. Wenn der Dateiname 'key-only' " +"enthält, handelt es sich normalerweise um eine Zertifikatsanforderung, die " +"von LoTW noch nicht bearbeitet wurde." + +#: application/controllers/Lotw.php:617 msgid "LoTW ADIF Information" msgstr "LoTW ADIF Information" -#: application/controllers/Lotw.php:718 +#: application/controllers/Lotw.php:725 msgid "LoTW ADIF Import" msgstr "LoTW ADIF-Import" -#: application/controllers/Lotw.php:830 +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "Du hast deine ARRL LoTW Zugangsdaten nicht definiert!" + +#: application/controllers/Lotw.php:837 msgid "LoTW .TQ8 Upload" msgstr "LoTW .TQ8-Upload" -#: application/controllers/Lotw.php:927 application/controllers/Lotw.php:932 +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "Dein ARRL-Benutzername und/oder Passwort ist falsch." + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 msgid "LoTW .TQ8 Sent" msgstr "LoTW .TQ8 gesendet" -#: application/controllers/Lotw.php:939 +#: application/controllers/Lotw.php:946 msgid "LoTW .TQ8 Not Sent" msgstr "LoTW .TQ8 nicht gesendet" @@ -1594,6 +1626,46 @@ msgstr "OQRS-Anforderungen" msgid "QRB Calculator" msgstr "QRB-Rechner" +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "Breitengrad: %s, Längengrad: %s" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "Die Entfernung zwischen %s und %s beträgt %s Meile." +msgstr[1] "Die Entfernung zwischen %s und %s beträgt %s Meilen." + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "Die Entfernung zwischen %s und %s beträgt %s Seemeile." +msgstr[1] "Die Entfernung zwischen %s und %s beträgt %s Seemeilen." + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "Die Entfernung zwischen %s und %s beträgt %s Kilometer." +msgstr[1] "Die Entfernung zwischen %s und %s beträgt %s Kilometer." + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "Die Peilung ist %s." + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" +"Negative Breitengrade liegen südlich des Äquators, negative Längengrade " +"westlich von Greenwich." + #: application/controllers/Qrz.php:173 #: application/views/interface_assets/header.php:426 msgid "QRZ Logbook" @@ -1648,7 +1720,7 @@ msgstr "Zeitstempel" #: application/controllers/Radio.php:52 #: application/views/logbookadvanced/index.php:527 -#: application/views/lotw_views/index.php:47 +#: application/views/lotw_views/index.php:43 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:171 #: application/views/stationsetup/exportmapoptions.php:5 @@ -1674,13 +1746,13 @@ msgstr "Standardgerät (klicken zum freigeben)" #: application/controllers/Radio.php:105 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2329 -#: application/views/interface_assets/footer.php:2347 -#: application/views/interface_assets/footer.php:2368 -#: application/views/interface_assets/footer.php:2386 +#: application/views/interface_assets/footer.php:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:519 -#: application/views/lotw_views/index.php:118 +#: application/views/lotw_views/index.php:114 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 #: application/views/qslcard/index.php:65 @@ -1690,7 +1762,7 @@ msgstr "Standardgerät (klicken zum freigeben)" #: application/views/stationsetup/stationsetup.php:33 #: application/views/stationsetup/stationsetup.php:137 #: application/views/stationsetup/stationsetup.php:192 -#: application/views/themes/index.php:107 application/views/user/main.php:54 +#: application/views/themes/index.php:107 application/views/user/index.php:57 #: application/views/view_log/qso.php:613 msgid "Delete" msgstr "Löschen" @@ -1731,6 +1803,7 @@ msgstr "Satelliten-Timer" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 +#: application/views/interface_assets/footer.php:37 #: application/views/interface_assets/header.php:336 #: application/views/interface_assets/header.php:343 #: application/views/logbookadvanced/index.php:516 @@ -1783,8 +1856,8 @@ msgstr "Bearbeite Stationsstandort: " #: application/views/logbookadvanced/edit.php:18 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:447 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 @@ -1849,8 +1922,8 @@ msgstr "Fehler. Link existiert bereits!" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:259 -#: application/views/station_profile/edit.php:332 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 msgid "Disabled" @@ -1910,15 +1983,15 @@ msgstr "Aktive Station" #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:28 #: application/views/stationsetup/stationsetup.php:161 -#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/user/index.php:90 application/views/user/index.php:92 msgid "QSO" msgstr "QSO" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 -#: application/views/interface_assets/footer.php:538 -#: application/views/interface_assets/footer.php:547 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 #: application/views/labels/index.php:47 application/views/labels/index.php:83 #: application/views/logbookadvanced/index.php:518 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 @@ -1926,7 +1999,7 @@ msgstr "QSO" #: application/views/search/stored_queries.php:21 #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 -#: application/views/themes/index.php:104 application/views/user/main.php:52 +#: application/views/themes/index.php:104 application/views/user/index.php:52 msgid "Edit" msgstr "Bearbeiten" @@ -2044,37 +2117,37 @@ msgstr "DXCC-Ausnahmen:" msgid "Dxcc Prefixes:" msgstr "DXCC-Präfixe:" -#: application/controllers/User.php:12 +#: application/controllers/User.php:36 #: application/views/interface_assets/header.php:268 msgid "User Accounts" msgstr "Benutzerkonten" -#: application/controllers/User.php:52 +#: application/controllers/User.php:76 msgid "Add User" msgstr "Füge Benutzer hinzu" -#: application/controllers/User.php:166 +#: application/controllers/User.php:190 msgid "Users" msgstr "Benutzer" -#: application/controllers/User.php:240 application/controllers/User.php:673 +#: application/controllers/User.php:264 application/controllers/User.php:697 msgid "Edit User" msgstr "Bearbeite Benutzer" -#: application/controllers/User.php:665 application/controllers/User.php:668 -#: application/views/user/main.php:3 application/views/user/main.php:46 +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 msgid "User" msgstr "Benutzer" -#: application/controllers/User.php:665 application/controllers/User.php:668 +#: application/controllers/User.php:689 application/controllers/User.php:692 msgid "edited" msgstr "bearbeitet" -#: application/controllers/User.php:722 +#: application/controllers/User.php:746 msgid "Profile" msgstr "Profil" -#: application/controllers/User.php:779 +#: application/controllers/User.php:803 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." @@ -2082,18 +2155,18 @@ msgstr "" "Herzlichen Glückwunsch! Wavelog wurde erfolgreich installiert. Du kannst " "dich nun anmelden." -#: application/controllers/User.php:843 application/controllers/User.php:853 +#: application/controllers/User.php:867 application/controllers/User.php:877 msgid "Login failed. Try again." msgstr "Login fehlgeschlagen. Bitte erneut versuchen." -#: application/controllers/User.php:860 +#: application/controllers/User.php:884 #: application/views/interface_assets/header.php:356 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:88 msgid "Login" msgstr "Anmeldung" -#: application/controllers/User.php:898 +#: application/controllers/User.php:922 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " @@ -2104,38 +2177,70 @@ msgstr "" "kontaktiere bitte den Administrator. Nur Administratoren können sich derzeit " "einloggen." -#: application/controllers/User.php:901 +#: application/controllers/User.php:925 msgid "Incorrect username or password!" msgstr "Falscher Benutzername oder Passwort!" -#: application/controllers/User.php:918 +#: application/controllers/User.php:942 #, php-format msgid "User %s logged out." msgstr "Benutzer %s ausgeloggt." -#: application/controllers/User.php:932 +#: application/controllers/User.php:956 msgid "Password Reset is disabled on the Demo!" msgstr "Passwort Reset ist in der Demo nicht verfügbar!" -#: application/controllers/User.php:945 +#: application/controllers/User.php:969 msgid "Forgot Password" msgstr "Passwort vergessen" -#: application/controllers/User.php:995 application/views/user/main.php:8 +#: application/controllers/User.php:1019 application/views/user/index.php:8 msgid "Email settings are incorrect." msgstr "E-Mail Einstellungen sind nicht korrekt." -#: application/controllers/User.php:999 application/controllers/User.php:1004 +#: application/controllers/User.php:1023 application/controllers/User.php:1028 msgid "Password Reset Processed." msgstr "Passwort Zurücksetzen angefordert." -#: application/controllers/User.php:1106 +#: application/controllers/User.php:1129 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "Passwort zurücksetzen" +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" +"Du kannst derzeit keinen anderen Benutzer imitieren. Bitte ändere zuerst den " +"encryption_key in deiner config.php Datei!" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "Ungültiger Hash" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "Der Übernahme-Hash ist zu alt. Bitte versuche es erneut." + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" +"Du kannst keinen Benutzer imitieren, solange du nicht als Ausgangs-Benutzer " +"eingeloggt bist" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "Es gab ein Problem mit deiner Sitzung. Bitte versuche es erneut." + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "Der angeforderte Benutzer zum Imitieren existiert nicht" + #: application/controllers/Visitor.php:50 #: application/controllers/Visitor.php:79 #: application/controllers/Visitor.php:142 @@ -2429,8 +2534,8 @@ msgstr "Differenz" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1441 -#: application/views/interface_assets/footer.php:1580 +#: application/views/interface_assets/footer.php:1446 +#: application/views/interface_assets/footer.php:1585 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 @@ -2662,7 +2767,7 @@ msgstr "Nichts gefunden!" #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 -#: application/views/lotw_views/index.php:39 +#: application/views/lotw_views/index.php:35 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 #: application/views/qslcard/index.php:28 @@ -2677,10 +2782,10 @@ msgstr "Nichts gefunden!" #: application/views/search/lotw_unconfirmed_result.php:6 #: application/views/search/result.php:11 #: application/views/simplefle/index.php:142 -#: application/views/station_profile/edit.php:56 +#: application/views/station_profile/edit.php:63 #: application/views/stationsetup/linkedlocations.php:17 -#: application/views/user/edit.php:123 application/views/user/main.php:4 -#: application/views/user/main.php:47 application/views/user/profile.php:29 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 #: application/views/view_log/qso.php:82 application/views/view_log/qso.php:507 msgid "Callsign" msgstr "Rufzeichen" @@ -2941,8 +3046,8 @@ msgstr "" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 -#: application/views/interface_assets/footer.php:498 -#: application/views/interface_assets/footer.php:2125 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 msgid "DANGER" msgstr "GEFAHR" @@ -3135,8 +3240,8 @@ msgstr "Einfacher Name, um zu beschreiben, wofür Sie diese API verwenden." #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 -#: application/views/interface_assets/footer.php:44 -#: application/views/interface_assets/footer.php:533 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -3144,8 +3249,6 @@ msgstr "Einfacher Name, um zu beschreiben, wofür Sie diese API verwenden." #: application/views/options/oqrs.php:63 #: application/views/options/radios.php:45 #: application/views/options/version_dialog.php:78 -#: application/views/qso/components/winkeysettings.php:90 -#: application/views/qso/components/winkeysettings_results.php:90 #: application/views/satellite/create.php:70 #: application/views/simplefle/index.php:22 msgid "Save" @@ -3231,7 +3334,7 @@ msgid "Permissions" msgstr "Berechtigungen" #: application/views/api/help.php:31 application/views/cron/index.php:52 -#: application/views/lotw_views/index.php:45 +#: application/views/lotw_views/index.php:41 #: application/views/mode/index.php:31 #: application/views/oqrs/showrequests.php:91 #: application/views/sattimers/index.php:39 @@ -3402,8 +3505,8 @@ msgstr "Gesamt" #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:106 -#: application/views/station_profile/edit.php:146 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 #: application/views/timeline/index.php:231 #: application/views/timeplotter/index.php:44 msgid "CQ Zone" @@ -3453,7 +3556,7 @@ msgstr "Diplome - CQ Magazin WAZ" #: application/views/bandmap/list.php:73 #: application/views/dashboard/index.php:245 #: application/views/dashboard/index.php:363 -#: application/views/interface_assets/footer.php:39 +#: application/views/interface_assets/footer.php:40 #: application/views/visitor/index.php:266 msgid "Confirmed" msgstr "Bestätigt" @@ -3519,7 +3622,7 @@ msgstr "QSO mit QSL-Typ anzeigen" #: application/views/awards/cq/index.php:56 #: application/views/awards/itu/index.php:56 -#: application/views/interface_assets/footer.php:2104 +#: application/views/interface_assets/footer.php:2109 #: application/views/qso/edit_ajax.php:378 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -4042,8 +4145,8 @@ msgstr "Gelöscht" #: application/views/logbookadvanced/index.php:251 #: application/views/logbookadvanced/index.php:594 #: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:120 -#: application/views/station_profile/edit.php:163 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 msgid "ITU Zone" msgstr "ITU Zone" @@ -4170,8 +4273,8 @@ msgstr "" #: application/views/awards/pota/index.php:31 #: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:177 -#: application/views/station_profile/edit.php:265 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 #: application/views/user/edit.php:595 application/views/view_log/qso.php:303 #: application/views/view_log/qso.php:570 msgid "POTA Reference(s)" @@ -4477,8 +4580,8 @@ msgstr "" #: application/views/awards/wwff/index.php:31 #: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:171 -#: application/views/station_profile/edit.php:252 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 #: application/views/user/edit.php:591 application/views/view_log/qso.php:296 #: application/views/view_log/qso.php:563 msgid "WWFF Reference" @@ -4679,9 +4782,7 @@ msgstr "Erstelle ein neues Band" #: application/views/bands/index.php:152 #: application/views/contesting/add.php:74 -#: application/views/interface_assets/footer.php:43 -#: application/views/qso/components/winkeysettings.php:91 -#: application/views/qso/components/winkeysettings_results.php:91 +#: application/views/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -5016,8 +5117,8 @@ msgid "Name of Contest in ADIF-specification" msgstr "Der Name des Contests in ADIF-Spezifikation" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:48 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "Erstelle" @@ -5162,8 +5263,8 @@ msgstr "Identifikator" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:261 -#: application/views/station_profile/edit.php:334 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 msgid "Enabled" @@ -5219,6 +5320,7 @@ msgstr "Gib dein eigenes Cron Intervall ein" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "Abbrechen" @@ -5920,7 +6022,7 @@ msgstr "Installiert" msgid "Not Installed" msgstr "Nicht installiert" -#: application/views/debug/index.php:283 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:649 msgid "Settings" msgstr "Einstellungen" @@ -5977,7 +6079,7 @@ msgstr "DXCC-Update von Club Log" #: application/views/debug/index.php:506 application/views/debug/index.php:511 #: application/views/debug/index.php:516 application/views/debug/index.php:521 #: application/views/debug/index.php:526 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/edit.php:49 msgid "Update" msgstr "Aktualisierung" @@ -6019,8 +6121,8 @@ msgstr[1] "Die Datenbank enthält %d QSOs ohne Stationsprofil (Standort)" #: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:57 -#: application/views/station_profile/edit.php:66 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" @@ -6378,10 +6480,10 @@ msgid "QSL Date" msgstr "QSL-Datum" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2330 -#: application/views/interface_assets/footer.php:2348 -#: application/views/interface_assets/footer.php:2369 -#: application/views/interface_assets/footer.php:2387 +#: application/views/interface_assets/footer.php:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -6513,114 +6615,122 @@ msgstr "Achtung" msgid "OK" msgstr "OK" -#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/footer.php:38 msgid "Warning! Are you sure you want delete QSO with " msgstr "Warnung! Bist du sicher, dass du dieses QSO löschen willst mit " -#: application/views/interface_assets/footer.php:38 +#: application/views/interface_assets/footer.php:39 #: application/views/user/edit.php:493 msgid "Colors" msgstr "Farben" -#: application/views/interface_assets/footer.php:40 +#: application/views/interface_assets/footer.php:41 msgid "Worked not confirmed" msgstr "Gearbeitet, nicht bestätigt" -#: application/views/interface_assets/footer.php:41 +#: application/views/interface_assets/footer.php:42 msgid "Not worked" msgstr "Nicht gearbeitet" -#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:46 #: application/views/qso/index.php:601 #: application/views/visitor/layout/footer.php:245 msgid "Clear" msgstr "Zurücksetzen" -#: application/views/interface_assets/footer.php:46 +#: application/views/interface_assets/footer.php:47 #: application/views/qso/edit_ajax.php:211 #: application/views/qso/edit_ajax.php:512 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "" "Ausbreitungsart wird von LotW nicht unterstützt. LoTW QSL-Felder deaktiviert." -#: application/views/interface_assets/footer.php:47 +#: application/views/interface_assets/footer.php:48 msgid "No states for this DXCC available" msgstr "Keine Staaten für dieses DXCC verfügbar" -#: application/views/interface_assets/footer.php:129 +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "Berechne QRB und QTF" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "Fehlerhaftes Planquadrat. Bitte überprüfen." + +#: application/views/interface_assets/footer.php:132 #: application/views/interface_assets/header.php:434 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "Versionsinfo" -#: application/views/interface_assets/footer.php:395 +#: application/views/interface_assets/footer.php:398 msgid "Description:" msgstr "Beschreibung:" -#: application/views/interface_assets/footer.php:398 +#: application/views/interface_assets/footer.php:401 msgid "Query description" msgstr "Suchmuster-Beschreibung" -#: application/views/interface_assets/footer.php:414 +#: application/views/interface_assets/footer.php:417 msgid "Your query has been saved!" msgstr "Dein Suchmuster wurde gespeichert!" -#: application/views/interface_assets/footer.php:416 +#: application/views/interface_assets/footer.php:419 #: application/views/search/filter.php:46 msgid "Edit queries" msgstr "Suchmuster bearbeiten" -#: application/views/interface_assets/footer.php:418 +#: application/views/interface_assets/footer.php:421 msgid "Stored queries:" msgstr "Gespeicherte Suchmuster:" -#: application/views/interface_assets/footer.php:423 +#: application/views/interface_assets/footer.php:426 #: application/views/search/filter.php:60 msgid "Run Query" msgstr "Suchmuster ausführen" -#: application/views/interface_assets/footer.php:435 -#: application/views/interface_assets/footer.php:564 -#: application/views/interface_assets/footer.php:628 +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 msgid "Stored Queries" msgstr "Gespeicherte Suchmuster" -#: application/views/interface_assets/footer.php:440 -#: application/views/interface_assets/footer.php:633 +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 msgid "You need to make a query before you search!" msgstr "Du musst ein Suchmuster erstellen, bevor du suchst!" -#: application/views/interface_assets/footer.php:461 -#: application/views/interface_assets/footer.php:592 +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 #: application/views/search/filter.php:79 msgid "Export to ADIF" msgstr "Nach ADIF exportieren" -#: application/views/interface_assets/footer.php:499 +#: application/views/interface_assets/footer.php:502 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" "Warnung! Bist du sicher, dass du dieses gespeicherte Suchmuster löschen " "willst?" -#: application/views/interface_assets/footer.php:513 +#: application/views/interface_assets/footer.php:516 msgid "The stored query has been deleted!" msgstr "Das gespeicherte Suchmuster wurde gelöscht!" -#: application/views/interface_assets/footer.php:522 +#: application/views/interface_assets/footer.php:525 msgid "The stored query could not be deleted. Please try again!" msgstr "" "Das gespeicherte Suchmuster konnte nicht gelöscht werden. Bitte versuche es " "erneut!" -#: application/views/interface_assets/footer.php:548 +#: application/views/interface_assets/footer.php:551 msgid "The query description has been updated!" msgstr "Die Beschreibung des Suchmusters wurde aktualisiert!" -#: application/views/interface_assets/footer.php:552 +#: application/views/interface_assets/footer.php:555 msgid "Something went wrong with the save. Please try again!" msgstr "Etwas ist beim Speichern schiefgelaufen. Bitte versuche es erneut!" -#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:678 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -6632,75 +6742,75 @@ msgstr "" "'Federal Republic of Germany'. Wenn du dir sicher bist, ignoriere diese " "Warnung." -#: application/views/interface_assets/footer.php:725 +#: application/views/interface_assets/footer.php:730 #: application/views/logbookadvanced/index.php:511 msgid "Callsign: " msgstr "Rufzeichen: " -#: application/views/interface_assets/footer.php:726 +#: application/views/interface_assets/footer.php:731 msgid "Count: " msgstr "Anzahl: " -#: application/views/interface_assets/footer.php:727 +#: application/views/interface_assets/footer.php:732 msgid "Grids: " msgstr "Planquadrate: " -#: application/views/interface_assets/footer.php:1162 +#: application/views/interface_assets/footer.php:1167 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "Du bist nicht eingeloggt. Bitte %slogge dich ein%s" -#: application/views/interface_assets/footer.php:1368 -#: application/views/interface_assets/footer.php:1372 -#: application/views/interface_assets/footer.php:1375 -#: application/views/interface_assets/footer.php:1512 -#: application/views/interface_assets/footer.php:1516 -#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 msgid "grid square" msgstr "Planquadrate" -#: application/views/interface_assets/footer.php:1375 -#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 msgid "Total count" msgstr "Summe" -#: application/views/interface_assets/footer.php:2106 +#: application/views/interface_assets/footer.php:2111 msgid "QSL Card for " msgstr "QSL-Karte für " -#: application/views/interface_assets/footer.php:2126 +#: application/views/interface_assets/footer.php:2131 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Warnung! Bist du sicher, dass du diese QSL-Karte löschen möchtest?" -#: application/views/interface_assets/footer.php:2166 +#: application/views/interface_assets/footer.php:2171 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "eQSL-Karte" -#: application/views/interface_assets/footer.php:2168 +#: application/views/interface_assets/footer.php:2173 msgid "eQSL Card for " msgstr "eQSL-Karte für " -#: application/views/interface_assets/footer.php:2341 -#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 #: application/views/view_log/qso.php:604 msgid "QSL image file" msgstr "QSL-Bilddatei" -#: application/views/interface_assets/footer.php:2360 +#: application/views/interface_assets/footer.php:2365 msgid "Front QSL Card:" msgstr "Vorderseite QSL-Karte:" -#: application/views/interface_assets/footer.php:2398 +#: application/views/interface_assets/footer.php:2403 msgid "Back QSL Card:" msgstr "Rückseite QSL-Karte:" -#: application/views/interface_assets/footer.php:2409 -#: application/views/interface_assets/footer.php:2434 +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 msgid "Add additional QSOs to a QSL Card" msgstr "Weitere QSOs zu einer QSL-Karte hinzufügen" -#: application/views/interface_assets/footer.php:2445 +#: application/views/interface_assets/footer.php:2450 msgid "Something went wrong. Please try again!" msgstr "Etwas ist schiefgelaufen. Bitte versuche es erneut!" @@ -7297,18 +7407,18 @@ msgstr "QSL gesendet" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:209 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:236 -#: application/views/station_profile/create.php:275 -#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 #: application/views/station_profile/create.php:293 -#: application/views/station_profile/edit.php:350 -#: application/views/station_profile/edit.php:358 -#: application/views/station_profile/edit.php:384 -#: application/views/station_profile/edit.php:405 -#: application/views/station_profile/edit.php:423 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 #: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 #: application/views/user/edit.php:347 application/views/user/edit.php:358 #: application/views/user/edit.php:369 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:399 @@ -7335,18 +7445,18 @@ msgstr "Ja" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:210 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:237 -#: application/views/station_profile/create.php:276 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/create.php:292 -#: application/views/station_profile/edit.php:351 -#: application/views/station_profile/edit.php:359 -#: application/views/station_profile/edit.php:385 -#: application/views/station_profile/edit.php:406 -#: application/views/station_profile/edit.php:424 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 #: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 #: application/views/user/edit.php:348 application/views/user/edit.php:359 #: application/views/user/edit.php:370 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:400 @@ -7668,7 +7778,7 @@ msgstr "# Resultate" #: application/views/logbookadvanced/index.php:505 #: application/views/qso/index.php:272 -#: application/views/station_profile/edit.php:85 +#: application/views/station_profile/edit.php:92 msgid "Location" msgstr "Standort" @@ -7837,60 +7947,60 @@ msgstr "Verfügbare Zertifikate" msgid "Upload Certificate" msgstr "Zertifikats-Upload" -#: application/views/lotw_views/index.php:41 +#: application/views/lotw_views/index.php:37 msgid "QSO Start Date" msgstr "QSO Startdatum" -#: application/views/lotw_views/index.php:42 +#: application/views/lotw_views/index.php:38 msgid "QSO End Date" msgstr "QSO Enddatum" -#: application/views/lotw_views/index.php:43 +#: application/views/lotw_views/index.php:39 msgid "Date Created" msgstr "Ausstellungsdatum" -#: application/views/lotw_views/index.php:44 +#: application/views/lotw_views/index.php:40 msgid "Date Expires" msgstr "Ablaufdatum" -#: application/views/lotw_views/index.php:46 +#: application/views/lotw_views/index.php:42 #: application/views/view_log/qso.php:404 msgid "Last Upload" msgstr "Letzter Upload" -#: application/views/lotw_views/index.php:91 +#: application/views/lotw_views/index.php:87 msgid "Expired" msgstr "Abgelaufen" -#: application/views/lotw_views/index.php:93 +#: application/views/lotw_views/index.php:89 msgid "Expiring" msgstr "Läuft ab" -#: application/views/lotw_views/index.php:105 +#: application/views/lotw_views/index.php:101 #, php-format msgid "Last success: %s" msgstr "Letzter Erfolg: %s" -#: application/views/lotw_views/index.php:108 +#: application/views/lotw_views/index.php:104 #, php-format msgid "Last fail: %s" msgstr "Letzer Fehlversuch: %s" -#: application/views/lotw_views/index.php:114 +#: application/views/lotw_views/index.php:110 msgid "Not Synced" msgstr "Nicht synchronisiert" -#: application/views/lotw_views/index.php:129 +#: application/views/lotw_views/index.php:125 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" "Du musst mindestens ein LoTW-p12-Zertifikat hochladen, um diesen Bereich " "nutzen zu können." -#: application/views/lotw_views/index.php:144 +#: application/views/lotw_views/index.php:140 msgid "Information" msgstr "Information" -#: application/views/lotw_views/index.php:149 +#: application/views/lotw_views/index.php:145 msgid "Manual Sync" msgstr "Manuelle Synchronisation" @@ -8454,7 +8564,7 @@ msgstr "Gibt es weitere Informationen, über die wir Bescheid wissen sollten?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:64 #: application/views/oqrs/showrequests.php:87 -#: application/views/user/main.php:48 application/views/user/profile.php:24 +#: application/views/user/index.php:48 application/views/user/profile.php:24 msgid "E-mail" msgstr "E-Mail" @@ -8793,35 +8903,20 @@ msgstr "" "Es wurden keine zusätzlichen QSO's gefunden. Das bedeutet, dass diese " "wahrscheinlich schon in der Warteschlange stehen." -#: application/views/qso/components/winkeysettings.php:7 -#: application/views/qso/components/winkeysettings_results.php:7 -msgid "Winkey Macros" -msgstr "Winkey Macros" - -#: application/views/qso/components/winkeysettings.php:12 -#: application/views/qso/components/winkeysettings.php:28 -#: application/views/qso/components/winkeysettings.php:44 -#: application/views/qso/components/winkeysettings.php:60 -#: application/views/qso/components/winkeysettings.php:76 -#: application/views/qso/components/winkeysettings_results.php:12 -#: application/views/qso/components/winkeysettings_results.php:28 -#: application/views/qso/components/winkeysettings_results.php:44 -#: application/views/qso/components/winkeysettings_results.php:60 -#: application/views/qso/components/winkeysettings_results.php:76 -#, php-format -msgid "Function %d - Name" -msgstr "Funktion %d - Name" - +#: application/views/qso/components/winkeysettings.php:3 #: application/views/qso/components/winkeysettings.php:19 #: application/views/qso/components/winkeysettings.php:35 #: application/views/qso/components/winkeysettings.php:51 #: application/views/qso/components/winkeysettings.php:67 -#: application/views/qso/components/winkeysettings.php:83 -#: application/views/qso/components/winkeysettings_results.php:19 -#: application/views/qso/components/winkeysettings_results.php:35 -#: application/views/qso/components/winkeysettings_results.php:51 -#: application/views/qso/components/winkeysettings_results.php:67 -#: application/views/qso/components/winkeysettings_results.php:83 +#, php-format +msgid "Function %d - Name" +msgstr "Funktion %d - Name" + +#: application/views/qso/components/winkeysettings.php:10 +#: application/views/qso/components/winkeysettings.php:26 +#: application/views/qso/components/winkeysettings.php:42 +#: application/views/qso/components/winkeysettings.php:58 +#: application/views/qso/components/winkeysettings.php:74 #, php-format msgid "Function %d - Macro" msgstr "Funktion %d - Makro" @@ -8942,7 +9037,7 @@ msgstr "Änderungen speichern" msgid "TimeOff is less than TimeOn" msgstr "Endzeit ist vor der Startzeit" -#: application/views/qso/index.php:5 application/views/qso/index.php:694 +#: application/views/qso/index.php:5 application/views/qso/index.php:690 msgid "Previous Contacts" msgstr "Vorherige Kontakte" @@ -8983,16 +9078,16 @@ msgid "Search DXCluster for latest Spot" msgstr "Suche im DX-Cluster nach letztem Spot" #: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:149 -#: application/views/station_profile/edit.php:211 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 #: application/views/user/edit.php:583 application/views/view_log/qso.php:282 #: application/views/view_log/qso.php:549 msgid "IOTA Reference" msgstr "IOTA-Referenznummer" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:165 -#: application/views/station_profile/edit.php:239 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 #: application/views/user/edit.php:587 application/views/view_log/qso.php:289 #: application/views/view_log/qso.php:556 msgid "SOTA Reference" @@ -9058,15 +9153,19 @@ msgstr "Winkey" msgid "Connect" msgstr "Verbinden" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "Senden" + +#: application/views/qso/index.php:673 msgid "Suggestions" msgstr "Vorschläge" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:680 msgid "Profile Picture" msgstr "Profilbild" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:704 msgid "Max. 5 previous contacts are shown" msgstr "Es werden maximal 5 Kontakte angezeigt" @@ -9699,118 +9798,118 @@ msgstr "" "Eine vollständige Zusammenfassung aller Befehle und der notwendigen Syntax " "findest du in %sdiesem Artikel%s unseres Wikis." -#: application/views/station_profile/create.php:51 -#: application/views/station_profile/edit.php:60 +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 msgid "Location Name" msgstr "Name des Standorts" -#: application/views/station_profile/create.php:52 -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:62 +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "Heimat-QTH" -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:62 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "Kurzbezeichnung für den Stationsstandort. Zum Beispiel: %s" -#: application/views/station_profile/create.php:59 -#: application/views/station_profile/edit.php:68 +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 msgid "Station callsign. For example: 4W7EST/P" msgstr "Stationsrufzeichen. Zum Beispiel: 4W7EST/P" -#: application/views/station_profile/create.php:63 -#: application/views/station_profile/edit.php:72 +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 msgid "Station Power (W)" msgstr "Sendeleistung der Station (W)" -#: application/views/station_profile/create.php:65 -#: application/views/station_profile/edit.php:74 +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" "Standardmässig eingestellte Sendeleistung in Watt. Wird von CAT-Daten " "überschrieben." -#: application/views/station_profile/create.php:68 -#: application/views/station_profile/edit.php:89 +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 msgid "Station DXCC" msgstr "Stations-DXCC" -#: application/views/station_profile/create.php:71 -#: application/views/station_profile/edit.php:92 +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 msgctxt "DXCC selection" msgid "None" msgstr "Nichts" -#: application/views/station_profile/create.php:78 -#: application/views/station_profile/edit.php:105 +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 msgid "Station DXCC entity. For example: Bolivia" msgstr "Stations DXCC-Entität. Zum Beispiel: Bolivien" -#: application/views/station_profile/create.php:83 -#: application/views/station_profile/edit.php:111 +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 msgid "Station City" msgstr "Station Stadt" -#: application/views/station_profile/create.php:85 -#: application/views/station_profile/edit.php:113 +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 msgid "Station city. For example: Oslo" msgstr "Stations Stadt. Zum Beispiel: Oslo" -#: application/views/station_profile/create.php:94 -#: application/views/station_profile/edit.php:125 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:132 msgid "Station state. Applies to certain countries only." msgstr "Stations Staat. Ist nur für ausgewählte Länder verfügbar." -#: application/views/station_profile/create.php:99 -#: application/views/station_profile/edit.php:130 +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 msgid "Station County" msgstr "Stations County" -#: application/views/station_profile/create.php:101 -#: application/views/station_profile/edit.php:132 +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "Station County (Nur für USA/Alaska/Hawaii)." -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/edit.php:158 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "Falls du deine CQ Zone nicht kennst %s um es herauszufinden!" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:158 -#: application/views/station_profile/edit.php:175 -#: application/views/station_profile/edit.php:199 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 msgid "click here" msgstr "klicke hier" -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/edit.php:175 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "Falls du deine ITU-Zone nicht kennst %s um es herauszufinden!" -#: application/views/station_profile/create.php:135 -#: application/views/station_profile/edit.php:187 -#: application/views/station_profile/edit.php:190 +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 msgid "Station Gridsquare" msgstr "Planquadrat der Station" -#: application/views/station_profile/create.php:140 -#: application/views/station_profile/edit.php:195 +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 msgid "Get Gridsquare" msgstr "Orte mein Planquadrat" -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:199 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 #, php-format msgctxt "uses 'click here'" msgid "" @@ -9820,8 +9919,8 @@ msgstr "" "Stations Planquadrat. Zum Beispiel: HM45AP. Falls du deinen Locator nicht " "kennst %s!" -#: application/views/station_profile/create.php:145 -#: application/views/station_profile/edit.php:200 +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." @@ -9829,53 +9928,53 @@ msgstr "" "Wenn du genau auf der Linie eines Planquadrates bist kannst du mehrere " "Planquadrate mit Kommas getrennt eingeben. Zum Beispiel: IO77,IO78,IO87,IO88." -#: application/views/station_profile/create.php:160 -#: application/views/station_profile/edit.php:225 +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 msgid "Station IOTA reference. For example: EU-005" msgstr "IOTA Referenznummer der Station. Zum Beispiel: EU-005" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:226 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 msgid "IOTA World website" msgstr "IOTA World Webseite" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:226 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 #, php-format msgid "You can look up IOTA references at the %s." msgstr "Du kannst IOTA-Referenzen auf der %s nachschauen." -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:241 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 msgid "SOTA Maps website" msgstr "SOTA Karten Webseite" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:241 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" "Stations-SOTA-Referenz. Du kannst SOTA-Referenzen auf der %s nachschauen." -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:254 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 msgid "GMA Map website" msgstr "GMA-Kartenseite" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:254 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" "Stations-WWFF-Referenz. Du kannst WWFF Referenzen auf der %s nachschauen." -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:267 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 msgid "POTA Map website" msgstr "POTA-Karten-Webseite" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:267 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 #, php-format msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " @@ -9884,44 +9983,44 @@ msgstr "" "Stations-POTA-Referenzen. Es sind mehrere Referenzen durch Komma separiert " "erlaubt. Du kannst POTA Referenzen auf der %s nachschauen." -#: application/views/station_profile/create.php:183 -#: application/views/station_profile/edit.php:280 +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 msgid "Signature Name" msgstr "Signatur-Bezeichnung" -#: application/views/station_profile/create.php:185 -#: application/views/station_profile/edit.php:282 +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 msgid "Station Signature (e.g. GMA).." msgstr "Signatur/Referenz der Station (z.B. GMA).." -#: application/views/station_profile/create.php:189 -#: application/views/station_profile/edit.php:286 +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 msgid "Signature Information" msgstr "Signatur-Information" -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/edit.php:288 +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "Signatur/Referenz-Information der Station (z.B. DA/NW-357)." -#: application/views/station_profile/create.php:195 -#: application/views/station_profile/edit.php:301 +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "eQSL-QTH-Nickname" -#: application/views/station_profile/create.php:197 -#: application/views/station_profile/edit.php:303 +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "Der 'QTH-Nickname' wie er in deinem eQSL Profil konfiguriert ist" -#: application/views/station_profile/create.php:201 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 msgid "Default QSLMSG" msgstr "Standard-QSLMSG" -#: application/views/station_profile/create.php:204 -#: application/views/station_profile/edit.php:309 +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." @@ -9929,13 +10028,13 @@ msgstr "" "Definiere eine Standard-Nachricht, welche für jedes QSO in diesem " "Stationsstandort an eQSL übertragen wird." -#: application/views/station_profile/create.php:207 -#: application/views/station_profile/edit.php:348 +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 msgid "Ignore Clublog Upload" msgstr "Ignoriere Clublog-Upload" -#: application/views/station_profile/create.php:212 -#: application/views/station_profile/edit.php:353 +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " "Clublog. If this is deactivated on it's own please check if the Call is " @@ -9946,136 +10045,136 @@ msgstr "" "deaktiviert springt, bitte bei Clublog die Einstellungen für diesen Call " "überprüfen" -#: application/views/station_profile/create.php:215 -#: application/views/station_profile/edit.php:356 +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 msgid "ClubLog Realtime Upload" msgstr "Clublog-Echtzeit-Upload" -#: application/views/station_profile/create.php:224 -#: application/views/station_profile/edit.php:372 +#: application/views/station_profile/create.php:231 +#: application/views/station_profile/edit.php:379 msgid "HRDLog.net Username" msgstr "HRDLog.net Benutzername" -#: application/views/station_profile/create.php:226 -#: application/views/station_profile/edit.php:374 +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" "Der Benutzername mit dem du bei HRDlog.net registriert bist (normalerweise " "dein Rufzeichen)." -#: application/views/station_profile/create.php:229 -#: application/views/station_profile/edit.php:377 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 msgid "HRDLog.net API Key" msgstr "HRDLog.net API-Schlüssel" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:379 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "Erstelle deinen API-Code auf deiner %s" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:379 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 msgid "HRDLog.net Userprofile page" msgstr "HRDlog.net Benutzerprofil-Seite" -#: application/views/station_profile/create.php:234 -#: application/views/station_profile/edit.php:382 +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 msgid "HRDLog.net Logbook Realtime Upload" msgstr "HRDLog.net Logbuch-Echtzeit-Upload" -#: application/views/station_profile/create.php:243 -#: application/views/station_profile/edit.php:317 +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 msgid "Subscription Required" msgstr "Abonnement erforderlich" -#: application/views/station_profile/create.php:248 +#: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "QRZ.com-Logbuch API-Schlüssel" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "Teste API-Schlüssel" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:326 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "Finde deinen API-Schlüssel auf %s" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:326 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 msgid "the QRZ.com Logbook settings page" msgstr "der QRZ.com Logbuch-Einstellungen Seite" -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/edit.php:330 +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 msgid "QRZ.com Logbook Upload" msgstr "QRZ.com Logbuch-Upload" -#: application/views/station_profile/create.php:260 -#: application/views/station_profile/edit.php:333 +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 msgid "Realtime" msgstr "Echtzeit" -#: application/views/station_profile/create.php:268 -#: application/views/station_profile/edit.php:398 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "QO-100 Dx Club API-Schlüssel" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:400 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "Erstelle deinen API-Schlüssel auf deiner %s" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:400 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 msgid "QO-100 Dx Club's profile page" msgstr "QO-100 Dx Club Profil-Seite" -#: application/views/station_profile/create.php:273 -#: application/views/station_profile/edit.php:403 +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 msgid "QO-100 Dx Club Realtime Upload" msgstr "QO-100 Dx Club Echtzeit-Upload" -#: application/views/station_profile/create.php:283 -#: application/views/station_profile/edit.php:421 +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 msgid "OQRS Enabled" msgstr "OQRS aktivieren" -#: application/views/station_profile/create.php:290 -#: application/views/station_profile/edit.php:428 +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 msgid "OQRS Email alert" msgstr "OQRS Email-Benachrichtigung" -#: application/views/station_profile/create.php:295 -#: application/views/station_profile/edit.php:433 +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 msgid "Make sure email is set up under admin and global options." msgstr "" "Stelle sicher, dass du E-Mail unter Admin/Globale Optionen konfiguriert hast." -#: application/views/station_profile/create.php:298 -#: application/views/station_profile/edit.php:436 +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 msgid "OQRS Text" msgstr "OQRS-Text" -#: application/views/station_profile/create.php:300 -#: application/views/station_profile/edit.php:438 +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 msgid "Some info you want to add regarding QSL'ing." msgstr "Einige Informationen, die du zum QSL-Vorgang hinzufügen möchtest." -#: application/views/station_profile/edit.php:142 +#: application/views/station_profile/edit.php:149 msgid "Zones" msgstr "Zonen" -#: application/views/station_profile/edit.php:277 +#: application/views/station_profile/edit.php:284 msgid "Signature" msgstr "Signaturen" @@ -10554,7 +10653,7 @@ msgstr "" msgid "Check QSOs missing DXCC data" msgstr "Überprüft QSOs auf fehlende DXCC-Daten" -#: application/views/update/index.php:42 +#: application/views/update/index.php:42 application/views/update/index.php:62 msgid "Re-check all QSOs in logbook" msgstr "Alle QSOs in Logbuch nochmal überprüfen" @@ -10583,6 +10682,16 @@ msgstr "" msgid "Update distance data" msgstr "Entfernungsdaten aktualisieren" +#: application/views/update/index.php:61 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" +"Verwende die folgende Schaltfläche, um die Entfernungsinformationen für alle " +"deine QSOs zu aktualisieren. Je nach Anzahl der QSOs kann dies einige Zeit " +"in Anspruch nehmen. Bitte habe etwas Geduld." + #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "Benutzerkonto löschen" @@ -11016,6 +11125,134 @@ msgstr "Passwort vergessen?" msgid "You can reset your password here." msgstr "Du kannst dein Passwort hier zurücksetzen." +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" +"Willst du wirklich diesem Benutzer eine E-Mail zum Passwort-Reset senden?" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "Bitte warten..." + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "Password-Reset E-Mail an diesen Benutzer gesendet:" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "Benutzerliste" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "" +"Es muss mindestens ein Benutzer konfiguriert sein, damit Wavelog " +"funktioniert." + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" +"Benutzer können verschiedene Rollen zugewiesen bekommen, die ihnen " +"unterschiedliche Rechte geben wie QSOs zum Logbuch hinzuzufügen und die APIs " +"von Wavelog zu benutzen." + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" +"Der aktuell angemeldete Benutzer wird oben rechts auf jeder Seite angezeigt." + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" +"Mit dem Passwort-Reset-Knopf kannst du dem Benutzer eine E-Mail mit einem " +"Passwort-Reset-Link zuschicken. Dafür müssen die E-Mail Einstellungen in den " +"globalen Optionen korrekt eingerichtet sein." + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "Benutzer anlegen" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "Aktualisiere Liste" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "Typ" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "Zuletzt gesehen" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "Passwort zurücksetzen" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "Imitieren" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "Nie" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "Standorte" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "Logbücher" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "Letztes QSO:" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "Keine QSOs im Log" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "Benutzer imitieren" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" +"Du bist dabei, einen anderen Benutzer zu imitieren. Um zu deinem Admin-Konto " +"zurückzukehren, musst du dich abmelden und erneut als Admin anmelden." + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "Möchtest du diesen Benutzer imitieren?" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "Benutzername:" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "Name:" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "Rufzeichen:" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "E-Mail:" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "Zuletzt gesehen:" + #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" msgstr "WARTUNGSMODUS" @@ -11041,94 +11278,6 @@ msgstr "Passwort vergessen?" msgid "Keep me logged in" msgstr "Angemeldet bleiben" -#: application/views/user/main.php:2 -msgid "Do you really want to send this user a password-reset link?" -msgstr "" -"Willst du wirklich diesem Benutzer eine E-Mail zum Passwort-Reset senden?" - -#: application/views/user/main.php:6 -msgid "Please Wait ..." -msgstr "Bitte warten..." - -#: application/views/user/main.php:9 -msgid "Password-reset e-mail sent to user:" -msgstr "Password-Reset E-Mail an diesen Benutzer gesendet:" - -#: application/views/user/main.php:30 -msgid "User List" -msgstr "Benutzerliste" - -#: application/views/user/main.php:33 -msgid "Wavelog needs at least one user configured in order to operate." -msgstr "" -"Es muss mindestens ein Benutzer konfiguriert sein, damit Wavelog " -"funktioniert." - -#: application/views/user/main.php:34 -msgid "" -"Users can be assigned roles which give them different permissions, such as " -"adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "" -"Benutzer können verschiedene Rollen zugewiesen bekommen, die ihnen " -"unterschiedliche Rechte geben wie QSOs zum Logbuch hinzuzufügen und die APIs " -"von Wavelog zu benutzen." - -#: application/views/user/main.php:35 -msgid "" -"The currently logged-in user is displayed at the upper-right of each page." -msgstr "" -"Der aktuell angemeldete Benutzer wird oben rechts auf jeder Seite angezeigt." - -#: application/views/user/main.php:36 -msgid "" -"With the password reset button, you can send a user an email containing a " -"link to reset their password. To achieve this, ensure that the email " -"settings in the global options are configured correctly." -msgstr "" -"Mit dem Passwort-Reset-Knopf kannst du dem Benutzer eine E-Mail mit einem " -"Passwort-Reset-Link zuschicken. Dafür müssen die E-Mail Einstellungen in den " -"globalen Optionen korrekt eingerichtet sein." - -#: application/views/user/main.php:38 -msgid "Create user" -msgstr "Benutzer anlegen" - -#: application/views/user/main.php:39 -msgid "Refresh List" -msgstr "Aktualisiere Liste" - -#: application/views/user/main.php:49 -msgid "Type" -msgstr "Typ" - -#: application/views/user/main.php:50 -msgid "Last seen" -msgstr "Zuletzt gesehen" - -#: application/views/user/main.php:53 -msgid "Password Reset" -msgstr "Passwort zurücksetzen" - -#: application/views/user/main.php:79 -msgid "Never" -msgstr "Nie" - -#: application/views/user/main.php:83 -msgid "Locations" -msgstr "Standorte" - -#: application/views/user/main.php:85 -msgid "Logbooks" -msgstr "Logbücher" - -#: application/views/user/main.php:87 -msgid "Last QSO:" -msgstr "Letztes QSO:" - -#: application/views/user/main.php:89 -msgid "No QSOs in Log" -msgstr "Keine QSOs im Log" - #: application/views/user/profile.php:19 msgid "Level" msgstr "Benutzerrolle" @@ -11397,6 +11546,9 @@ msgstr "Dein Rufzeichen:" msgid "Submit Request" msgstr "Anfrage senden" +#~ msgid "Winkey Macros" +#~ msgstr "Winkey Macros" + #~ msgid "User logged in" #~ msgstr "Benutzer eingeloggt" diff --git a/application/locale/el_GR/LC_MESSAGES/messages.po b/application/locale/el_GR/LC_MESSAGES/messages.po index 401cab4cc..5be13e910 100644 --- a/application/locale/el_GR/LC_MESSAGES/messages.po +++ b/application/locale/el_GR/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-17 17:16+0000\n" +"POT-Creation-Date: 2024-08-21 15:06+0000\n" "PO-Revision-Date: 2024-08-17 10:47+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Greek , 2024. +# "Francisco (F4VSE)" , 2024. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-17 17:16+0000\n" -"PO-Revision-Date: 2024-08-17 10:47+0000\n" -"Last-Translator: CieNTi \n" +"POT-Creation-Date: 2024-08-21 15:06+0000\n" +"PO-Revision-Date: 2024-08-18 19:11+0000\n" +"Last-Translator: \"Francisco (F4VSE)\" \n" "Language-Team: Spanish \n" "Language: es_ES\n" @@ -16,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.6.2\n" +"X-Generator: Weblate 5.7\n" #: application/controllers/Accumulated.php:13 #: application/controllers/Activators.php:13 @@ -48,8 +49,8 @@ msgstr "" #: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 #: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 #: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:348 -#: application/controllers/Eqsl.php:411 application/controllers/Eqsl.php:427 -#: application/controllers/Eqsl.php:487 application/controllers/Hamsat.php:13 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 application/controllers/Hamsat.php:13 #: application/controllers/Kmlexport.php:18 #: application/controllers/Kmlexport.php:33 #: application/controllers/Labels.php:26 @@ -57,17 +58,17 @@ msgstr "" #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 #: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 #: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 -#: application/controllers/Lotw.php:712 application/controllers/Lotw.php:820 -#: application/controllers/Lotw.php:828 application/controllers/Mode.php:15 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 #: application/controllers/Notes.php:10 application/controllers/Options.php:15 #: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 #: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 #: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 #: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 #: application/controllers/Qso.php:9 application/controllers/Qso.php:19 -#: application/controllers/Qso.php:176 application/controllers/Qso.php:279 -#: application/controllers/Qso.php:299 application/controllers/Qso.php:308 -#: application/controllers/Qso.php:603 application/controllers/Radio.php:259 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:599 application/controllers/Radio.php:259 #: application/controllers/Radio.php:285 application/controllers/Radio.php:301 #: application/controllers/Satellite.php:15 #: application/controllers/Sattimers.php:9 @@ -81,10 +82,11 @@ msgstr "" #: application/controllers/Update.php:24 application/controllers/Update.php:273 #: application/controllers/Update.php:284 #: application/controllers/Update.php:295 -#: application/controllers/Update.php:306 application/controllers/User.php:8 -#: application/controllers/User.php:21 application/controllers/User.php:206 -#: application/controllers/User.php:207 application/controllers/User.php:719 -#: application/controllers/User.php:738 application/controllers/User.php:1021 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 #: application/controllers/User_options.php:9 msgid "You're not allowed to do that!" msgstr "" @@ -105,7 +107,7 @@ msgstr "Mapa de Gridsquares Activados" #: application/controllers/Gridmap.php:31 #: application/controllers/Visitor.php:374 #: application/views/activators/index.php:100 -#: application/views/interface_assets/footer.php:42 +#: application/views/interface_assets/footer.php:43 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "Cuadrículas" @@ -219,7 +221,7 @@ msgid "Key Invalid - either not found or disabled" msgstr "Key Inválida - no se encontró o está desactivada" #: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 +#: application/views/lotw_views/index.php:91 msgid "Valid" msgstr "Válido" @@ -274,7 +276,7 @@ msgstr "DOK" #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 -#: application/views/lotw_views/index.php:40 +#: application/views/lotw_views/index.php:36 #: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 #: application/views/search/cqzones_result.php:15 #: application/views/search/result.php:27 @@ -353,7 +355,7 @@ msgstr " y " #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:336 #: application/views/search/search_result_ajax.php:9 -#: application/views/station_profile/edit.php:236 +#: application/views/station_profile/edit.php:243 #: application/views/user/edit.php:234 application/views/user/edit.php:256 #: application/views/user/edit.php:278 application/views/user/edit.php:300 #: application/views/user/edit.php:323 @@ -374,7 +376,7 @@ msgstr "SOTA" #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:341 #: application/views/search/search_result_ajax.php:10 -#: application/views/station_profile/edit.php:249 +#: application/views/station_profile/edit.php:256 #: application/views/user/edit.php:235 application/views/user/edit.php:257 #: application/views/user/edit.php:279 application/views/user/edit.php:301 #: application/views/user/edit.php:324 @@ -394,7 +396,7 @@ msgstr "WWFF" #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:346 #: application/views/search/search_result_ajax.php:11 -#: application/views/station_profile/edit.php:262 +#: application/views/station_profile/edit.php:269 #: application/views/user/edit.php:236 application/views/user/edit.php:258 #: application/views/user/edit.php:280 application/views/user/edit.php:302 #: application/views/user/edit.php:325 @@ -664,19 +666,19 @@ msgstr "Información de importación de eQSL" msgid "eQSL QSO Upload" msgstr "" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:416 msgid "eQSL Tools" msgstr "Herramientas de eQSL" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid " / Errors: " msgstr " / Errores: " -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid "Successfully downloaded: " msgstr "Descargado satisfactoriamente: " -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:472 msgid "eQSL Card Image Download" msgstr "Descargar Imagen de Tarjeta eQSL" @@ -946,7 +948,7 @@ msgstr "" #: application/views/search/result_search.php:16 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:273 -#: application/views/station_profile/edit.php:298 +#: application/views/station_profile/edit.php:305 #: application/views/timeline/index.php:64 application/views/user/edit.php:564 #: application/views/user/edit.php:667 application/views/user/edit.php:731 msgid "eQSL" @@ -960,7 +962,7 @@ msgstr "" #: application/views/awards/waja/index.php:71 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 -#: application/views/station_profile/edit.php:345 +#: application/views/station_profile/edit.php:352 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 #: application/views/view_log/partial/log_ajax.php:83 @@ -1135,7 +1137,7 @@ msgstr "País" #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:318 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:208 +#: application/views/station_profile/edit.php:215 #: application/views/timeline/index.php:202 application/views/user/edit.php:233 #: application/views/user/edit.php:255 application/views/user/edit.php:277 #: application/views/user/edit.php:299 application/views/user/edit.php:322 @@ -1359,15 +1361,15 @@ msgstr "Operador" #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:675 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:159 #: application/views/lookup/index.php:31 -#: application/views/lotw_views/index.php:56 +#: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 #: 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:98 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 #: application/views/stationsetup/stationsetup.php:150 @@ -1397,23 +1399,50 @@ msgstr "" msgid "Logbook of the World" msgstr "" -#: application/controllers/Lotw.php:610 +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "" + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "" + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "" + +#: application/controllers/Lotw.php:413 +#, php-format +msgid "" +"Found no certificate in file %s. If the filename contains 'key-only' this is " +"typically a certificate request which has not been processed by LoTW yet." +msgstr "" + +#: application/controllers/Lotw.php:617 msgid "LoTW ADIF Information" msgstr "" -#: application/controllers/Lotw.php:718 +#: application/controllers/Lotw.php:725 msgid "LoTW ADIF Import" msgstr "" -#: application/controllers/Lotw.php:830 +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "" + +#: application/controllers/Lotw.php:837 msgid "LoTW .TQ8 Upload" msgstr "" -#: application/controllers/Lotw.php:927 application/controllers/Lotw.php:932 +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "" + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 msgid "LoTW .TQ8 Sent" msgstr "" -#: application/controllers/Lotw.php:939 +#: application/controllers/Lotw.php:946 msgid "LoTW .TQ8 Not Sent" msgstr "" @@ -1580,6 +1609,44 @@ msgstr "" msgid "QRB Calculator" msgstr "" +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "" + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" + #: application/controllers/Qrz.php:173 #: application/views/interface_assets/header.php:426 msgid "QRZ Logbook" @@ -1634,7 +1701,7 @@ msgstr "" #: application/controllers/Radio.php:52 #: application/views/logbookadvanced/index.php:527 -#: application/views/lotw_views/index.php:47 +#: application/views/lotw_views/index.php:43 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:171 #: application/views/stationsetup/exportmapoptions.php:5 @@ -1660,13 +1727,13 @@ msgstr "" #: application/controllers/Radio.php:105 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2329 -#: application/views/interface_assets/footer.php:2347 -#: application/views/interface_assets/footer.php:2368 -#: application/views/interface_assets/footer.php:2386 +#: application/views/interface_assets/footer.php:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:519 -#: application/views/lotw_views/index.php:118 +#: application/views/lotw_views/index.php:114 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 #: application/views/qslcard/index.php:65 @@ -1676,7 +1743,7 @@ msgstr "" #: application/views/stationsetup/stationsetup.php:33 #: application/views/stationsetup/stationsetup.php:137 #: application/views/stationsetup/stationsetup.php:192 -#: application/views/themes/index.php:107 application/views/user/main.php:54 +#: application/views/themes/index.php:107 application/views/user/index.php:57 #: application/views/view_log/qso.php:613 msgid "Delete" msgstr "Eliminar" @@ -1717,6 +1784,7 @@ msgstr "" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 +#: application/views/interface_assets/footer.php:37 #: application/views/interface_assets/header.php:336 #: application/views/interface_assets/header.php:343 #: application/views/logbookadvanced/index.php:516 @@ -1767,8 +1835,8 @@ msgstr "Editar Localización de Estación: " #: application/views/logbookadvanced/edit.php:18 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:447 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 @@ -1833,8 +1901,8 @@ msgstr "" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:259 -#: application/views/station_profile/edit.php:332 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 msgid "Disabled" @@ -1892,15 +1960,15 @@ msgstr "Estación Activa" #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:28 #: application/views/stationsetup/stationsetup.php:161 -#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/user/index.php:90 application/views/user/index.php:92 msgid "QSO" msgstr "" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 -#: application/views/interface_assets/footer.php:538 -#: application/views/interface_assets/footer.php:547 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 #: application/views/labels/index.php:47 application/views/labels/index.php:83 #: application/views/logbookadvanced/index.php:518 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 @@ -1908,7 +1976,7 @@ msgstr "" #: application/views/search/stored_queries.php:21 #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 -#: application/views/themes/index.php:104 application/views/user/main.php:52 +#: application/views/themes/index.php:104 application/views/user/index.php:52 msgid "Edit" msgstr "Editar" @@ -2023,92 +2091,120 @@ msgstr "" msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/User.php:12 +#: application/controllers/User.php:36 #: application/views/interface_assets/header.php:268 msgid "User Accounts" msgstr "Cuentas de Usuario" -#: application/controllers/User.php:52 +#: application/controllers/User.php:76 msgid "Add User" msgstr "" -#: application/controllers/User.php:166 +#: application/controllers/User.php:190 msgid "Users" msgstr "" -#: application/controllers/User.php:240 application/controllers/User.php:673 +#: application/controllers/User.php:264 application/controllers/User.php:697 msgid "Edit User" msgstr "" -#: application/controllers/User.php:665 application/controllers/User.php:668 -#: application/views/user/main.php:3 application/views/user/main.php:46 +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 msgid "User" msgstr "Usuario" -#: application/controllers/User.php:665 application/controllers/User.php:668 +#: application/controllers/User.php:689 application/controllers/User.php:692 msgid "edited" msgstr "editado" -#: application/controllers/User.php:722 +#: application/controllers/User.php:746 msgid "Profile" msgstr "" -#: application/controllers/User.php:779 +#: application/controllers/User.php:803 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." msgstr "" -#: application/controllers/User.php:843 application/controllers/User.php:853 +#: application/controllers/User.php:867 application/controllers/User.php:877 msgid "Login failed. Try again." msgstr "" -#: application/controllers/User.php:860 +#: application/controllers/User.php:884 #: application/views/interface_assets/header.php:356 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:88 msgid "Login" msgstr "Iniciar Sesión" -#: application/controllers/User.php:898 +#: application/controllers/User.php:922 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " "Only administrators are currently allowed to log in." msgstr "" -#: application/controllers/User.php:901 +#: application/controllers/User.php:925 msgid "Incorrect username or password!" msgstr "" -#: application/controllers/User.php:918 +#: application/controllers/User.php:942 #, php-format msgid "User %s logged out." msgstr "" -#: application/controllers/User.php:932 +#: application/controllers/User.php:956 msgid "Password Reset is disabled on the Demo!" msgstr "" -#: application/controllers/User.php:945 +#: application/controllers/User.php:969 msgid "Forgot Password" msgstr "" -#: application/controllers/User.php:995 application/views/user/main.php:8 +#: application/controllers/User.php:1019 application/views/user/index.php:8 msgid "Email settings are incorrect." msgstr "" -#: application/controllers/User.php:999 application/controllers/User.php:1004 +#: application/controllers/User.php:1023 application/controllers/User.php:1028 msgid "Password Reset Processed." msgstr "" -#: application/controllers/User.php:1106 +#: application/controllers/User.php:1129 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "Restablecer Contraseña" +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "" + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "" + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "" + #: application/controllers/Visitor.php:50 #: application/controllers/Visitor.php:79 #: application/controllers/Visitor.php:142 @@ -2394,8 +2490,8 @@ msgstr "" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1441 -#: application/views/interface_assets/footer.php:1580 +#: application/views/interface_assets/footer.php:1446 +#: application/views/interface_assets/footer.php:1585 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 @@ -2627,7 +2723,7 @@ msgstr "" #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 -#: application/views/lotw_views/index.php:39 +#: application/views/lotw_views/index.php:35 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 #: application/views/qslcard/index.php:28 @@ -2642,13 +2738,13 @@ msgstr "" #: application/views/search/lotw_unconfirmed_result.php:6 #: application/views/search/result.php:11 #: application/views/simplefle/index.php:142 -#: application/views/station_profile/edit.php:56 +#: application/views/station_profile/edit.php:63 #: application/views/stationsetup/linkedlocations.php:17 -#: application/views/user/edit.php:123 application/views/user/main.php:4 -#: application/views/user/main.php:47 application/views/user/profile.php:29 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 #: application/views/view_log/qso.php:82 application/views/view_log/qso.php:507 msgid "Callsign" -msgstr "Rufzeichen" +msgstr "Indicativo" #: application/views/activators/index.php:99 msgid "Count" @@ -2908,8 +3004,8 @@ msgstr "" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 -#: application/views/interface_assets/footer.php:498 -#: application/views/interface_assets/footer.php:2125 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 msgid "DANGER" msgstr "PELIGRO" @@ -3091,8 +3187,8 @@ msgstr "" #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 -#: application/views/interface_assets/footer.php:44 -#: application/views/interface_assets/footer.php:533 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -3100,8 +3196,6 @@ msgstr "" #: application/views/options/oqrs.php:63 #: application/views/options/radios.php:45 #: application/views/options/version_dialog.php:78 -#: application/views/qso/components/winkeysettings.php:90 -#: application/views/qso/components/winkeysettings_results.php:90 #: application/views/satellite/create.php:70 #: application/views/simplefle/index.php:22 msgid "Save" @@ -3178,7 +3272,7 @@ msgid "Permissions" msgstr "" #: application/views/api/help.php:31 application/views/cron/index.php:52 -#: application/views/lotw_views/index.php:45 +#: application/views/lotw_views/index.php:41 #: application/views/mode/index.php:31 #: application/views/oqrs/showrequests.php:91 #: application/views/sattimers/index.php:39 @@ -3341,8 +3435,8 @@ msgstr "" #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:106 -#: application/views/station_profile/edit.php:146 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 #: application/views/timeline/index.php:231 #: application/views/timeplotter/index.php:44 msgid "CQ Zone" @@ -3386,7 +3480,7 @@ msgstr "" #: application/views/bandmap/list.php:73 #: application/views/dashboard/index.php:245 #: application/views/dashboard/index.php:363 -#: application/views/interface_assets/footer.php:39 +#: application/views/interface_assets/footer.php:40 #: application/views/visitor/index.php:266 msgid "Confirmed" msgstr "Confirmados" @@ -3452,7 +3546,7 @@ msgstr "" #: application/views/awards/cq/index.php:56 #: application/views/awards/itu/index.php:56 -#: application/views/interface_assets/footer.php:2104 +#: application/views/interface_assets/footer.php:2109 #: application/views/qso/edit_ajax.php:378 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -3474,7 +3568,7 @@ msgstr "Tarjeta QSL" #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 msgid "Reset" -msgstr "Reinicializar" +msgstr "Restablecer" #: application/views/awards/cq/index.php:115 msgid "Show CQ Zone Map" @@ -3911,8 +4005,8 @@ msgstr "" #: application/views/logbookadvanced/index.php:251 #: application/views/logbookadvanced/index.php:594 #: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:120 -#: application/views/station_profile/edit.php:163 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 msgid "ITU Zone" msgstr "Zona ITU" @@ -4018,8 +4112,8 @@ msgstr "" #: application/views/awards/pota/index.php:31 #: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:177 -#: application/views/station_profile/edit.php:265 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 #: application/views/user/edit.php:595 application/views/view_log/qso.php:303 #: application/views/view_log/qso.php:570 msgid "POTA Reference(s)" @@ -4276,8 +4370,8 @@ msgstr "" #: application/views/awards/wwff/index.php:31 #: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:171 -#: application/views/station_profile/edit.php:252 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 #: application/views/user/edit.php:591 application/views/view_log/qso.php:296 #: application/views/view_log/qso.php:563 msgid "WWFF Reference" @@ -4467,9 +4561,7 @@ msgstr "Crear una Banda" #: application/views/bands/index.php:152 #: application/views/contesting/add.php:74 -#: application/views/interface_assets/footer.php:43 -#: application/views/qso/components/winkeysettings.php:91 -#: application/views/qso/components/winkeysettings_results.php:91 +#: application/views/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4798,8 +4890,8 @@ msgid "Name of Contest in ADIF-specification" msgstr "Nombre del Concurso en la especificación ADIF" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:48 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "Crear" @@ -4943,8 +5035,8 @@ msgstr "" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:261 -#: application/views/station_profile/edit.php:334 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 msgid "Enabled" @@ -5000,6 +5092,7 @@ msgstr "" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "Cancelar" @@ -5494,11 +5587,11 @@ msgstr "" #: application/views/debug/index.php:27 msgid "Version" -msgstr "" +msgstr "Versión" #: application/views/debug/index.php:31 msgid "Language" -msgstr "" +msgstr "Idioma" #: application/views/debug/index.php:35 msgid "Base URL" @@ -5586,13 +5679,13 @@ msgstr "" #: application/views/debug/index.php:134 application/views/debug/index.php:145 #: application/views/debug/index.php:157 msgid "Success" -msgstr "" +msgstr "Éxito" #: application/views/debug/index.php:114 application/views/debug/index.php:125 #: application/views/debug/index.php:136 application/views/debug/index.php:147 #: application/views/debug/index.php:159 msgid "Failed" -msgstr "" +msgstr "Fallido" #: application/views/debug/index.php:169 msgid "Config Maintenance" @@ -5663,15 +5756,15 @@ msgstr "" #: application/views/debug/index.php:252 application/views/debug/index.php:263 #: application/views/debug/index.php:274 msgid "Installed" -msgstr "" +msgstr "Instalado" #: application/views/debug/index.php:232 application/views/debug/index.php:243 #: application/views/debug/index.php:254 application/views/debug/index.php:265 #: application/views/debug/index.php:276 msgid "Not Installed" -msgstr "" +msgstr "No instalado" -#: application/views/debug/index.php:283 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:649 msgid "Settings" msgstr "" @@ -5728,7 +5821,7 @@ msgstr "" #: application/views/debug/index.php:506 application/views/debug/index.php:511 #: application/views/debug/index.php:516 application/views/debug/index.php:521 #: application/views/debug/index.php:526 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/edit.php:49 msgid "Update" msgstr "Actualizar" @@ -5770,8 +5863,8 @@ msgstr[1] "" #: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:57 -#: application/views/station_profile/edit.php:66 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" @@ -5800,87 +5893,87 @@ msgstr "" #: application/views/debug/index.php:629 msgid "Albanian" -msgstr "" +msgstr "Albanés" #: application/views/debug/index.php:630 msgid "Bosnian" -msgstr "" +msgstr "Bosnio" #: application/views/debug/index.php:631 msgid "Bulgarian" -msgstr "" +msgstr "Búlgaro" #: application/views/debug/index.php:632 msgid "Chinese (Simplified)" -msgstr "" +msgstr "Chino (Simplificado)" #: application/views/debug/index.php:633 msgid "Croatian" -msgstr "" +msgstr "Croata" #: application/views/debug/index.php:634 msgid "Czech" -msgstr "" +msgstr "Checo" #: application/views/debug/index.php:635 msgid "Dutch" -msgstr "" +msgstr "Holandés" #: application/views/debug/index.php:636 msgid "English" -msgstr "" +msgstr "Inglés" #: application/views/debug/index.php:637 msgid "Finnish" -msgstr "" +msgstr "Finlandés" #: application/views/debug/index.php:638 msgid "French" -msgstr "" +msgstr "Francés" #: application/views/debug/index.php:639 msgid "German" -msgstr "" +msgstr "Alemán" #: application/views/debug/index.php:640 msgid "Greek" -msgstr "" +msgstr "Griego" #: application/views/debug/index.php:641 msgid "Italian" -msgstr "" +msgstr "Italiano" #: application/views/debug/index.php:642 msgid "Montenegrin" -msgstr "" +msgstr "Montenegrino" #: application/views/debug/index.php:643 msgid "Polish" -msgstr "" +msgstr "Polaco" #: application/views/debug/index.php:644 msgid "Portuguese" -msgstr "" +msgstr "Portugués" #: application/views/debug/index.php:645 msgid "Russian" -msgstr "" +msgstr "Ruso" #: application/views/debug/index.php:646 msgid "Serbian" -msgstr "" +msgstr "Serbio" #: application/views/debug/index.php:647 msgid "Spanish" -msgstr "" +msgstr "Español" #: application/views/debug/index.php:648 msgid "Swedish" -msgstr "" +msgstr "Sueco" #: application/views/debug/index.php:649 msgid "Turkish" -msgstr "" +msgstr "Turco" #: application/views/distances/index.php:7 #: application/views/interface_assets/footer.php:30 @@ -6100,10 +6193,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2330 -#: application/views/interface_assets/footer.php:2348 -#: application/views/interface_assets/footer.php:2369 -#: application/views/interface_assets/footer.php:2387 +#: application/views/interface_assets/footer.php:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -6229,187 +6322,195 @@ msgstr "Atención" msgid "OK" msgstr "" -#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/footer.php:38 msgid "Warning! Are you sure you want delete QSO with " msgstr "¡Advertencia! ¿Está seguro que desea eliminar QSOs con " -#: application/views/interface_assets/footer.php:38 +#: application/views/interface_assets/footer.php:39 #: application/views/user/edit.php:493 msgid "Colors" msgstr "Colores" -#: application/views/interface_assets/footer.php:40 +#: application/views/interface_assets/footer.php:41 msgid "Worked not confirmed" msgstr "Trabajados no confirmados" -#: application/views/interface_assets/footer.php:41 +#: application/views/interface_assets/footer.php:42 msgid "Not worked" msgstr "No logrados" -#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:46 #: application/views/qso/index.php:601 #: application/views/visitor/layout/footer.php:245 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:46 +#: application/views/interface_assets/footer.php:47 #: application/views/qso/edit_ajax.php:211 #: application/views/qso/edit_ajax.php:512 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "" -#: application/views/interface_assets/footer.php:47 +#: application/views/interface_assets/footer.php:48 msgid "No states for this DXCC available" msgstr "" -#: application/views/interface_assets/footer.php:129 +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "" + +#: application/views/interface_assets/footer.php:132 #: application/views/interface_assets/header.php:434 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "Información de Versión" -#: application/views/interface_assets/footer.php:395 +#: application/views/interface_assets/footer.php:398 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:398 +#: application/views/interface_assets/footer.php:401 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:414 +#: application/views/interface_assets/footer.php:417 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:416 +#: application/views/interface_assets/footer.php:419 #: application/views/search/filter.php:46 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:418 +#: application/views/interface_assets/footer.php:421 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:423 +#: application/views/interface_assets/footer.php:426 #: application/views/search/filter.php:60 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:435 -#: application/views/interface_assets/footer.php:564 -#: application/views/interface_assets/footer.php:628 +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:440 -#: application/views/interface_assets/footer.php:633 +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:461 -#: application/views/interface_assets/footer.php:592 +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 #: application/views/search/filter.php:79 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:499 +#: application/views/interface_assets/footer.php:502 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:513 +#: application/views/interface_assets/footer.php:516 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:522 +#: application/views/interface_assets/footer.php:525 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:548 +#: application/views/interface_assets/footer.php:551 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:552 +#: application/views/interface_assets/footer.php:555 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:678 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -"Deténgase un momento. El DXCC escogido está desactualizado y ya no es " -"válido. Revise cuál DXCC es el correcto para su localización particular. Si " -"está totalmente seguro, ignore esta advertencia." +"Deténgase aquí un momento. Su DXCC elegido está obsoleto y ya no es válido. " +"Comprueba cuál es el DXCC correcto para esta localización en particular. Si " +"está seguro, ignore esta advertencia." -#: application/views/interface_assets/footer.php:725 +#: application/views/interface_assets/footer.php:730 #: application/views/logbookadvanced/index.php:511 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:726 +#: application/views/interface_assets/footer.php:731 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:727 +#: application/views/interface_assets/footer.php:732 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1162 +#: application/views/interface_assets/footer.php:1167 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "" -#: application/views/interface_assets/footer.php:1368 -#: application/views/interface_assets/footer.php:1372 -#: application/views/interface_assets/footer.php:1375 -#: application/views/interface_assets/footer.php:1512 -#: application/views/interface_assets/footer.php:1516 -#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 msgid "grid square" msgstr "grid squares" -#: application/views/interface_assets/footer.php:1375 -#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 msgid "Total count" msgstr "Cuenta total" -#: application/views/interface_assets/footer.php:2106 +#: application/views/interface_assets/footer.php:2111 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2126 +#: application/views/interface_assets/footer.php:2131 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2166 +#: application/views/interface_assets/footer.php:2171 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "Tarjeta eQSL" -#: application/views/interface_assets/footer.php:2168 +#: application/views/interface_assets/footer.php:2173 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2341 -#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 #: application/views/view_log/qso.php:604 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2360 +#: application/views/interface_assets/footer.php:2365 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2398 +#: application/views/interface_assets/footer.php:2403 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2409 -#: application/views/interface_assets/footer.php:2434 +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2445 +#: application/views/interface_assets/footer.php:2450 msgid "Something went wrong. Please try again!" msgstr "" @@ -7000,18 +7101,18 @@ msgstr "QSL enviadas" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:209 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:236 -#: application/views/station_profile/create.php:275 -#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 #: application/views/station_profile/create.php:293 -#: application/views/station_profile/edit.php:350 -#: application/views/station_profile/edit.php:358 -#: application/views/station_profile/edit.php:384 -#: application/views/station_profile/edit.php:405 -#: application/views/station_profile/edit.php:423 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 #: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 #: application/views/user/edit.php:347 application/views/user/edit.php:358 #: application/views/user/edit.php:369 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:399 @@ -7019,7 +7120,7 @@ msgstr "QSL enviadas" #: application/views/user/edit.php:540 application/views/user/edit.php:802 #: application/views/user/edit.php:834 application/views/user/edit.php:859 msgid "Yes" -msgstr "Si" +msgstr "Sí" #: application/views/logbookadvanced/index.php:306 #: application/views/logbookadvanced/index.php:317 @@ -7038,18 +7139,18 @@ msgstr "Si" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:210 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:237 -#: application/views/station_profile/create.php:276 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/create.php:292 -#: application/views/station_profile/edit.php:351 -#: application/views/station_profile/edit.php:359 -#: application/views/station_profile/edit.php:385 -#: application/views/station_profile/edit.php:406 -#: application/views/station_profile/edit.php:424 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 #: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 #: application/views/user/edit.php:348 application/views/user/edit.php:359 #: application/views/user/edit.php:370 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:400 @@ -7058,7 +7159,7 @@ msgstr "Si" #: application/views/user/edit.php:541 application/views/user/edit.php:803 #: application/views/user/edit.php:833 application/views/user/edit.php:858 msgid "No" -msgstr "" +msgstr "No" #: application/views/logbookadvanced/index.php:308 #: application/views/logbookadvanced/index.php:350 @@ -7371,7 +7472,7 @@ msgstr "No. Resultados" #: application/views/logbookadvanced/index.php:505 #: application/views/qso/index.php:272 -#: application/views/station_profile/edit.php:85 +#: application/views/station_profile/edit.php:92 msgid "Location" msgstr "Localización" @@ -7534,59 +7635,59 @@ msgstr "Certificados disponibles" msgid "Upload Certificate" msgstr "Subir certificado" -#: application/views/lotw_views/index.php:41 +#: application/views/lotw_views/index.php:37 msgid "QSO Start Date" msgstr "Fecha de Inicio de QSO" -#: application/views/lotw_views/index.php:42 +#: application/views/lotw_views/index.php:38 msgid "QSO End Date" msgstr "Fecha Fin de QSO" -#: application/views/lotw_views/index.php:43 +#: application/views/lotw_views/index.php:39 msgid "Date Created" msgstr "Fecha de creación" -#: application/views/lotw_views/index.php:44 +#: application/views/lotw_views/index.php:40 msgid "Date Expires" msgstr "Fecha de caducidad" -#: application/views/lotw_views/index.php:46 +#: application/views/lotw_views/index.php:42 #: application/views/view_log/qso.php:404 msgid "Last Upload" msgstr "Última subida" -#: application/views/lotw_views/index.php:91 +#: application/views/lotw_views/index.php:87 msgid "Expired" msgstr "Caducado" -#: application/views/lotw_views/index.php:93 +#: application/views/lotw_views/index.php:89 msgid "Expiring" msgstr "Caduca pronto" -#: application/views/lotw_views/index.php:105 +#: application/views/lotw_views/index.php:101 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:108 +#: application/views/lotw_views/index.php:104 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:114 +#: application/views/lotw_views/index.php:110 msgid "Not Synced" msgstr "No sincronizado" -#: application/views/lotw_views/index.php:129 +#: application/views/lotw_views/index.php:125 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" "Es necesario subir algunos certificados p12 de LoTW para usar este área." -#: application/views/lotw_views/index.php:144 +#: application/views/lotw_views/index.php:140 msgid "Information" msgstr "Información" -#: application/views/lotw_views/index.php:149 +#: application/views/lotw_views/index.php:145 msgid "Manual Sync" msgstr "Sincronización manual" @@ -8135,7 +8236,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:64 #: application/views/oqrs/showrequests.php:87 -#: application/views/user/main.php:48 application/views/user/profile.php:24 +#: application/views/user/index.php:48 application/views/user/profile.php:24 msgid "E-mail" msgstr "Email" @@ -8464,35 +8565,20 @@ msgstr "" "No se encontraron QSOs adicionales. Esto significa que probablemente ya " "están en la cola." -#: application/views/qso/components/winkeysettings.php:7 -#: application/views/qso/components/winkeysettings_results.php:7 -msgid "Winkey Macros" -msgstr "" - -#: application/views/qso/components/winkeysettings.php:12 -#: application/views/qso/components/winkeysettings.php:28 -#: application/views/qso/components/winkeysettings.php:44 -#: application/views/qso/components/winkeysettings.php:60 -#: application/views/qso/components/winkeysettings.php:76 -#: application/views/qso/components/winkeysettings_results.php:12 -#: application/views/qso/components/winkeysettings_results.php:28 -#: application/views/qso/components/winkeysettings_results.php:44 -#: application/views/qso/components/winkeysettings_results.php:60 -#: application/views/qso/components/winkeysettings_results.php:76 -#, php-format -msgid "Function %d - Name" -msgstr "" - +#: application/views/qso/components/winkeysettings.php:3 #: application/views/qso/components/winkeysettings.php:19 #: application/views/qso/components/winkeysettings.php:35 #: application/views/qso/components/winkeysettings.php:51 #: application/views/qso/components/winkeysettings.php:67 -#: application/views/qso/components/winkeysettings.php:83 -#: application/views/qso/components/winkeysettings_results.php:19 -#: application/views/qso/components/winkeysettings_results.php:35 -#: application/views/qso/components/winkeysettings_results.php:51 -#: application/views/qso/components/winkeysettings_results.php:67 -#: application/views/qso/components/winkeysettings_results.php:83 +#, php-format +msgid "Function %d - Name" +msgstr "" + +#: application/views/qso/components/winkeysettings.php:10 +#: application/views/qso/components/winkeysettings.php:26 +#: application/views/qso/components/winkeysettings.php:42 +#: application/views/qso/components/winkeysettings.php:58 +#: application/views/qso/components/winkeysettings.php:74 #, php-format msgid "Function %d - Macro" msgstr "" @@ -8612,7 +8698,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "TimeOff es menor que TimeOn" -#: application/views/qso/index.php:5 application/views/qso/index.php:694 +#: application/views/qso/index.php:5 application/views/qso/index.php:690 msgid "Previous Contacts" msgstr "Contactos previos" @@ -8653,16 +8739,16 @@ msgid "Search DXCluster for latest Spot" msgstr "" #: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:149 -#: application/views/station_profile/edit.php:211 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 #: application/views/user/edit.php:583 application/views/view_log/qso.php:282 #: application/views/view_log/qso.php:549 msgid "IOTA Reference" msgstr "Referencia IOTA" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:165 -#: application/views/station_profile/edit.php:239 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 #: application/views/user/edit.php:587 application/views/view_log/qso.php:289 #: application/views/view_log/qso.php:556 msgid "SOTA Reference" @@ -8728,15 +8814,19 @@ msgstr "" msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:673 msgid "Suggestions" msgstr "Sugerencias" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:680 msgid "Profile Picture" msgstr "Imagen de Perfil" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:704 msgid "Max. 5 previous contacts are shown" msgstr "Se muestra máx. de 5 contactos previos" @@ -8765,7 +8855,7 @@ msgstr "" #: application/views/radio/index.php:27 msgid "Please wait..." -msgstr "" +msgstr "Por favor espera..." #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 @@ -8874,7 +8964,7 @@ msgstr "" #: application/views/satellite/pass.php:36 application/views/user/edit.php:179 msgid "Timezone" -msgstr "Zona Horaria" +msgstr "Zona horaria" #: application/views/satellite/pass.php:479 msgid "Min. time" @@ -9347,118 +9437,118 @@ msgid "" "%sthis article%s of our Wiki." msgstr "" -#: application/views/station_profile/create.php:51 -#: application/views/station_profile/edit.php:60 +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:52 -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:62 +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:62 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:59 -#: application/views/station_profile/edit.php:68 +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 msgid "Station callsign. For example: 4W7EST/P" msgstr "Indicativo de llamada de la Estación. Ejemplo: 4W7EST/P" -#: application/views/station_profile/create.php:63 -#: application/views/station_profile/edit.php:72 +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 msgid "Station Power (W)" msgstr "Potencia de la Estación (W)" -#: application/views/station_profile/create.php:65 -#: application/views/station_profile/edit.php:74 +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" "Potencia de la estación por defecto en Vatios. Puede ser sobreescrito por " "CAT." -#: application/views/station_profile/create.php:68 -#: application/views/station_profile/edit.php:89 +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 msgid "Station DXCC" msgstr "DXCC de la Estación" -#: application/views/station_profile/create.php:71 -#: application/views/station_profile/edit.php:92 +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 msgctxt "DXCC selection" msgid "None" msgstr "Ninguno" -#: application/views/station_profile/create.php:78 -#: application/views/station_profile/edit.php:105 +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:83 -#: application/views/station_profile/edit.php:111 +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 msgid "Station City" msgstr "Ciudad de la Estación" -#: application/views/station_profile/create.php:85 -#: application/views/station_profile/edit.php:113 +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:94 -#: application/views/station_profile/edit.php:125 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:132 msgid "Station state. Applies to certain countries only." msgstr "" -#: application/views/station_profile/create.php:99 -#: application/views/station_profile/edit.php:130 +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 msgid "Station County" msgstr "Condado de la Estación" -#: application/views/station_profile/create.php:101 -#: application/views/station_profile/edit.php:132 +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "Condado de la Estación (Solo se usa en USA/Alaska/Hawaii)." -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/edit.php:158 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:158 -#: application/views/station_profile/edit.php:175 -#: application/views/station_profile/edit.php:199 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 msgid "click here" msgstr "haga clic aquí" -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/edit.php:175 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:135 -#: application/views/station_profile/edit.php:187 -#: application/views/station_profile/edit.php:190 +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 msgid "Station Gridsquare" msgstr "Gridsquare de la Estación" -#: application/views/station_profile/create.php:140 -#: application/views/station_profile/edit.php:195 +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 msgid "Get Gridsquare" msgstr "Obtener Gridsquare" -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:199 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 #, php-format msgctxt "uses 'click here'" msgid "" @@ -9466,8 +9556,8 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:145 -#: application/views/station_profile/edit.php:200 +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." @@ -9475,95 +9565,95 @@ msgstr "" "Si está localizado justo en una línea de la malla, introduzca múltiples " "gridsquares separados con comas. por ejemplo: IO77,IO78,IO87,IO88." -#: application/views/station_profile/create.php:160 -#: application/views/station_profile/edit.php:225 +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 msgid "Station IOTA reference. For example: EU-005" msgstr "Referencia IOTA de la Estación. Ejemplo: EU-005" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:226 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:226 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:241 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:241 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:254 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:254 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:267 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:267 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 #, php-format msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:183 -#: application/views/station_profile/edit.php:280 +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 msgid "Signature Name" msgstr "Nombre de la Firma" -#: application/views/station_profile/create.php:185 -#: application/views/station_profile/edit.php:282 +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 msgid "Station Signature (e.g. GMA).." msgstr "Firma de la Estación (ej. GMA)." -#: application/views/station_profile/create.php:189 -#: application/views/station_profile/edit.php:286 +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 msgid "Signature Information" msgstr "Información de la Firma" -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/edit.php:288 +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "Información de la Firma de la Estación (ej. DA/NW-357)." -#: application/views/station_profile/create.php:195 -#: application/views/station_profile/edit.php:301 +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:197 -#: application/views/station_profile/edit.php:303 +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "El Apodo del QTH como está configurado en su perfil de eQSL" -#: application/views/station_profile/create.php:201 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 msgid "Default QSLMSG" msgstr "QSLMSG por Defecto" -#: application/views/station_profile/create.php:204 -#: application/views/station_profile/edit.php:309 +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." @@ -9571,150 +9661,150 @@ msgstr "" "Defina un mensaje por defecto que será añadido y enviado para cada QSO para " "esta localización de estación." -#: application/views/station_profile/create.php:207 -#: application/views/station_profile/edit.php:348 +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:212 -#: application/views/station_profile/edit.php:353 +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " "Clublog. If this is deactivated on it's own please check if the Call is " "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:215 -#: application/views/station_profile/edit.php:356 +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 msgid "ClubLog Realtime Upload" msgstr "Subida en Tiempo Real en ClubLog" -#: application/views/station_profile/create.php:224 -#: application/views/station_profile/edit.php:372 +#: application/views/station_profile/create.php:231 +#: application/views/station_profile/edit.php:379 msgid "HRDLog.net Username" msgstr "Nombre de Usuario de HRDLog.net" -#: application/views/station_profile/create.php:226 -#: application/views/station_profile/edit.php:374 +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" "El nombre de usuario con el que se registró en HRDlog.net (usualmente su " "indicativo)." -#: application/views/station_profile/create.php:229 -#: application/views/station_profile/edit.php:377 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 msgid "HRDLog.net API Key" msgstr "Código API de HRDLog.net" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:379 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:379 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:234 -#: application/views/station_profile/edit.php:382 +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 msgid "HRDLog.net Logbook Realtime Upload" msgstr "Subida en Tiempo Real del Libro de Guardia a HRDLog.net" -#: application/views/station_profile/create.php:243 -#: application/views/station_profile/edit.php:317 +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 msgid "Subscription Required" msgstr "Requiere Suscripción" -#: application/views/station_profile/create.php:248 +#: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:326 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:326 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/edit.php:330 +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 msgid "QRZ.com Logbook Upload" msgstr "Subida del Libro de Guardia a QRZ.com" -#: application/views/station_profile/create.php:260 -#: application/views/station_profile/edit.php:333 +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:268 -#: application/views/station_profile/edit.php:398 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:400 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:400 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:273 -#: application/views/station_profile/edit.php:403 +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 msgid "QO-100 Dx Club Realtime Upload" msgstr "Subida en Tiempo Real del Libro de Guardia a QO-100 Dx Club" -#: application/views/station_profile/create.php:283 -#: application/views/station_profile/edit.php:421 +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 msgid "OQRS Enabled" msgstr "Activar OQRS" -#: application/views/station_profile/create.php:290 -#: application/views/station_profile/edit.php:428 +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 msgid "OQRS Email alert" msgstr "Alerta de Email de OQRS" -#: application/views/station_profile/create.php:295 -#: application/views/station_profile/edit.php:433 +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 msgid "Make sure email is set up under admin and global options." msgstr "" "Asegúrese que su correo está bien configurado en las opciones globales y de " "administrador." -#: application/views/station_profile/create.php:298 -#: application/views/station_profile/edit.php:436 +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 msgid "OQRS Text" msgstr "Texto OQRS" -#: application/views/station_profile/create.php:300 -#: application/views/station_profile/edit.php:438 +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 msgid "Some info you want to add regarding QSL'ing." msgstr "Algúna información que desee agregar acerca de su forma de hacer QSL." -#: application/views/station_profile/edit.php:142 +#: application/views/station_profile/edit.php:149 msgid "Zones" msgstr "Zonas" -#: application/views/station_profile/edit.php:277 +#: application/views/station_profile/edit.php:284 msgid "Signature" msgstr "Firma" @@ -10157,7 +10247,7 @@ msgstr "" msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:42 application/views/update/index.php:62 msgid "Re-check all QSOs in logbook" msgstr "" @@ -10183,6 +10273,13 @@ msgstr "" msgid "Update distance data" msgstr "" +#: application/views/update/index.php:61 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" + #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "Eliminar Cuenta de Usuario" @@ -10215,7 +10312,7 @@ msgstr "Información General" #: application/views/user/login.php:69 application/views/user/login.php:70 #: application/views/user/profile.php:14 msgid "Username" -msgstr "Nombre de Usuario" +msgstr "Nombre de usuario" #: application/views/user/edit.php:64 application/views/user/login.php:59 #: application/views/user/login.php:73 application/views/user/login.php:74 @@ -10612,6 +10709,126 @@ msgstr "¿Olvidó su contraseña?" msgid "You can reset your password here." msgstr "Puede reinicializar su contraseña aquí." +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "" + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "Lista de Usuarios" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "Wavelog necesita al menos un usuario configurado para operar." + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" +"Los usuarios pueden tener roles que les entregan diferentes permisos, como " +"añadir QSOs al libro de guardia y acceder a las APIs de Wavelog." + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" +"El usuario actualmente en sesión se muestra en la parte superior derecha de " +"la página." + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "Crear usuario" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "Tipo" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "" + #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" msgstr "" @@ -10637,88 +10854,6 @@ msgstr "¿Olvidó su contraseña?" msgid "Keep me logged in" msgstr "" -#: application/views/user/main.php:2 -msgid "Do you really want to send this user a password-reset link?" -msgstr "" - -#: application/views/user/main.php:6 -msgid "Please Wait ..." -msgstr "" - -#: application/views/user/main.php:9 -msgid "Password-reset e-mail sent to user:" -msgstr "" - -#: application/views/user/main.php:30 -msgid "User List" -msgstr "Lista de Usuarios" - -#: application/views/user/main.php:33 -msgid "Wavelog needs at least one user configured in order to operate." -msgstr "Wavelog necesita al menos un usuario configurado para operar." - -#: application/views/user/main.php:34 -msgid "" -"Users can be assigned roles which give them different permissions, such as " -"adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "" -"Los usuarios pueden tener roles que les entregan diferentes permisos, como " -"añadir QSOs al libro de guardia y acceder a las APIs de Wavelog." - -#: application/views/user/main.php:35 -msgid "" -"The currently logged-in user is displayed at the upper-right of each page." -msgstr "" -"El usuario actualmente en sesión se muestra en la parte superior derecha de " -"la página." - -#: application/views/user/main.php:36 -msgid "" -"With the password reset button, you can send a user an email containing a " -"link to reset their password. To achieve this, ensure that the email " -"settings in the global options are configured correctly." -msgstr "" - -#: application/views/user/main.php:38 -msgid "Create user" -msgstr "Crear usuario" - -#: application/views/user/main.php:39 -msgid "Refresh List" -msgstr "" - -#: application/views/user/main.php:49 -msgid "Type" -msgstr "Tipo" - -#: application/views/user/main.php:50 -msgid "Last seen" -msgstr "" - -#: application/views/user/main.php:53 -msgid "Password Reset" -msgstr "" - -#: application/views/user/main.php:79 -msgid "Never" -msgstr "" - -#: application/views/user/main.php:83 -msgid "Locations" -msgstr "" - -#: application/views/user/main.php:85 -msgid "Logbooks" -msgstr "" - -#: application/views/user/main.php:87 -msgid "Last QSO:" -msgstr "" - -#: application/views/user/main.php:89 -msgid "No QSOs in Log" -msgstr "" - #: application/views/user/profile.php:19 msgid "Level" msgstr "" diff --git a/application/locale/fi_FI/LC_MESSAGES/messages.po b/application/locale/fi_FI/LC_MESSAGES/messages.po index 5f776b18e..2fb58901f 100644 --- a/application/locale/fi_FI/LC_MESSAGES/messages.po +++ b/application/locale/fi_FI/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-17 17:16+0000\n" +"POT-Creation-Date: 2024-08-21 15:06+0000\n" "PO-Revision-Date: 2024-08-17 10:47+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Finnish \n" +"POT-Creation-Date: 2024-08-21 15:06+0000\n" +"PO-Revision-Date: 2024-08-18 19:11+0000\n" +"Last-Translator: \"Francisco (F4VSE)\" \n" "Language-Team: French \n" "Language: fr_FR\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 5.6.2\n" +"X-Generator: Weblate 5.7\n" #: application/controllers/Accumulated.php:13 #: application/controllers/Activators.php:13 @@ -51,8 +51,8 @@ msgstr "" #: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 #: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 #: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:348 -#: application/controllers/Eqsl.php:411 application/controllers/Eqsl.php:427 -#: application/controllers/Eqsl.php:487 application/controllers/Hamsat.php:13 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 application/controllers/Hamsat.php:13 #: application/controllers/Kmlexport.php:18 #: application/controllers/Kmlexport.php:33 #: application/controllers/Labels.php:26 @@ -60,17 +60,17 @@ msgstr "" #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 #: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 #: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 -#: application/controllers/Lotw.php:712 application/controllers/Lotw.php:820 -#: application/controllers/Lotw.php:828 application/controllers/Mode.php:15 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 #: application/controllers/Notes.php:10 application/controllers/Options.php:15 #: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 #: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 #: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 #: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 #: application/controllers/Qso.php:9 application/controllers/Qso.php:19 -#: application/controllers/Qso.php:176 application/controllers/Qso.php:279 -#: application/controllers/Qso.php:299 application/controllers/Qso.php:308 -#: application/controllers/Qso.php:603 application/controllers/Radio.php:259 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:599 application/controllers/Radio.php:259 #: application/controllers/Radio.php:285 application/controllers/Radio.php:301 #: application/controllers/Satellite.php:15 #: application/controllers/Sattimers.php:9 @@ -84,13 +84,14 @@ msgstr "" #: application/controllers/Update.php:24 application/controllers/Update.php:273 #: application/controllers/Update.php:284 #: application/controllers/Update.php:295 -#: application/controllers/Update.php:306 application/controllers/User.php:8 -#: application/controllers/User.php:21 application/controllers/User.php:206 -#: application/controllers/User.php:207 application/controllers/User.php:719 -#: application/controllers/User.php:738 application/controllers/User.php:1021 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 #: application/controllers/User_options.php:9 msgid "You're not allowed to do that!" -msgstr "" +msgstr "Vous n'as pas le droit de faire ça !" #: application/controllers/Accumulated.php:21 #: application/views/interface_assets/header.php:150 @@ -108,7 +109,7 @@ msgstr "Carte des Locator activés" #: application/controllers/Gridmap.php:31 #: application/controllers/Visitor.php:374 #: application/views/activators/index.php:100 -#: application/views/interface_assets/footer.php:42 +#: application/views/interface_assets/footer.php:43 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "Locator" @@ -222,7 +223,7 @@ msgid "Key Invalid - either not found or disabled" msgstr "Clé invalide - soit non trouvée ou désactivée" #: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 +#: application/views/lotw_views/index.php:91 msgid "Valid" msgstr "Valide" @@ -277,7 +278,7 @@ msgstr "DOK" #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 -#: application/views/lotw_views/index.php:40 +#: application/views/lotw_views/index.php:36 #: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 #: application/views/search/cqzones_result.php:15 #: application/views/search/result.php:27 @@ -317,7 +318,7 @@ msgstr "Vue du journal" #: application/controllers/Awards.php:454 msgid " and band " -msgstr "" +msgstr " et bande " #: application/controllers/Awards.php:457 msgid " and sat " @@ -356,7 +357,7 @@ msgstr " et " #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:336 #: application/views/search/search_result_ajax.php:9 -#: application/views/station_profile/edit.php:236 +#: application/views/station_profile/edit.php:243 #: application/views/user/edit.php:234 application/views/user/edit.php:256 #: application/views/user/edit.php:278 application/views/user/edit.php:300 #: application/views/user/edit.php:323 @@ -377,7 +378,7 @@ msgstr "SOTA" #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:341 #: application/views/search/search_result_ajax.php:10 -#: application/views/station_profile/edit.php:249 +#: application/views/station_profile/edit.php:256 #: application/views/user/edit.php:235 application/views/user/edit.php:257 #: application/views/user/edit.php:279 application/views/user/edit.php:301 #: application/views/user/edit.php:324 @@ -397,7 +398,7 @@ msgstr "WWFF" #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:346 #: application/views/search/search_result_ajax.php:11 -#: application/views/station_profile/edit.php:262 +#: application/views/station_profile/edit.php:269 #: application/views/user/edit.php:236 application/views/user/edit.php:258 #: application/views/user/edit.php:280 application/views/user/edit.php:302 #: application/views/user/edit.php:325 @@ -605,11 +606,11 @@ msgstr "Aucune migration possible" #: application/controllers/Debug.php:213 msgid "Wavelog was updated successfully!" -msgstr "" +msgstr "Wavelog a été mis à jour avec succès !" #: application/controllers/Debug.php:231 msgid "Selfupdate() not available. Check the Error Log." -msgstr "" +msgstr "Selfupdate() non disponible. Vérifiez le journal des erreurs." #: application/controllers/Debug.php:275 msgid "" @@ -671,19 +672,19 @@ msgstr "eQSL : résultat de l'import" msgid "eQSL QSO Upload" msgstr "eQSL : envoi des QSO" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:416 msgid "eQSL Tools" msgstr "eQSL : Outils" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid " / Errors: " msgstr " / Erreurs : " -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid "Successfully downloaded: " msgstr "Téléchargé avec succès : " -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:472 msgid "eQSL Card Image Download" msgstr "eQSL : Téléchargement des cartes/images" @@ -959,7 +960,7 @@ msgstr "LoTW" #: application/views/search/result_search.php:16 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:273 -#: application/views/station_profile/edit.php:298 +#: application/views/station_profile/edit.php:305 #: application/views/timeline/index.php:64 application/views/user/edit.php:564 #: application/views/user/edit.php:667 application/views/user/edit.php:731 msgid "eQSL" @@ -973,7 +974,7 @@ msgstr "eQSL" #: application/views/awards/waja/index.php:71 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 -#: application/views/station_profile/edit.php:345 +#: application/views/station_profile/edit.php:352 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 #: application/views/view_log/partial/log_ajax.php:83 @@ -1148,7 +1149,7 @@ msgstr "Pays" #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:318 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:208 +#: application/views/station_profile/edit.php:215 #: application/views/timeline/index.php:202 application/views/user/edit.php:233 #: application/views/user/edit.php:255 application/views/user/edit.php:277 #: application/views/user/edit.php:299 application/views/user/edit.php:322 @@ -1372,15 +1373,15 @@ msgstr "Opérateur" #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:675 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:159 #: application/views/lookup/index.php:31 -#: application/views/lotw_views/index.php:56 +#: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 #: 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:98 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 #: application/views/stationsetup/stationsetup.php:150 @@ -1410,23 +1411,50 @@ msgstr "Recherche rapide" msgid "Logbook of the World" msgstr "Logbook of the World" -#: application/controllers/Lotw.php:610 +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "" + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "" + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "" + +#: application/controllers/Lotw.php:413 +#, php-format +msgid "" +"Found no certificate in file %s. If the filename contains 'key-only' this is " +"typically a certificate request which has not been processed by LoTW yet." +msgstr "" + +#: application/controllers/Lotw.php:617 msgid "LoTW ADIF Information" msgstr "Information ADIF LoTW" -#: application/controllers/Lotw.php:718 +#: application/controllers/Lotw.php:725 msgid "LoTW ADIF Import" msgstr "Importation ADIF LoTW" -#: application/controllers/Lotw.php:830 +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "" + +#: application/controllers/Lotw.php:837 msgid "LoTW .TQ8 Upload" msgstr "Télécharger .TQ8 LoTW" -#: application/controllers/Lotw.php:927 application/controllers/Lotw.php:932 +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "" + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 msgid "LoTW .TQ8 Sent" msgstr ".TQ8 LoTW Envoyé" -#: application/controllers/Lotw.php:939 +#: application/controllers/Lotw.php:946 msgid "LoTW .TQ8 Not Sent" msgstr ".TQ8 LoTW Pas Envoyé" @@ -1504,11 +1532,11 @@ msgstr "de continent a changé en " #: application/controllers/Options.php:170 msgid "Maximum age of spots changed to " -msgstr "" +msgstr "L'âge maximum des spots changé à " #: application/controllers/Options.php:175 msgid "DXCluster Cache URL changed to " -msgstr "" +msgstr "L'URL du cache DXCluster a changé en " #: application/controllers/Options.php:185 #: application/controllers/Options.php:196 @@ -1517,7 +1545,7 @@ msgstr "Paramètres radio" #: application/controllers/Options.php:217 msgid "Radio Timeout Warning changed to " -msgstr "" +msgstr "Avertissement de dépassement de temps radio changé en " #: application/controllers/Options.php:229 #: application/controllers/Options.php:240 @@ -1593,6 +1621,44 @@ msgstr "OQRS Demandes" msgid "QRB Calculator" msgstr "Calculateur QRB" +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "" + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" + #: application/controllers/Qrz.php:173 #: application/views/interface_assets/header.php:426 msgid "QRZ Logbook" @@ -1639,7 +1705,7 @@ msgstr "Interfaces matérielles" #: application/views/contesting/index.php:92 #: application/views/qso/index.php:312 msgid "Radio" -msgstr "" +msgstr "Radio" #: application/controllers/Radio.php:50 msgid "Timestamp" @@ -1647,39 +1713,39 @@ msgstr "" #: application/controllers/Radio.php:52 #: application/views/logbookadvanced/index.php:527 -#: application/views/lotw_views/index.php:47 +#: application/views/lotw_views/index.php:43 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:171 #: application/views/stationsetup/exportmapoptions.php:5 #: application/views/statistics/custom.php:31 #: application/views/statistics/custom_result.php:33 msgid "Options" -msgstr "" +msgstr "Options" #: application/controllers/Radio.php:90 #: application/views/contesting/index.php:96 #: application/views/qso/index.php:316 msgid "last updated" -msgstr "" +msgstr "dernière mise à jour" #: application/controllers/Radio.php:97 application/controllers/Radio.php:100 msgid "Set as default radio" -msgstr "" +msgstr "Définir comme radio par défaut" #: application/controllers/Radio.php:102 msgid "Default (click to release)" -msgstr "" +msgstr "Par défaut (cliquez pour libérer)" #: application/controllers/Radio.php:105 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2329 -#: application/views/interface_assets/footer.php:2347 -#: application/views/interface_assets/footer.php:2368 -#: application/views/interface_assets/footer.php:2386 +#: application/views/interface_assets/footer.php:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:519 -#: application/views/lotw_views/index.php:118 +#: application/views/lotw_views/index.php:114 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 #: application/views/qslcard/index.php:65 @@ -1689,14 +1755,14 @@ msgstr "" #: application/views/stationsetup/stationsetup.php:33 #: application/views/stationsetup/stationsetup.php:137 #: application/views/stationsetup/stationsetup.php:192 -#: application/views/themes/index.php:107 application/views/user/main.php:54 +#: application/views/themes/index.php:107 application/views/user/index.php:57 #: application/views/view_log/qso.php:613 msgid "Delete" msgstr "Supprimer" #: application/controllers/Radio.php:111 msgid "No CAT interfaced radios found." -msgstr "" +msgstr "Aucune radio avec interface CAT trouvée." #: application/controllers/Satellite.php:37 msgid "Create Satellite" @@ -1709,7 +1775,7 @@ msgstr "Modifier le satellite" #: application/controllers/Sattimers.php:41 #, php-format msgid "You have no station locations. Go %s to create it!" -msgstr "" +msgstr "Vous n'avez pas d'emplacements de station. Allez %s pour le créer !" #: application/controllers/Sattimers.php:41 #: application/views/awards/counties/index.php:8 @@ -1726,10 +1792,11 @@ msgstr "ici" #: application/controllers/Sattimers.php:44 #: application/views/sattimers/index.php:13 msgid "Satellite Timers" -msgstr "" +msgstr "Minuteries de satellite" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 +#: application/views/interface_assets/footer.php:37 #: application/views/interface_assets/header.php:336 #: application/views/interface_assets/header.php:343 #: application/views/logbookadvanced/index.php:516 @@ -1753,7 +1820,7 @@ msgstr "Rechercher" #: application/controllers/Search.php:28 msgid "Search & Filter Logbook" -msgstr "" +msgstr "Rechercher et filtrer le journal de bord" #: application/controllers/Search.php:58 msgid "Incorrectly logged CQ zones" @@ -1774,7 +1841,7 @@ msgstr "Créer un emplacement de station" #: application/controllers/Station.php:51 msgid "Edit Station Location: " -msgstr "" +msgstr "Modifier l'emplacement de la station : " #: application/controllers/Station.php:59 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 @@ -1782,8 +1849,8 @@ msgstr "" #: application/views/logbookadvanced/edit.php:18 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:447 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 @@ -1793,7 +1860,7 @@ msgstr "Profil de la Station" #: application/controllers/Station.php:73 msgid "Duplicate Station Location:" -msgstr "" +msgstr "Emplacement de la station en double :" #: application/controllers/Stationsetup.php:35 #: application/views/interface_assets/header.php:377 @@ -1848,8 +1915,8 @@ msgstr "Erreur. Le lien est déjà utilisé !" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:259 -#: application/views/station_profile/edit.php:332 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 msgid "Disabled" @@ -1873,11 +1940,13 @@ msgid "" "Are you sure you want to delete the following station logbook? You must re-" "link any locations linked here to another logbook.: " msgstr "" +"Êtes-vous sûr de vouloir supprimer le carnet de bord de la station suivant ? " +"Vous devez relier tous les emplacements liés ici à un autre carnet de bord.: " #: application/controllers/Stationsetup.php:280 #: application/views/stationsetup/stationsetup.php:65 msgid "View Public Page for Logbook: " -msgstr "" +msgstr "Voir la page publique pour le journal de bord : " #: application/controllers/Stationsetup.php:281 msgid "Are you sure you want to delete the public slug?" @@ -1887,7 +1956,7 @@ msgstr "Êtes-vous sûr de vouloir supprimer le slug public ?" #: application/views/stationsetup/stationsetup.php:154 msgid "" "Are you sure you want to make the following station the active station: " -msgstr "" +msgstr "Êtes-vous sûr de vouloir rendre la station suivante active : " #: application/controllers/Stationsetup.php:349 #: application/views/stationsetup/stationsetup.php:154 @@ -1904,15 +1973,15 @@ msgstr "Station active" #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:28 #: application/views/stationsetup/stationsetup.php:161 -#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/user/index.php:90 application/views/user/index.php:92 msgid "QSO" msgstr "QSO" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 -#: application/views/interface_assets/footer.php:538 -#: application/views/interface_assets/footer.php:547 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 #: application/views/labels/index.php:47 application/views/labels/index.php:83 #: application/views/logbookadvanced/index.php:518 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 @@ -1920,7 +1989,7 @@ msgstr "QSO" #: application/views/search/stored_queries.php:21 #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 -#: application/views/themes/index.php:104 application/views/user/main.php:52 +#: application/views/themes/index.php:104 application/views/user/index.php:52 msgid "Edit" msgstr "Editer" @@ -1973,7 +2042,7 @@ msgstr "Statistiques personnalisées" #: application/views/interface_assets/header.php:136 #: application/views/statistics/qsltable.php:5 msgid "QSL Statistics" -msgstr "" +msgstr "Statistiques QSL" #: application/controllers/Themes.php:27 #: application/views/interface_assets/header.php:278 @@ -2006,15 +2075,15 @@ msgstr "Mises à jour" #: application/controllers/Update.php:78 msgid "Preparing DXCC-Entries: " -msgstr "" +msgstr "Préparation des entrées DXCC : " #: application/controllers/Update.php:122 msgid "Preparing DXCC Exceptions: " -msgstr "" +msgstr "Préparation des exceptions DXCC : " #: application/controllers/Update.php:166 msgid "Preparing DXCC Prefixes: " -msgstr "" +msgstr "Préparation des préfixes DXCC : " #: application/controllers/Update.php:230 msgid "DONE" @@ -2022,68 +2091,70 @@ msgstr "FAIT" #: application/controllers/Update.php:244 msgid "Updating..." -msgstr "" +msgstr "Mise à jour..." #: application/controllers/Update.php:247 msgid "Dxcc Entities:" -msgstr "" +msgstr "Entités DXCC :" #: application/controllers/Update.php:248 msgid "Dxcc Exceptions:" -msgstr "" +msgstr "Exceptions DXCC :" #: application/controllers/Update.php:249 msgid "Dxcc Prefixes:" -msgstr "" +msgstr "Préfixes DXCC :" -#: application/controllers/User.php:12 +#: application/controllers/User.php:36 #: application/views/interface_assets/header.php:268 msgid "User Accounts" msgstr "Compte des utilisateurs" -#: application/controllers/User.php:52 +#: application/controllers/User.php:76 msgid "Add User" msgstr "Ajouter un utilisateur" -#: application/controllers/User.php:166 +#: application/controllers/User.php:190 msgid "Users" msgstr "Utilisateurs" -#: application/controllers/User.php:240 application/controllers/User.php:673 +#: application/controllers/User.php:264 application/controllers/User.php:697 msgid "Edit User" msgstr "Modifier l'utilisateur" -#: application/controllers/User.php:665 application/controllers/User.php:668 -#: application/views/user/main.php:3 application/views/user/main.php:46 +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 msgid "User" msgstr "Compte" -#: application/controllers/User.php:665 application/controllers/User.php:668 +#: application/controllers/User.php:689 application/controllers/User.php:692 msgid "edited" msgstr "mis à jour" -#: application/controllers/User.php:722 +#: application/controllers/User.php:746 msgid "Profile" msgstr "Profile" -#: application/controllers/User.php:779 +#: application/controllers/User.php:803 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." msgstr "" +"Félicitations ! Wavelog a été installé avec succès. Vous pouvez maintenant " +"vous connecter pour la première fois." -#: application/controllers/User.php:843 application/controllers/User.php:853 +#: application/controllers/User.php:867 application/controllers/User.php:877 msgid "Login failed. Try again." msgstr "La connexion a échoué. Essayer à nouveau." -#: application/controllers/User.php:860 +#: application/controllers/User.php:884 #: application/views/interface_assets/header.php:356 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:88 msgid "Login" msgstr "Se connecter" -#: application/controllers/User.php:898 +#: application/controllers/User.php:922 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " @@ -2094,38 +2165,66 @@ msgstr "" "un administrateur. Seuls les administrateurs sont actuellement autorisés à " "se connecter." -#: application/controllers/User.php:901 +#: application/controllers/User.php:925 msgid "Incorrect username or password!" msgstr "Identifiant ou mot de passe incorrect!" -#: application/controllers/User.php:918 +#: application/controllers/User.php:942 #, php-format msgid "User %s logged out." msgstr "L'utilisateur %s s'est déconnecté." -#: application/controllers/User.php:932 +#: application/controllers/User.php:956 msgid "Password Reset is disabled on the Demo!" msgstr "La réinitialisation du mot de passe est désactivée sur la démo !" -#: application/controllers/User.php:945 +#: application/controllers/User.php:969 msgid "Forgot Password" msgstr "Mot de passe oublié" -#: application/controllers/User.php:995 application/views/user/main.php:8 +#: application/controllers/User.php:1019 application/views/user/index.php:8 msgid "Email settings are incorrect." msgstr "Les paramètres de messagerie sont incorrects." -#: application/controllers/User.php:999 application/controllers/User.php:1004 +#: application/controllers/User.php:1023 application/controllers/User.php:1028 msgid "Password Reset Processed." msgstr "Réinitialisation du mot de passe traitée." -#: application/controllers/User.php:1106 +#: application/controllers/User.php:1129 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "Mot de passe réinitialisé" +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "" + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "" + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "" + #: application/controllers/Visitor.php:50 #: application/controllers/Visitor.php:79 #: application/controllers/Visitor.php:142 @@ -2146,7 +2245,7 @@ msgstr "Carnet vide" #: application/controllers/Visitor.php:205 msgid "Satellite Gridsquare Map" -msgstr "" +msgstr "Carte des carrés de grille satellite" #: application/controllers/Visitor.php:411 #: application/views/stationsetup/stationsetup.php:35 @@ -2166,88 +2265,89 @@ msgstr "Télécharger QO-100 Dx Club" #: application/controllers/Widgets.php:21 msgid "Unknown Public Page, please make sure the public slug is correct." msgstr "" +"Page publique inconnue, veuillez vous assurer que le slug public est correct." #: application/controllers/Widgets.php:54 application/views/oqrs/index.php:69 msgid "No stations found that are using Wavelog OQRS." -msgstr "" +msgstr "Aucune station trouvée utilisant le OQRS de Wavelog." #: application/libraries/Subdivisions.php:31 msgctxt "Division Name (States in various countries)." msgid "Province" -msgstr "" +msgstr "Province" #: application/libraries/Subdivisions.php:39 msgctxt "Division Name (States in various countries)." msgid "Oblast" -msgstr "" +msgstr "Oblast" #: application/libraries/Subdivisions.php:41 #: application/libraries/Subdivisions.php:47 msgctxt "Division Name (States in various countries)." msgid "Region" -msgstr "" +msgstr "Région" #: application/libraries/Subdivisions.php:45 msgctxt "Division Name (States in various countries)." msgid "Department" -msgstr "" +msgstr "Département" #: application/libraries/Subdivisions.php:49 msgctxt "Division Name (States in various countries)." msgid "Municipality" -msgstr "" +msgstr "Municipalité" #: application/libraries/Subdivisions.php:51 msgctxt "Division Name (States in various countries)." msgid "Federal State" -msgstr "" +msgstr "État fédéral" #: application/libraries/Subdivisions.php:56 #: application/libraries/Subdivisions.php:94 msgctxt "Division Name (States in various countries)." msgid "County" -msgstr "" +msgstr "Comté" #: application/libraries/Subdivisions.php:60 #: application/libraries/Subdivisions.php:85 msgctxt "Division Name (States in various countries)." msgid "District" -msgstr "" +msgstr "District" #: application/libraries/Subdivisions.php:62 msgctxt "Division Name (States in various countries)." msgid "Canton" -msgstr "" +msgstr "Canton" #: application/libraries/Subdivisions.php:64 msgctxt "Division Name (States in various countries)." msgid "US State" -msgstr "" +msgstr "État américain" #: application/libraries/Subdivisions.php:67 msgctxt "Division Name (States in various countries)." msgid "Prefecture" -msgstr "" +msgstr "Préfecture" #: application/libraries/Subdivisions.php:69 msgctxt "Division Name (States in various countries)." msgid "State" -msgstr "" +msgstr "État" #: application/libraries/Subdivisions.php:78 msgctxt "Division Name (States in various countries)." msgid "US County" -msgstr "" +msgstr "Comté des États-Unis" #: application/libraries/Subdivisions.php:90 msgctxt "Division Name (States in various countries)." msgid "DME" -msgstr "" +msgstr "DME" #: application/libraries/Subdivisions.php:92 msgctxt "Division Name (States in various countries)." msgid "City / Ku / Gun" -msgstr "" +msgstr "Ville / Arrondissement / Préfecture" #: application/models/Eqslmethods_model.php:281 msgid "Your eQSL username and/or password is incorrect." @@ -2282,14 +2382,17 @@ msgstr "" msgid "" "HRDlog: QSOs have been uploaded to hrdlog.net for the station callsign: " msgstr "" +"HRDlog : Les QSOs ont été téléchargés sur hrdlog.net pour l'indicatif de la " +"station : " #: application/models/Hrdlog_model.php:25 msgid "HRDlog: No QSOs found to upload for the station callsign: " msgstr "" +"HRDlog : Aucun QSO trouvé à télécharger pour l'indicatif de la station : " #: application/models/Hrdlog_model.php:31 msgid "HRDlog: No station profiles with HRDlog Credentials found." -msgstr "" +msgstr "HRDlog : Aucun profil de station avec les identifiants HRDlog trouvé." #: application/models/Logbook_model.php:4143 msgid "QSO could not be matched" @@ -2321,27 +2424,27 @@ msgstr "inconnu" #: application/views/accumulate/index.php:2 msgid "Accumulated number of DXCCs worked" -msgstr "" +msgstr "Nombre total de DXCC travaillés" #: application/views/accumulate/index.php:3 msgid "Accumulated number of States worked" -msgstr "" +msgstr "Nombre total d'États contactés" #: application/views/accumulate/index.php:4 msgid "Accumulated number of IOTAs worked" -msgstr "" +msgstr "Nombre total d'IOTAs contactés" #: application/views/accumulate/index.php:5 msgid "Accumulated number of CQ Zones worked" -msgstr "" +msgstr "Nombre total de zones CQ travaillées" #: application/views/accumulate/index.php:6 msgid "Accumulated number of VUCC Grids worked" -msgstr "" +msgstr "Nombre total de grilles VUCC travaillées" #: application/views/accumulate/index.php:7 msgid "Accumulated number of WAJA worked" -msgstr "" +msgstr "Nombre total de WAJA contactés" #: application/views/accumulate/index.php:8 #: application/views/dashboard/index.php:223 @@ -2354,7 +2457,7 @@ msgstr "Année" #: application/views/accumulate/index.php:9 #: application/views/accumulate/index.php:67 msgid "Yearly" -msgstr "" +msgstr "Annuel" #: application/views/accumulate/index.php:10 #: application/views/dashboard/index.php:228 @@ -2365,11 +2468,11 @@ msgstr "Mois" #: application/views/accumulate/index.php:11 #: application/views/accumulate/index.php:73 msgid "Monthly" -msgstr "" +msgstr "Mensuel" #: application/views/accumulate/index.php:12 msgid "Difference" -msgstr "" +msgstr "Différence" #: application/views/accumulate/index.php:24 #: application/views/accumulate/index.php:34 @@ -2417,8 +2520,8 @@ msgstr "" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1441 -#: application/views/interface_assets/footer.php:1580 +#: application/views/interface_assets/footer.php:1446 +#: application/views/interface_assets/footer.php:1585 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 @@ -2460,7 +2563,7 @@ msgstr "Tout" #: application/views/accumulate/index.php:50 #: application/views/timeline/index.php:41 msgid "Award" -msgstr "" +msgstr "Diplome" #: application/views/accumulate/index.php:53 #: application/views/timeline/index.php:44 @@ -2480,16 +2583,16 @@ msgstr "Worked All Zones (WAZ)" #: application/views/accumulate/index.php:57 #: application/views/timeline/index.php:48 msgid "VHF / UHF Century Club (VUCC)" -msgstr "" +msgstr "VHF / UHF Century Club (VUCC)" #: application/views/accumulate/index.php:58 #: application/views/timeline/index.php:49 msgid "Worked All Japan (WAJA)" -msgstr "" +msgstr "Worked All Japan (WAJA)" #: application/views/accumulate/index.php:62 msgid "Period" -msgstr "" +msgstr "Période" #: application/views/accumulate/index.php:83 #: application/views/activators/index.php:53 @@ -2531,7 +2634,7 @@ msgstr "Afficher" #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" -msgstr "" +msgstr "Satellite" #: application/views/activated_gridmap/index.php:30 #: application/views/awards/dxcc/index.php:147 @@ -2543,14 +2646,14 @@ msgstr "" #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 msgid "Orbit" -msgstr "" +msgstr "Orbite" #: application/views/activated_gridmap/index.php:50 #: application/views/awards/wab/index.php:64 #: application/views/gridmap/index.php:92 #: application/views/timeline/index.php:52 msgid "Confirmation" -msgstr "" +msgstr "Confirmation" #: application/views/activated_gridmap/index.php:82 #: application/views/awards/cq/index.php:68 @@ -2565,7 +2668,7 @@ msgstr "" #: application/views/awards/was/index.php:67 #: application/views/gridmap/index.php:125 application/views/user/edit.php:675 msgid "QRZ.com" -msgstr "" +msgstr "QRZ.com" #: application/views/activated_gridmap/index.php:86 #: application/views/gridmap/index.php:130 @@ -2584,7 +2687,7 @@ msgstr "Effacer marqueurs" #: application/views/gridmap/index.php:148 #: application/views/logbookadvanced/index.php:8 msgid "Latitude" -msgstr "" +msgstr "Latitude" #: application/views/activated_gridmap/index.php:104 #: application/views/awards/ffma/index.php:32 @@ -2592,7 +2695,7 @@ msgstr "" #: application/views/gridmap/index.php:150 #: application/views/logbookadvanced/index.php:9 msgid "Longitude" -msgstr "" +msgstr "Longitude" #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 @@ -2605,7 +2708,7 @@ msgstr "Azimut" #: application/views/activators/index.php:26 msgctxt "Orbiter LEO or GEO" msgid "Both" -msgstr "" +msgstr "Les deux" #: application/views/activators/index.php:33 msgid "Minimum Count" @@ -2633,7 +2736,7 @@ msgstr "Nbre d'activation minimum" #: application/views/public_search/empty.php:3 #: application/views/qrz/export.php:64 application/views/timeline/index.php:102 msgid "Nothing found!" -msgstr "" +msgstr "Rien trouvé !" #: application/views/activators/index.php:98 #: application/views/adif/import.php:66 application/views/adif/import.php:172 @@ -2650,7 +2753,7 @@ msgstr "" #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 -#: application/views/lotw_views/index.php:39 +#: application/views/lotw_views/index.php:35 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 #: application/views/qslcard/index.php:28 @@ -2665,10 +2768,10 @@ msgstr "" #: application/views/search/lotw_unconfirmed_result.php:6 #: application/views/search/result.php:11 #: application/views/simplefle/index.php:142 -#: application/views/station_profile/edit.php:56 +#: application/views/station_profile/edit.php:63 #: application/views/stationsetup/linkedlocations.php:17 -#: application/views/user/edit.php:123 application/views/user/main.php:4 -#: application/views/user/main.php:47 application/views/user/profile.php:29 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 #: application/views/view_log/qso.php:82 application/views/view_log/qso.php:507 msgid "Callsign" msgstr "Indicatif" @@ -2763,7 +2866,7 @@ msgstr "Différence de données DOK entre votre journal de travail et DCL" #: application/views/visitor/index.php:147 #: application/views/widgets/qsos.php:24 msgid "Date" -msgstr "" +msgstr "Date" #: application/views/adif/dcl_success.php:30 #: application/views/awards/pota/index.php:33 @@ -2818,19 +2921,19 @@ msgstr "QRZ" #: application/views/adif/dcl_success.php:34 msgid "DOK in Log" -msgstr "" +msgstr "DOK dans le log" #: application/views/adif/dcl_success.php:35 msgid "DOK in DCL" -msgstr "" +msgstr "DOK dans DCL" #: application/views/adif/dcl_success.php:36 msgid "DCL QSL Status" -msgstr "" +msgstr "Statut QSL DCL" #: application/views/adif/import.php:36 application/views/adif/import.php:242 msgid "DARC DCL" -msgstr "" +msgstr "DARC DCL" #: application/views/adif/import.php:55 #: application/views/dashboard/index.php:97 @@ -2839,7 +2942,7 @@ msgstr "" #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" -msgstr "" +msgstr "Important" #: application/views/adif/import.php:55 msgid "Log Files must have the file type *.adi" @@ -2872,12 +2975,12 @@ msgstr "Sélectionner une Localisation" #: application/views/adif/import.php:69 msgid "Add QSOs to Contest" -msgstr "" +msgstr "Ajouter des QSOs au concours" #: application/views/adif/import.php:71 #: application/views/simplefle/index.php:82 msgid "No Contest" -msgstr "" +msgstr "Pas de concours" #: application/views/adif/import.php:77 msgid "ADIF File" @@ -2931,10 +3034,10 @@ msgstr "" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 -#: application/views/interface_assets/footer.php:498 -#: application/views/interface_assets/footer.php:2125 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 msgid "DANGER" -msgstr "" +msgstr "DANGER" #: application/views/adif/import.php:152 msgid "Ignore Stationcallsign on import" @@ -2946,6 +3049,8 @@ msgid "" "If selected, Wavelog will try to import %sall%s QSO's of the ADIF, " "regardless if they match to the chosen station-location." msgstr "" +"Si sélectionné, Wavelog essaiera d'importer %stous%s les QSO de l'ADIF, " +"qu'ils correspondent ou non à la station-lieu choisie." #: application/views/adif/import.php:158 application/views/adif/import.php:273 #: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 @@ -3025,6 +3130,11 @@ msgid "" "List). The downloaded ADIF file can be uploaded here in order to update QSOs " "with DOK info." msgstr "" +"Aller à %s et exporter votre carnet de bord avec les DOKs confirmés. Pour " +"accélérer le processus, vous peux sélectionner uniquement les QSOs DL à " +"télécharger (c'est-à-dire mettre 'DL' dans la liste des préfixes). Le " +"fichier ADIF téléchargé peut être téléchargé ici pour mettre à jour les QSOs " +"avec les infos DOK." #: application/views/adif/import.php:249 msgid "Only import DOK data from QSOs confirmed on DCL." @@ -3040,7 +3150,7 @@ msgstr "" #: application/views/adif/import.php:258 msgid "Overwrites exisiting DOK in log by DCL (if different)." -msgstr "" +msgstr "Remplace le DOK existant dans le journal par DCL (si différent)." #: application/views/adif/import.php:260 msgid "" @@ -3059,6 +3169,8 @@ msgid "" "If unchecked, information about QSOs which could not be found in Wavelog " "will be displayed." msgstr "" +"Si non coché, les informations sur les QSOs qui n'ont pas pu être trouvées " +"dans Wavelog seront affichées." #: application/views/adif/import_success.php:15 msgid "Yay, its imported!" @@ -3070,11 +3182,11 @@ msgstr "Le fichier ADIF a été importé." #: application/views/adif/import_success.php:18 msgid "Dupes were inserted!" -msgstr "" +msgstr "Des doublons ont été insérés !" #: application/views/adif/import_success.php:20 msgid "Dupes were skipped." -msgstr "" +msgstr "Les doublons ont été ignorés." #: application/views/adif/import_success.php:24 msgid "ADIF Errors" @@ -3105,17 +3217,17 @@ msgstr "Les QSO ont été marqués comme téléchargés sur LoTW." #: application/views/api/description.php:15 msgid "Editing Description for API Key" -msgstr "" +msgstr "Modification de la description de la clé API" #: application/views/api/description.php:28 msgid "Simple name to describe what you use this API for." -msgstr "" +msgstr "Nom simple pour décrire l'utilisation de cette API." #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 -#: application/views/interface_assets/footer.php:44 -#: application/views/interface_assets/footer.php:533 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -3123,8 +3235,6 @@ msgstr "" #: application/views/options/oqrs.php:63 #: application/views/options/radios.php:45 #: application/views/options/version_dialog.php:78 -#: application/views/qso/components/winkeysettings.php:90 -#: application/views/qso/components/winkeysettings_results.php:90 #: application/views/satellite/create.php:70 #: application/views/simplefle/index.php:22 msgid "Save" @@ -3133,7 +3243,7 @@ msgstr "Enregistrer" #: application/views/api/help.php:14 #: application/views/interface_assets/header.php:431 msgid "API Keys" -msgstr "" +msgstr "Clés API" #: application/views/api/help.php:17 msgid "" @@ -3141,6 +3251,9 @@ msgid "" "access Wavelog in a controlled way. Access to the API is managed via API " "keys." msgstr "" +"L'API Wavelog (Interface de Programmation d'Applications) permet aux " +"systèmes tiers d'accéder à Wavelog de manière contrôlée. L'accès à l'API est " +"géré via des clés API." #: application/views/api/help.php:18 msgid "" @@ -3149,10 +3262,14 @@ msgid "" "Wavelog. Generate a read-only key if the application only needs to obtain " "data from Wavelog." msgstr "" +"Vous devrez générer une clé API pour chaque outil que vous souhaitez " +"utiliser (par exemple, WLgate). Générez une clé en lecture-écriture si " +"l'application doit envoyer des données à Wavelog. Générez une clé en lecture " +"seule si l'application a seulement besoin d'obtenir des données de Wavelog." #: application/views/api/help.php:19 msgid "API URL" -msgstr "" +msgstr "URL de l'API" #: application/views/api/help.php:19 application/views/api/help.php:38 #: application/views/cron/index.php:21 application/views/debug/index.php:36 @@ -3161,7 +3278,7 @@ msgstr "Copier dans le presse-papier" #: application/views/api/help.php:19 msgid "The API URL for this Wavelog instance is" -msgstr "" +msgstr "L'URL de l'API pour cette instance de Wavelog est" #: application/views/api/help.php:20 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:477 @@ -3181,27 +3298,29 @@ msgid "" "It's good practice to delete a key if you are no longer using the associated " "application." msgstr "" +"Il est bon de supprimer une clé si vous n'utilisez plus l'application " +"associée." #: application/views/api/help.php:27 msgid "API Key" -msgstr "" +msgstr "Clé API" #: application/views/api/help.php:28 application/views/cron/edit.php:30 #: application/views/cron/index.php:51 #: application/views/search/stored_queries.php:8 msgid "Description" -msgstr "" +msgstr "Description" #: application/views/api/help.php:29 msgid "Last Used" -msgstr "" +msgstr "Dernière utilisation" #: application/views/api/help.php:30 msgid "Permissions" -msgstr "" +msgstr "Autorisations" #: application/views/api/help.php:31 application/views/cron/index.php:52 -#: application/views/lotw_views/index.php:45 +#: application/views/lotw_views/index.php:41 #: application/views/mode/index.php:31 #: application/views/oqrs/showrequests.php:91 #: application/views/sattimers/index.php:39 @@ -3215,35 +3334,35 @@ msgstr "Statut" #: application/views/logbookadvanced/index.php:497 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" -msgstr "" +msgstr "Actions" #: application/views/api/help.php:45 msgid "Read & Write" -msgstr "" +msgstr "Lire et écrire" #: application/views/api/help.php:47 msgid "Read-Only" -msgstr "" +msgstr "Lecture seulement" #: application/views/api/help.php:49 msgid "Unknown" -msgstr "" +msgstr "Inconnu" #: application/views/api/help.php:59 msgid "Test" -msgstr "" +msgstr "Test" #: application/views/api/help.php:71 msgid "You have no API Keys." -msgstr "" +msgstr "Vous n'avez pas de clés API." #: application/views/api/help.php:75 msgid "Create a read & write key" -msgstr "" +msgstr "Créer une clé de lecture et d'écriture" #: application/views/api/help.php:76 msgid "Create a read-only key" -msgstr "" +msgstr "Créer une clé de lecture seulement" #: application/views/awards/counties/details.php:4 #: application/views/awards/details.php:1 @@ -3254,7 +3373,7 @@ msgstr "Filtré sur" #: application/views/awards/counties/details.php:13 msgid "County" -msgstr "" +msgstr "Comté" #: application/views/awards/counties/index.php:6 #: application/views/awards/counties/index.php:13 @@ -3297,7 +3416,7 @@ msgstr "Informations complémentaires" #: application/views/awards/counties/index.php:7 msgid "US County Award" -msgstr "" +msgstr "Diplome des Comté des États-Unis" #: application/views/awards/counties/index.php:8 #, php-format @@ -3306,6 +3425,10 @@ msgid "" "magazine, is issued for confirmed two-way radio contacts with specified " "numbers of U.S. counties under rules and conditions you can find %s." msgstr "" +"Le diplome des comtés des États-Unis d'Amérique (USA-CA), parrainé par le " +"magazine CQ, est délivré pour des contacts radio bidirectionnels confirmés " +"avec un nombre spécifié de comtés américains selon les règles et conditions " +"que vous pouvez trouver %s." #: application/views/awards/counties/index.php:9 msgid "" @@ -3313,18 +3436,24 @@ msgid "" "individuals for all county contacts made, regardless of callsigns used, " "operating locations, or dates." msgstr "" +"USA-CA est disponible pour tous les radioamateurs licenciés dans le monde " +"entier et est délivré aux individus pour tous les contacts de comté " +"effectués, indépendamment des indicatifs d'appel utilisés, des lieux " +"d'exploitation ou des dates." #: application/views/awards/counties/index.php:10 msgid "Special USA-CA awards are also available to SWLs on a heard basis." msgstr "" +"Des diplomes spéciales USA-CA sont également disponibles pour les SWLs sur " +"la base des stations entendues." #: application/views/awards/counties/index.php:21 msgid "Counties Worked" -msgstr "" +msgstr "Départements travaillés" #: application/views/awards/counties/index.php:22 msgid "Counties Confirmed" -msgstr "" +msgstr "Comtés Confirmés" #: application/views/awards/counties/index.php:39 #: application/views/awards/cq/index.php:176 @@ -3351,7 +3480,7 @@ msgstr "" #: application/views/statistics/uniquetable.php:23 #: application/views/visitor/index.php:241 msgid "Total" -msgstr "" +msgstr "Total" #: application/views/awards/cq/index.php:3 #: application/views/awards/cq/index.php:150 application/views/csv/index.php:80 @@ -3364,8 +3493,8 @@ msgstr "" #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:106 -#: application/views/station_profile/edit.php:146 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 #: application/views/timeline/index.php:231 #: application/views/timeplotter/index.php:44 msgid "CQ Zone" @@ -3374,7 +3503,7 @@ msgstr "Zone CQ" #: application/views/awards/cq/index.php:4 #: application/views/awards/itu/index.php:4 msgid "Hover over a zone" -msgstr "" +msgstr "Survoler une zone" #: application/views/awards/cq/index.php:20 msgid "CQ Magazine WAZ Award" @@ -3409,7 +3538,7 @@ msgstr "" #: application/views/bandmap/list.php:73 #: application/views/dashboard/index.php:245 #: application/views/dashboard/index.php:363 -#: application/views/interface_assets/footer.php:39 +#: application/views/interface_assets/footer.php:40 #: application/views/visitor/index.php:266 msgid "Confirmed" msgstr "Confirmés" @@ -3475,7 +3604,7 @@ msgstr "" #: application/views/awards/cq/index.php:56 #: application/views/awards/itu/index.php:56 -#: application/views/interface_assets/footer.php:2104 +#: application/views/interface_assets/footer.php:2109 #: application/views/qso/edit_ajax.php:378 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -3934,8 +4063,8 @@ msgstr "" #: application/views/logbookadvanced/index.php:251 #: application/views/logbookadvanced/index.php:594 #: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:120 -#: application/views/station_profile/edit.php:163 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 msgid "ITU Zone" msgstr "Zone ITU" @@ -4041,8 +4170,8 @@ msgstr "" #: application/views/awards/pota/index.php:31 #: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:177 -#: application/views/station_profile/edit.php:265 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 #: application/views/user/edit.php:595 application/views/view_log/qso.php:303 #: application/views/view_log/qso.php:570 msgid "POTA Reference(s)" @@ -4299,8 +4428,8 @@ msgstr "" #: application/views/awards/wwff/index.php:31 #: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:171 -#: application/views/station_profile/edit.php:252 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 #: application/views/user/edit.php:591 application/views/view_log/qso.php:296 #: application/views/view_log/qso.php:563 msgid "WWFF Reference" @@ -4486,9 +4615,7 @@ msgstr "" #: application/views/bands/index.php:152 #: application/views/contesting/add.php:74 -#: application/views/interface_assets/footer.php:43 -#: application/views/qso/components/winkeysettings.php:91 -#: application/views/qso/components/winkeysettings_results.php:91 +#: application/views/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4820,8 +4947,8 @@ msgid "Name of Contest in ADIF-specification" msgstr "(Nom utilisé par le concours dans les spécifications ADIF)" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:48 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "Créer" @@ -4965,8 +5092,8 @@ msgstr "" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:261 -#: application/views/station_profile/edit.php:334 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 msgid "Enabled" @@ -5022,6 +5149,7 @@ msgstr "" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "Annuler" @@ -5694,7 +5822,7 @@ msgstr "" msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:283 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:649 msgid "Settings" msgstr "" @@ -5751,7 +5879,7 @@ msgstr "" #: application/views/debug/index.php:506 application/views/debug/index.php:511 #: application/views/debug/index.php:516 application/views/debug/index.php:521 #: application/views/debug/index.php:526 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/edit.php:49 msgid "Update" msgstr "Mettre à jour" @@ -5793,8 +5921,8 @@ msgstr[1] "" #: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:57 -#: application/views/station_profile/edit.php:66 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" @@ -6125,10 +6253,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2330 -#: application/views/interface_assets/footer.php:2348 -#: application/views/interface_assets/footer.php:2369 -#: application/views/interface_assets/footer.php:2387 +#: application/views/interface_assets/footer.php:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -6254,184 +6382,192 @@ msgstr "" msgid "OK" msgstr "" -#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/footer.php:38 msgid "Warning! Are you sure you want delete QSO with " msgstr "" -#: application/views/interface_assets/footer.php:38 +#: application/views/interface_assets/footer.php:39 #: application/views/user/edit.php:493 msgid "Colors" msgstr "Couleurs" -#: application/views/interface_assets/footer.php:40 +#: application/views/interface_assets/footer.php:41 msgid "Worked not confirmed" msgstr "Réalisés - non confirmés" -#: application/views/interface_assets/footer.php:41 +#: application/views/interface_assets/footer.php:42 msgid "Not worked" msgstr "Non réalisés" -#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:46 #: application/views/qso/index.php:601 #: application/views/visitor/layout/footer.php:245 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:46 +#: application/views/interface_assets/footer.php:47 #: application/views/qso/edit_ajax.php:211 #: application/views/qso/edit_ajax.php:512 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "" -#: application/views/interface_assets/footer.php:47 +#: application/views/interface_assets/footer.php:48 msgid "No states for this DXCC available" msgstr "" -#: application/views/interface_assets/footer.php:129 +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "" + +#: application/views/interface_assets/footer.php:132 #: application/views/interface_assets/header.php:434 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:395 +#: application/views/interface_assets/footer.php:398 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:398 +#: application/views/interface_assets/footer.php:401 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:414 +#: application/views/interface_assets/footer.php:417 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:416 +#: application/views/interface_assets/footer.php:419 #: application/views/search/filter.php:46 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:418 +#: application/views/interface_assets/footer.php:421 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:423 +#: application/views/interface_assets/footer.php:426 #: application/views/search/filter.php:60 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:435 -#: application/views/interface_assets/footer.php:564 -#: application/views/interface_assets/footer.php:628 +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:440 -#: application/views/interface_assets/footer.php:633 +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:461 -#: application/views/interface_assets/footer.php:592 +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 #: application/views/search/filter.php:79 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:499 +#: application/views/interface_assets/footer.php:502 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:513 +#: application/views/interface_assets/footer.php:516 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:522 +#: application/views/interface_assets/footer.php:525 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:548 +#: application/views/interface_assets/footer.php:551 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:552 +#: application/views/interface_assets/footer.php:555 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:678 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:725 +#: application/views/interface_assets/footer.php:730 #: application/views/logbookadvanced/index.php:511 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:726 +#: application/views/interface_assets/footer.php:731 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:727 +#: application/views/interface_assets/footer.php:732 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1162 +#: application/views/interface_assets/footer.php:1167 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "" -#: application/views/interface_assets/footer.php:1368 -#: application/views/interface_assets/footer.php:1372 -#: application/views/interface_assets/footer.php:1375 -#: application/views/interface_assets/footer.php:1512 -#: application/views/interface_assets/footer.php:1516 -#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 msgid "grid square" msgstr "Grilles des Locators" -#: application/views/interface_assets/footer.php:1375 -#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 msgid "Total count" msgstr "Total" -#: application/views/interface_assets/footer.php:2106 +#: application/views/interface_assets/footer.php:2111 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2126 +#: application/views/interface_assets/footer.php:2131 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2166 +#: application/views/interface_assets/footer.php:2171 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "Carte eQSL" -#: application/views/interface_assets/footer.php:2168 +#: application/views/interface_assets/footer.php:2173 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2341 -#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 #: application/views/view_log/qso.php:604 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2360 +#: application/views/interface_assets/footer.php:2365 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2398 +#: application/views/interface_assets/footer.php:2403 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2409 -#: application/views/interface_assets/footer.php:2434 +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2445 +#: application/views/interface_assets/footer.php:2450 msgid "Something went wrong. Please try again!" msgstr "" @@ -7023,18 +7159,18 @@ msgstr "QSL Envoyée" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:209 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:236 -#: application/views/station_profile/create.php:275 -#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 #: application/views/station_profile/create.php:293 -#: application/views/station_profile/edit.php:350 -#: application/views/station_profile/edit.php:358 -#: application/views/station_profile/edit.php:384 -#: application/views/station_profile/edit.php:405 -#: application/views/station_profile/edit.php:423 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 #: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 #: application/views/user/edit.php:347 application/views/user/edit.php:358 #: application/views/user/edit.php:369 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:399 @@ -7061,18 +7197,18 @@ msgstr "Oui" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:210 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:237 -#: application/views/station_profile/create.php:276 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/create.php:292 -#: application/views/station_profile/edit.php:351 -#: application/views/station_profile/edit.php:359 -#: application/views/station_profile/edit.php:385 -#: application/views/station_profile/edit.php:406 -#: application/views/station_profile/edit.php:424 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 #: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 #: application/views/user/edit.php:348 application/views/user/edit.php:359 #: application/views/user/edit.php:370 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:400 @@ -7396,7 +7532,7 @@ msgstr "Nb lignes" #: application/views/logbookadvanced/index.php:505 #: application/views/qso/index.php:272 -#: application/views/station_profile/edit.php:85 +#: application/views/station_profile/edit.php:92 msgid "Location" msgstr "Lieu" @@ -7560,58 +7696,58 @@ msgstr "Certificats disponibles" msgid "Upload Certificate" msgstr "Envoyer un certificat" -#: application/views/lotw_views/index.php:41 +#: application/views/lotw_views/index.php:37 msgid "QSO Start Date" msgstr "Date de début des QSO" -#: application/views/lotw_views/index.php:42 +#: application/views/lotw_views/index.php:38 msgid "QSO End Date" msgstr "Date de fin des QSO" -#: application/views/lotw_views/index.php:43 +#: application/views/lotw_views/index.php:39 msgid "Date Created" msgstr "Date de création" -#: application/views/lotw_views/index.php:44 +#: application/views/lotw_views/index.php:40 msgid "Date Expires" msgstr "Date d'expiration" -#: application/views/lotw_views/index.php:46 +#: application/views/lotw_views/index.php:42 #: application/views/view_log/qso.php:404 msgid "Last Upload" msgstr "Dernier téléchargement" -#: application/views/lotw_views/index.php:91 +#: application/views/lotw_views/index.php:87 msgid "Expired" msgstr "Expiré" -#: application/views/lotw_views/index.php:93 +#: application/views/lotw_views/index.php:89 msgid "Expiring" msgstr "Expiration" -#: application/views/lotw_views/index.php:105 +#: application/views/lotw_views/index.php:101 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:108 +#: application/views/lotw_views/index.php:104 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:114 +#: application/views/lotw_views/index.php:110 msgid "Not Synced" msgstr "Non synchronisé" -#: application/views/lotw_views/index.php:129 +#: application/views/lotw_views/index.php:125 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "Vous devez envoyer des certificats p1 pour utiliser cette zone." -#: application/views/lotw_views/index.php:144 +#: application/views/lotw_views/index.php:140 msgid "Information" msgstr "" -#: application/views/lotw_views/index.php:149 +#: application/views/lotw_views/index.php:145 msgid "Manual Sync" msgstr "Synchro manuelle" @@ -8124,7 +8260,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:64 #: application/views/oqrs/showrequests.php:87 -#: application/views/user/main.php:48 application/views/user/profile.php:24 +#: application/views/user/index.php:48 application/views/user/profile.php:24 msgid "E-mail" msgstr "" @@ -8447,35 +8583,20 @@ msgid "" "queue." msgstr "" -#: application/views/qso/components/winkeysettings.php:7 -#: application/views/qso/components/winkeysettings_results.php:7 -msgid "Winkey Macros" -msgstr "" - -#: application/views/qso/components/winkeysettings.php:12 -#: application/views/qso/components/winkeysettings.php:28 -#: application/views/qso/components/winkeysettings.php:44 -#: application/views/qso/components/winkeysettings.php:60 -#: application/views/qso/components/winkeysettings.php:76 -#: application/views/qso/components/winkeysettings_results.php:12 -#: application/views/qso/components/winkeysettings_results.php:28 -#: application/views/qso/components/winkeysettings_results.php:44 -#: application/views/qso/components/winkeysettings_results.php:60 -#: application/views/qso/components/winkeysettings_results.php:76 -#, php-format -msgid "Function %d - Name" -msgstr "" - +#: application/views/qso/components/winkeysettings.php:3 #: application/views/qso/components/winkeysettings.php:19 #: application/views/qso/components/winkeysettings.php:35 #: application/views/qso/components/winkeysettings.php:51 #: application/views/qso/components/winkeysettings.php:67 -#: application/views/qso/components/winkeysettings.php:83 -#: application/views/qso/components/winkeysettings_results.php:19 -#: application/views/qso/components/winkeysettings_results.php:35 -#: application/views/qso/components/winkeysettings_results.php:51 -#: application/views/qso/components/winkeysettings_results.php:67 -#: application/views/qso/components/winkeysettings_results.php:83 +#, php-format +msgid "Function %d - Name" +msgstr "" + +#: application/views/qso/components/winkeysettings.php:10 +#: application/views/qso/components/winkeysettings.php:26 +#: application/views/qso/components/winkeysettings.php:42 +#: application/views/qso/components/winkeysettings.php:58 +#: application/views/qso/components/winkeysettings.php:74 #, php-format msgid "Function %d - Macro" msgstr "" @@ -8595,7 +8716,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "Heure de fin inférieure à celle de début" -#: application/views/qso/index.php:5 application/views/qso/index.php:694 +#: application/views/qso/index.php:5 application/views/qso/index.php:690 msgid "Previous Contacts" msgstr "Contacts précédents" @@ -8636,16 +8757,16 @@ msgid "Search DXCluster for latest Spot" msgstr "" #: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:149 -#: application/views/station_profile/edit.php:211 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 #: application/views/user/edit.php:583 application/views/view_log/qso.php:282 #: application/views/view_log/qso.php:549 msgid "IOTA Reference" msgstr "Référence IOTA" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:165 -#: application/views/station_profile/edit.php:239 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 #: application/views/user/edit.php:587 application/views/view_log/qso.php:289 #: application/views/view_log/qso.php:556 msgid "SOTA Reference" @@ -8711,15 +8832,19 @@ msgstr "" msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:673 msgid "Suggestions" msgstr "" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:680 msgid "Profile Picture" msgstr "" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:704 msgid "Max. 5 previous contacts are shown" msgstr "" @@ -9297,116 +9422,116 @@ msgid "" "%sthis article%s of our Wiki." msgstr "" -#: application/views/station_profile/create.php:51 -#: application/views/station_profile/edit.php:60 +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:52 -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:62 +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:62 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:59 -#: application/views/station_profile/edit.php:68 +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 msgid "Station callsign. For example: 4W7EST/P" msgstr "" -#: application/views/station_profile/create.php:63 -#: application/views/station_profile/edit.php:72 +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 msgid "Station Power (W)" msgstr "" -#: application/views/station_profile/create.php:65 -#: application/views/station_profile/edit.php:74 +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" -#: application/views/station_profile/create.php:68 -#: application/views/station_profile/edit.php:89 +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 msgid "Station DXCC" msgstr "" -#: application/views/station_profile/create.php:71 -#: application/views/station_profile/edit.php:92 +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 msgctxt "DXCC selection" msgid "None" msgstr "Aucun" -#: application/views/station_profile/create.php:78 -#: application/views/station_profile/edit.php:105 +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:83 -#: application/views/station_profile/edit.php:111 +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 msgid "Station City" msgstr "" -#: application/views/station_profile/create.php:85 -#: application/views/station_profile/edit.php:113 +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:94 -#: application/views/station_profile/edit.php:125 -msgid "Station state. Applies to certain countries only." -msgstr "" - -#: application/views/station_profile/create.php:99 -#: application/views/station_profile/edit.php:130 -msgid "Station County" -msgstr "" - #: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:132 +msgid "Station state. Applies to certain countries only." +msgstr "" + +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 +msgid "Station County" +msgstr "" + +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/edit.php:158 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:158 -#: application/views/station_profile/edit.php:175 -#: application/views/station_profile/edit.php:199 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 msgid "click here" msgstr "cliquer ici" -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/edit.php:175 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:135 -#: application/views/station_profile/edit.php:187 -#: application/views/station_profile/edit.php:190 +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 msgid "Station Gridsquare" msgstr "" -#: application/views/station_profile/create.php:140 -#: application/views/station_profile/edit.php:195 +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 msgid "Get Gridsquare" msgstr "Trouver le Locator" -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:199 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 #, php-format msgctxt "uses 'click here'" msgid "" @@ -9414,102 +9539,102 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:145 -#: application/views/station_profile/edit.php:200 +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" -#: application/views/station_profile/create.php:160 -#: application/views/station_profile/edit.php:225 +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 msgid "Station IOTA reference. For example: EU-005" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:226 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:226 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:241 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:241 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:254 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:254 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:267 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:267 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 #, php-format msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:183 -#: application/views/station_profile/edit.php:280 +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 msgid "Signature Name" msgstr "" -#: application/views/station_profile/create.php:185 -#: application/views/station_profile/edit.php:282 +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 msgid "Station Signature (e.g. GMA).." msgstr "" -#: application/views/station_profile/create.php:189 -#: application/views/station_profile/edit.php:286 +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 msgid "Signature Information" msgstr "" -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/edit.php:288 +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "" -#: application/views/station_profile/create.php:195 -#: application/views/station_profile/edit.php:301 +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:197 -#: application/views/station_profile/edit.php:303 +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "" -#: application/views/station_profile/create.php:201 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 msgid "Default QSLMSG" msgstr "Message (QSLMSG) par défaut" -#: application/views/station_profile/create.php:204 -#: application/views/station_profile/edit.php:309 +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." @@ -9517,146 +9642,146 @@ msgstr "" "Vous pouvez définir un message par défaut qui sera renseigné et envoyé pour " "chaque QSO pour ce lieu station." -#: application/views/station_profile/create.php:207 -#: application/views/station_profile/edit.php:348 +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:212 -#: application/views/station_profile/edit.php:353 +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " "Clublog. If this is deactivated on it's own please check if the Call is " "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:215 -#: application/views/station_profile/edit.php:356 +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 msgid "ClubLog Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:224 -#: application/views/station_profile/edit.php:372 -msgid "HRDLog.net Username" -msgstr "" - -#: application/views/station_profile/create.php:226 -#: application/views/station_profile/edit.php:374 -msgid "" -"The username you are registered with at HRDlog.net (usually your callsign)." -msgstr "" - -#: application/views/station_profile/create.php:229 -#: application/views/station_profile/edit.php:377 -msgid "HRDLog.net API Key" -msgstr "" - #: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:379 +msgid "HRDLog.net Username" +msgstr "" + +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 +msgid "" +"The username you are registered with at HRDlog.net (usually your callsign)." +msgstr "" + +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 +msgid "HRDLog.net API Key" +msgstr "" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:379 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:234 -#: application/views/station_profile/edit.php:382 +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 msgid "HRDLog.net Logbook Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:243 -#: application/views/station_profile/edit.php:317 +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 msgid "Subscription Required" msgstr "" -#: application/views/station_profile/create.php:248 +#: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:326 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:326 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/edit.php:330 +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 msgid "QRZ.com Logbook Upload" msgstr "" -#: application/views/station_profile/create.php:260 -#: application/views/station_profile/edit.php:333 +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:268 -#: application/views/station_profile/edit.php:398 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:400 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:400 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:273 -#: application/views/station_profile/edit.php:403 +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 msgid "QO-100 Dx Club Realtime Upload" msgstr "QO-100 Dx Club Téléchargement en temps réel" -#: application/views/station_profile/create.php:283 -#: application/views/station_profile/edit.php:421 +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 msgid "OQRS Enabled" msgstr "OQRS activé" -#: application/views/station_profile/create.php:290 -#: application/views/station_profile/edit.php:428 +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 msgid "OQRS Email alert" msgstr "OQRS Alerte par email" -#: application/views/station_profile/create.php:295 -#: application/views/station_profile/edit.php:433 +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 msgid "Make sure email is set up under admin and global options." msgstr "" -#: application/views/station_profile/create.php:298 -#: application/views/station_profile/edit.php:436 +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 msgid "OQRS Text" msgstr "" -#: application/views/station_profile/create.php:300 -#: application/views/station_profile/edit.php:438 +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 msgid "Some info you want to add regarding QSL'ing." msgstr "" -#: application/views/station_profile/edit.php:142 +#: application/views/station_profile/edit.php:149 msgid "Zones" msgstr "" -#: application/views/station_profile/edit.php:277 +#: application/views/station_profile/edit.php:284 msgid "Signature" msgstr "" @@ -10086,7 +10211,7 @@ msgstr "" msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:42 application/views/update/index.php:62 msgid "Re-check all QSOs in logbook" msgstr "" @@ -10112,6 +10237,13 @@ msgstr "" msgid "Update distance data" msgstr "" +#: application/views/update/index.php:61 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" + #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "Supprimer l'utilisateur" @@ -10537,6 +10669,127 @@ msgstr "Mot de passe oublié ?" msgid "You can reset your password here." msgstr "Vous pouvez réinitialiser votre mot de passe ici." +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "" + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "Liste des utilisateurs" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "Wavelog a besoin d'au moins un utilisateur configuré pour fonctionner." + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" +"Les utilisateurs peuvent se voir attribuer des rôles qui leur donnent " +"différentes autorisations, telles que l'ajout de QSO au journal de trafic et " +"l'accès aux API Wavelog." + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" +"L'utilisateur actuellement connecté est affiché en haut à droite de chaque " +"page." + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "Création d'un utilisateur" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "" + #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" msgstr "" @@ -10562,89 +10815,6 @@ msgstr "Mot de passe oublié ?" msgid "Keep me logged in" msgstr "" -#: application/views/user/main.php:2 -msgid "Do you really want to send this user a password-reset link?" -msgstr "" - -#: application/views/user/main.php:6 -msgid "Please Wait ..." -msgstr "" - -#: application/views/user/main.php:9 -msgid "Password-reset e-mail sent to user:" -msgstr "" - -#: application/views/user/main.php:30 -msgid "User List" -msgstr "Liste des utilisateurs" - -#: application/views/user/main.php:33 -msgid "Wavelog needs at least one user configured in order to operate." -msgstr "Wavelog a besoin d'au moins un utilisateur configuré pour fonctionner." - -#: application/views/user/main.php:34 -msgid "" -"Users can be assigned roles which give them different permissions, such as " -"adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "" -"Les utilisateurs peuvent se voir attribuer des rôles qui leur donnent " -"différentes autorisations, telles que l'ajout de QSO au journal de trafic et " -"l'accès aux API Wavelog." - -#: application/views/user/main.php:35 -msgid "" -"The currently logged-in user is displayed at the upper-right of each page." -msgstr "" -"L'utilisateur actuellement connecté est affiché en haut à droite de chaque " -"page." - -#: application/views/user/main.php:36 -msgid "" -"With the password reset button, you can send a user an email containing a " -"link to reset their password. To achieve this, ensure that the email " -"settings in the global options are configured correctly." -msgstr "" - -#: application/views/user/main.php:38 -msgid "Create user" -msgstr "Création d'un utilisateur" - -#: application/views/user/main.php:39 -msgid "Refresh List" -msgstr "" - -#: application/views/user/main.php:49 -msgid "Type" -msgstr "" - -#: application/views/user/main.php:50 -msgid "Last seen" -msgstr "" - -#: application/views/user/main.php:53 -msgid "Password Reset" -msgstr "" - -#: application/views/user/main.php:79 -msgid "Never" -msgstr "" - -#: application/views/user/main.php:83 -msgid "Locations" -msgstr "" - -#: application/views/user/main.php:85 -msgid "Logbooks" -msgstr "" - -#: application/views/user/main.php:87 -msgid "Last QSO:" -msgstr "" - -#: application/views/user/main.php:89 -msgid "No QSOs in Log" -msgstr "" - #: application/views/user/profile.php:19 msgid "Level" msgstr "" diff --git a/application/locale/hr/LC_MESSAGES/messages.po b/application/locale/hr/LC_MESSAGES/messages.po index 491c58c76..1e9ecc00d 100644 --- a/application/locale/hr/LC_MESSAGES/messages.po +++ b/application/locale/hr/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-17 17:16+0000\n" +"POT-Creation-Date: 2024-08-21 15:06+0000\n" "PO-Revision-Date: 2024-08-17 10:49+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Croatian , 2024. +# "Francisco (F4VSE)" , 2024. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-17 17:16+0000\n" -"PO-Revision-Date: 2024-08-17 10:47+0000\n" -"Last-Translator: Luca \n" +"POT-Creation-Date: 2024-08-21 15:06+0000\n" +"PO-Revision-Date: 2024-08-18 19:11+0000\n" +"Last-Translator: \"Francisco (F4VSE)\" \n" "Language-Team: Italian \n" "Language: it_IT\n" @@ -16,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.6.2\n" +"X-Generator: Weblate 5.7\n" #: application/controllers/Accumulated.php:13 #: application/controllers/Activators.php:13 @@ -48,8 +49,8 @@ msgstr "" #: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 #: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 #: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:348 -#: application/controllers/Eqsl.php:411 application/controllers/Eqsl.php:427 -#: application/controllers/Eqsl.php:487 application/controllers/Hamsat.php:13 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 application/controllers/Hamsat.php:13 #: application/controllers/Kmlexport.php:18 #: application/controllers/Kmlexport.php:33 #: application/controllers/Labels.php:26 @@ -57,17 +58,17 @@ msgstr "" #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 #: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 #: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 -#: application/controllers/Lotw.php:712 application/controllers/Lotw.php:820 -#: application/controllers/Lotw.php:828 application/controllers/Mode.php:15 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 #: application/controllers/Notes.php:10 application/controllers/Options.php:15 #: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 #: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 #: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 #: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 #: application/controllers/Qso.php:9 application/controllers/Qso.php:19 -#: application/controllers/Qso.php:176 application/controllers/Qso.php:279 -#: application/controllers/Qso.php:299 application/controllers/Qso.php:308 -#: application/controllers/Qso.php:603 application/controllers/Radio.php:259 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:599 application/controllers/Radio.php:259 #: application/controllers/Radio.php:285 application/controllers/Radio.php:301 #: application/controllers/Satellite.php:15 #: application/controllers/Sattimers.php:9 @@ -81,10 +82,11 @@ msgstr "" #: application/controllers/Update.php:24 application/controllers/Update.php:273 #: application/controllers/Update.php:284 #: application/controllers/Update.php:295 -#: application/controllers/Update.php:306 application/controllers/User.php:8 -#: application/controllers/User.php:21 application/controllers/User.php:206 -#: application/controllers/User.php:207 application/controllers/User.php:719 -#: application/controllers/User.php:738 application/controllers/User.php:1021 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 #: application/controllers/User_options.php:9 msgid "You're not allowed to do that!" msgstr "" @@ -105,7 +107,7 @@ msgstr "Mappa locatori attivati" #: application/controllers/Gridmap.php:31 #: application/controllers/Visitor.php:374 #: application/views/activators/index.php:100 -#: application/views/interface_assets/footer.php:42 +#: application/views/interface_assets/footer.php:43 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "Locatori" @@ -219,7 +221,7 @@ msgid "Key Invalid - either not found or disabled" msgstr "Chiave invalida - disattivata o inesistente" #: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 +#: application/views/lotw_views/index.php:91 msgid "Valid" msgstr "Valido" @@ -274,7 +276,7 @@ msgstr "DOK" #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 -#: application/views/lotw_views/index.php:40 +#: application/views/lotw_views/index.php:36 #: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 #: application/views/search/cqzones_result.php:15 #: application/views/search/result.php:27 @@ -353,7 +355,7 @@ msgstr " e " #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:336 #: application/views/search/search_result_ajax.php:9 -#: application/views/station_profile/edit.php:236 +#: application/views/station_profile/edit.php:243 #: application/views/user/edit.php:234 application/views/user/edit.php:256 #: application/views/user/edit.php:278 application/views/user/edit.php:300 #: application/views/user/edit.php:323 @@ -374,7 +376,7 @@ msgstr "SOTA" #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:341 #: application/views/search/search_result_ajax.php:10 -#: application/views/station_profile/edit.php:249 +#: application/views/station_profile/edit.php:256 #: application/views/user/edit.php:235 application/views/user/edit.php:257 #: application/views/user/edit.php:279 application/views/user/edit.php:301 #: application/views/user/edit.php:324 @@ -394,7 +396,7 @@ msgstr "WWFF" #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:346 #: application/views/search/search_result_ajax.php:11 -#: application/views/station_profile/edit.php:262 +#: application/views/station_profile/edit.php:269 #: application/views/user/edit.php:236 application/views/user/edit.php:258 #: application/views/user/edit.php:280 application/views/user/edit.php:302 #: application/views/user/edit.php:325 @@ -664,19 +666,19 @@ msgstr "" msgid "eQSL QSO Upload" msgstr "" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:416 msgid "eQSL Tools" msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid " / Errors: " msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid "Successfully downloaded: " msgstr "" -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:472 msgid "eQSL Card Image Download" msgstr "" @@ -946,7 +948,7 @@ msgstr "" #: application/views/search/result_search.php:16 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:273 -#: application/views/station_profile/edit.php:298 +#: application/views/station_profile/edit.php:305 #: application/views/timeline/index.php:64 application/views/user/edit.php:564 #: application/views/user/edit.php:667 application/views/user/edit.php:731 msgid "eQSL" @@ -960,7 +962,7 @@ msgstr "" #: application/views/awards/waja/index.php:71 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 -#: application/views/station_profile/edit.php:345 +#: application/views/station_profile/edit.php:352 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 #: application/views/view_log/partial/log_ajax.php:83 @@ -1135,7 +1137,7 @@ msgstr "Paese" #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:318 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:208 +#: application/views/station_profile/edit.php:215 #: application/views/timeline/index.php:202 application/views/user/edit.php:233 #: application/views/user/edit.php:255 application/views/user/edit.php:277 #: application/views/user/edit.php:299 application/views/user/edit.php:322 @@ -1359,15 +1361,15 @@ msgstr "Operatore" #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:675 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:159 #: application/views/lookup/index.php:31 -#: application/views/lotw_views/index.php:56 +#: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 #: 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:98 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 #: application/views/stationsetup/stationsetup.php:150 @@ -1397,23 +1399,50 @@ msgstr "" msgid "Logbook of the World" msgstr "" -#: application/controllers/Lotw.php:610 +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "" + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "" + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "" + +#: application/controllers/Lotw.php:413 +#, php-format +msgid "" +"Found no certificate in file %s. If the filename contains 'key-only' this is " +"typically a certificate request which has not been processed by LoTW yet." +msgstr "" + +#: application/controllers/Lotw.php:617 msgid "LoTW ADIF Information" msgstr "" -#: application/controllers/Lotw.php:718 +#: application/controllers/Lotw.php:725 msgid "LoTW ADIF Import" msgstr "" -#: application/controllers/Lotw.php:830 +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "" + +#: application/controllers/Lotw.php:837 msgid "LoTW .TQ8 Upload" msgstr "" -#: application/controllers/Lotw.php:927 application/controllers/Lotw.php:932 +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "" + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 msgid "LoTW .TQ8 Sent" msgstr "" -#: application/controllers/Lotw.php:939 +#: application/controllers/Lotw.php:946 msgid "LoTW .TQ8 Not Sent" msgstr "" @@ -1578,6 +1607,44 @@ msgstr "" msgid "QRB Calculator" msgstr "" +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "" + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" + #: application/controllers/Qrz.php:173 #: application/views/interface_assets/header.php:426 msgid "QRZ Logbook" @@ -1632,7 +1699,7 @@ msgstr "" #: application/controllers/Radio.php:52 #: application/views/logbookadvanced/index.php:527 -#: application/views/lotw_views/index.php:47 +#: application/views/lotw_views/index.php:43 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:171 #: application/views/stationsetup/exportmapoptions.php:5 @@ -1658,13 +1725,13 @@ msgstr "" #: application/controllers/Radio.php:105 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2329 -#: application/views/interface_assets/footer.php:2347 -#: application/views/interface_assets/footer.php:2368 -#: application/views/interface_assets/footer.php:2386 +#: application/views/interface_assets/footer.php:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:519 -#: application/views/lotw_views/index.php:118 +#: application/views/lotw_views/index.php:114 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 #: application/views/qslcard/index.php:65 @@ -1674,7 +1741,7 @@ msgstr "" #: application/views/stationsetup/stationsetup.php:33 #: application/views/stationsetup/stationsetup.php:137 #: application/views/stationsetup/stationsetup.php:192 -#: application/views/themes/index.php:107 application/views/user/main.php:54 +#: application/views/themes/index.php:107 application/views/user/index.php:57 #: application/views/view_log/qso.php:613 msgid "Delete" msgstr "" @@ -1715,6 +1782,7 @@ msgstr "" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 +#: application/views/interface_assets/footer.php:37 #: application/views/interface_assets/header.php:336 #: application/views/interface_assets/header.php:343 #: application/views/logbookadvanced/index.php:516 @@ -1765,8 +1833,8 @@ msgstr "" #: application/views/logbookadvanced/edit.php:18 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:447 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 @@ -1831,8 +1899,8 @@ msgstr "" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:259 -#: application/views/station_profile/edit.php:332 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 msgid "Disabled" @@ -1887,15 +1955,15 @@ msgstr "" #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:28 #: application/views/stationsetup/stationsetup.php:161 -#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/user/index.php:90 application/views/user/index.php:92 msgid "QSO" msgstr "" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 -#: application/views/interface_assets/footer.php:538 -#: application/views/interface_assets/footer.php:547 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 #: application/views/labels/index.php:47 application/views/labels/index.php:83 #: application/views/logbookadvanced/index.php:518 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 @@ -1903,7 +1971,7 @@ msgstr "" #: application/views/search/stored_queries.php:21 #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 -#: application/views/themes/index.php:104 application/views/user/main.php:52 +#: application/views/themes/index.php:104 application/views/user/index.php:52 msgid "Edit" msgstr "" @@ -2017,92 +2085,120 @@ msgstr "" msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/User.php:12 +#: application/controllers/User.php:36 #: application/views/interface_assets/header.php:268 msgid "User Accounts" msgstr "" -#: application/controllers/User.php:52 +#: application/controllers/User.php:76 msgid "Add User" msgstr "" -#: application/controllers/User.php:166 +#: application/controllers/User.php:190 msgid "Users" msgstr "" -#: application/controllers/User.php:240 application/controllers/User.php:673 +#: application/controllers/User.php:264 application/controllers/User.php:697 msgid "Edit User" msgstr "" -#: application/controllers/User.php:665 application/controllers/User.php:668 -#: application/views/user/main.php:3 application/views/user/main.php:46 +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 msgid "User" msgstr "" -#: application/controllers/User.php:665 application/controllers/User.php:668 +#: application/controllers/User.php:689 application/controllers/User.php:692 msgid "edited" msgstr "" -#: application/controllers/User.php:722 +#: application/controllers/User.php:746 msgid "Profile" msgstr "" -#: application/controllers/User.php:779 +#: application/controllers/User.php:803 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." msgstr "" -#: application/controllers/User.php:843 application/controllers/User.php:853 +#: application/controllers/User.php:867 application/controllers/User.php:877 msgid "Login failed. Try again." msgstr "" -#: application/controllers/User.php:860 +#: application/controllers/User.php:884 #: application/views/interface_assets/header.php:356 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:88 msgid "Login" msgstr "" -#: application/controllers/User.php:898 +#: application/controllers/User.php:922 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " "Only administrators are currently allowed to log in." msgstr "" -#: application/controllers/User.php:901 +#: application/controllers/User.php:925 msgid "Incorrect username or password!" msgstr "" -#: application/controllers/User.php:918 +#: application/controllers/User.php:942 #, php-format msgid "User %s logged out." msgstr "" -#: application/controllers/User.php:932 +#: application/controllers/User.php:956 msgid "Password Reset is disabled on the Demo!" msgstr "" -#: application/controllers/User.php:945 +#: application/controllers/User.php:969 msgid "Forgot Password" msgstr "" -#: application/controllers/User.php:995 application/views/user/main.php:8 +#: application/controllers/User.php:1019 application/views/user/index.php:8 msgid "Email settings are incorrect." msgstr "" -#: application/controllers/User.php:999 application/controllers/User.php:1004 +#: application/controllers/User.php:1023 application/controllers/User.php:1028 msgid "Password Reset Processed." msgstr "" -#: application/controllers/User.php:1106 +#: application/controllers/User.php:1129 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "" +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "" + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "" + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "" + #: application/controllers/Visitor.php:50 #: application/controllers/Visitor.php:79 #: application/controllers/Visitor.php:142 @@ -2388,8 +2484,8 @@ msgstr "" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1441 -#: application/views/interface_assets/footer.php:1580 +#: application/views/interface_assets/footer.php:1446 +#: application/views/interface_assets/footer.php:1585 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 @@ -2621,7 +2717,7 @@ msgstr "" #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 -#: application/views/lotw_views/index.php:39 +#: application/views/lotw_views/index.php:35 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 #: application/views/qslcard/index.php:28 @@ -2636,10 +2732,10 @@ msgstr "" #: application/views/search/lotw_unconfirmed_result.php:6 #: application/views/search/result.php:11 #: application/views/simplefle/index.php:142 -#: application/views/station_profile/edit.php:56 +#: application/views/station_profile/edit.php:63 #: application/views/stationsetup/linkedlocations.php:17 -#: application/views/user/edit.php:123 application/views/user/main.php:4 -#: application/views/user/main.php:47 application/views/user/profile.php:29 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 #: application/views/view_log/qso.php:82 application/views/view_log/qso.php:507 msgid "Callsign" msgstr "" @@ -2895,8 +2991,8 @@ msgstr "" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 -#: application/views/interface_assets/footer.php:498 -#: application/views/interface_assets/footer.php:2125 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 msgid "DANGER" msgstr "" @@ -3069,8 +3165,8 @@ msgstr "" #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 -#: application/views/interface_assets/footer.php:44 -#: application/views/interface_assets/footer.php:533 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -3078,8 +3174,6 @@ msgstr "" #: application/views/options/oqrs.php:63 #: application/views/options/radios.php:45 #: application/views/options/version_dialog.php:78 -#: application/views/qso/components/winkeysettings.php:90 -#: application/views/qso/components/winkeysettings_results.php:90 #: application/views/satellite/create.php:70 #: application/views/simplefle/index.php:22 msgid "Save" @@ -3156,7 +3250,7 @@ msgid "Permissions" msgstr "" #: application/views/api/help.php:31 application/views/cron/index.php:52 -#: application/views/lotw_views/index.php:45 +#: application/views/lotw_views/index.php:41 #: application/views/mode/index.php:31 #: application/views/oqrs/showrequests.php:91 #: application/views/sattimers/index.php:39 @@ -3319,8 +3413,8 @@ msgstr "" #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:106 -#: application/views/station_profile/edit.php:146 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 #: application/views/timeline/index.php:231 #: application/views/timeplotter/index.php:44 msgid "CQ Zone" @@ -3364,7 +3458,7 @@ msgstr "" #: application/views/bandmap/list.php:73 #: application/views/dashboard/index.php:245 #: application/views/dashboard/index.php:363 -#: application/views/interface_assets/footer.php:39 +#: application/views/interface_assets/footer.php:40 #: application/views/visitor/index.php:266 msgid "Confirmed" msgstr "Confermato" @@ -3430,7 +3524,7 @@ msgstr "" #: application/views/awards/cq/index.php:56 #: application/views/awards/itu/index.php:56 -#: application/views/interface_assets/footer.php:2104 +#: application/views/interface_assets/footer.php:2109 #: application/views/qso/edit_ajax.php:378 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -3889,8 +3983,8 @@ msgstr "" #: application/views/logbookadvanced/index.php:251 #: application/views/logbookadvanced/index.php:594 #: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:120 -#: application/views/station_profile/edit.php:163 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 msgid "ITU Zone" msgstr "" @@ -3996,8 +4090,8 @@ msgstr "" #: application/views/awards/pota/index.php:31 #: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:177 -#: application/views/station_profile/edit.php:265 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 #: application/views/user/edit.php:595 application/views/view_log/qso.php:303 #: application/views/view_log/qso.php:570 msgid "POTA Reference(s)" @@ -4254,8 +4348,8 @@ msgstr "" #: application/views/awards/wwff/index.php:31 #: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:171 -#: application/views/station_profile/edit.php:252 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 #: application/views/user/edit.php:591 application/views/view_log/qso.php:296 #: application/views/view_log/qso.php:563 msgid "WWFF Reference" @@ -4441,13 +4535,11 @@ msgstr "" #: application/views/bands/index.php:152 #: application/views/contesting/add.php:74 -#: application/views/interface_assets/footer.php:43 -#: application/views/qso/components/winkeysettings.php:91 -#: application/views/qso/components/winkeysettings_results.php:91 +#: application/views/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" -msgstr "" +msgstr "Chiudi" #: application/views/bands/index.php:153 msgid "Warning! Are you sure you want to delete the following band: " @@ -4767,8 +4859,8 @@ msgid "Name of Contest in ADIF-specification" msgstr "" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:48 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "" @@ -4912,8 +5004,8 @@ msgstr "" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:261 -#: application/views/station_profile/edit.php:334 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 msgid "Enabled" @@ -4969,6 +5061,7 @@ msgstr "" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "" @@ -5461,11 +5554,11 @@ msgstr "" #: application/views/debug/index.php:27 msgid "Version" -msgstr "" +msgstr "Versione" #: application/views/debug/index.php:31 msgid "Language" -msgstr "" +msgstr "Lingua" #: application/views/debug/index.php:35 msgid "Base URL" @@ -5553,13 +5646,13 @@ msgstr "" #: application/views/debug/index.php:134 application/views/debug/index.php:145 #: application/views/debug/index.php:157 msgid "Success" -msgstr "" +msgstr "Successo" #: application/views/debug/index.php:114 application/views/debug/index.php:125 #: application/views/debug/index.php:136 application/views/debug/index.php:147 #: application/views/debug/index.php:159 msgid "Failed" -msgstr "" +msgstr "Fallito" #: application/views/debug/index.php:169 msgid "Config Maintenance" @@ -5630,15 +5723,15 @@ msgstr "" #: application/views/debug/index.php:252 application/views/debug/index.php:263 #: application/views/debug/index.php:274 msgid "Installed" -msgstr "" +msgstr "Installato" #: application/views/debug/index.php:232 application/views/debug/index.php:243 #: application/views/debug/index.php:254 application/views/debug/index.php:265 #: application/views/debug/index.php:276 msgid "Not Installed" -msgstr "" +msgstr "Non installato" -#: application/views/debug/index.php:283 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:649 msgid "Settings" msgstr "" @@ -5695,7 +5788,7 @@ msgstr "" #: application/views/debug/index.php:506 application/views/debug/index.php:511 #: application/views/debug/index.php:516 application/views/debug/index.php:521 #: application/views/debug/index.php:526 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/edit.php:49 msgid "Update" msgstr "" @@ -5737,8 +5830,8 @@ msgstr[1] "" #: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:57 -#: application/views/station_profile/edit.php:66 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" @@ -5767,87 +5860,87 @@ msgstr "" #: application/views/debug/index.php:629 msgid "Albanian" -msgstr "" +msgstr "Albanese" #: application/views/debug/index.php:630 msgid "Bosnian" -msgstr "" +msgstr "Bosniaco" #: application/views/debug/index.php:631 msgid "Bulgarian" -msgstr "" +msgstr "Bulgaro" #: application/views/debug/index.php:632 msgid "Chinese (Simplified)" -msgstr "" +msgstr "Cinese (semplificato)" #: application/views/debug/index.php:633 msgid "Croatian" -msgstr "" +msgstr "Croato" #: application/views/debug/index.php:634 msgid "Czech" -msgstr "" +msgstr "Ceco" #: application/views/debug/index.php:635 msgid "Dutch" -msgstr "" +msgstr "Olandese" #: application/views/debug/index.php:636 msgid "English" -msgstr "" +msgstr "Inglese" #: application/views/debug/index.php:637 msgid "Finnish" -msgstr "" +msgstr "Finlandese" #: application/views/debug/index.php:638 msgid "French" -msgstr "" +msgstr "Francese" #: application/views/debug/index.php:639 msgid "German" -msgstr "" +msgstr "Tedesco" #: application/views/debug/index.php:640 msgid "Greek" -msgstr "" +msgstr "Greco" #: application/views/debug/index.php:641 msgid "Italian" -msgstr "" +msgstr "Italiano" #: application/views/debug/index.php:642 msgid "Montenegrin" -msgstr "" +msgstr "Montenegrino" #: application/views/debug/index.php:643 msgid "Polish" -msgstr "" +msgstr "Polacco" #: application/views/debug/index.php:644 msgid "Portuguese" -msgstr "" +msgstr "Portoghese" #: application/views/debug/index.php:645 msgid "Russian" -msgstr "" +msgstr "Russo" #: application/views/debug/index.php:646 msgid "Serbian" -msgstr "" +msgstr "Serbo" #: application/views/debug/index.php:647 msgid "Spanish" -msgstr "" +msgstr "Spagnolo" #: application/views/debug/index.php:648 msgid "Swedish" -msgstr "" +msgstr "Svedese" #: application/views/debug/index.php:649 msgid "Turkish" -msgstr "" +msgstr "Turco" #: application/views/distances/index.php:7 #: application/views/interface_assets/footer.php:30 @@ -6065,10 +6158,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2330 -#: application/views/interface_assets/footer.php:2348 -#: application/views/interface_assets/footer.php:2369 -#: application/views/interface_assets/footer.php:2387 +#: application/views/interface_assets/footer.php:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -6194,184 +6287,192 @@ msgstr "" msgid "OK" msgstr "" -#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/footer.php:38 msgid "Warning! Are you sure you want delete QSO with " msgstr "" -#: application/views/interface_assets/footer.php:38 +#: application/views/interface_assets/footer.php:39 #: application/views/user/edit.php:493 msgid "Colors" msgstr "" -#: application/views/interface_assets/footer.php:40 +#: application/views/interface_assets/footer.php:41 msgid "Worked not confirmed" msgstr "" -#: application/views/interface_assets/footer.php:41 +#: application/views/interface_assets/footer.php:42 msgid "Not worked" msgstr "" -#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:46 #: application/views/qso/index.php:601 #: application/views/visitor/layout/footer.php:245 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:46 +#: application/views/interface_assets/footer.php:47 #: application/views/qso/edit_ajax.php:211 #: application/views/qso/edit_ajax.php:512 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "" -#: application/views/interface_assets/footer.php:47 +#: application/views/interface_assets/footer.php:48 msgid "No states for this DXCC available" msgstr "" -#: application/views/interface_assets/footer.php:129 +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "" + +#: application/views/interface_assets/footer.php:132 #: application/views/interface_assets/header.php:434 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:395 +#: application/views/interface_assets/footer.php:398 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:398 +#: application/views/interface_assets/footer.php:401 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:414 +#: application/views/interface_assets/footer.php:417 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:416 +#: application/views/interface_assets/footer.php:419 #: application/views/search/filter.php:46 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:418 +#: application/views/interface_assets/footer.php:421 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:423 +#: application/views/interface_assets/footer.php:426 #: application/views/search/filter.php:60 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:435 -#: application/views/interface_assets/footer.php:564 -#: application/views/interface_assets/footer.php:628 +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:440 -#: application/views/interface_assets/footer.php:633 +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:461 -#: application/views/interface_assets/footer.php:592 +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 #: application/views/search/filter.php:79 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:499 +#: application/views/interface_assets/footer.php:502 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:513 +#: application/views/interface_assets/footer.php:516 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:522 +#: application/views/interface_assets/footer.php:525 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:548 +#: application/views/interface_assets/footer.php:551 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:552 +#: application/views/interface_assets/footer.php:555 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:678 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:725 +#: application/views/interface_assets/footer.php:730 #: application/views/logbookadvanced/index.php:511 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:726 +#: application/views/interface_assets/footer.php:731 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:727 +#: application/views/interface_assets/footer.php:732 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1162 +#: application/views/interface_assets/footer.php:1167 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "" -#: application/views/interface_assets/footer.php:1368 -#: application/views/interface_assets/footer.php:1372 -#: application/views/interface_assets/footer.php:1375 -#: application/views/interface_assets/footer.php:1512 -#: application/views/interface_assets/footer.php:1516 -#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1375 -#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2106 +#: application/views/interface_assets/footer.php:2111 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2126 +#: application/views/interface_assets/footer.php:2131 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2166 +#: application/views/interface_assets/footer.php:2171 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2168 +#: application/views/interface_assets/footer.php:2173 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2341 -#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 #: application/views/view_log/qso.php:604 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2360 +#: application/views/interface_assets/footer.php:2365 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2398 +#: application/views/interface_assets/footer.php:2403 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2409 -#: application/views/interface_assets/footer.php:2434 +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2445 +#: application/views/interface_assets/footer.php:2450 msgid "Something went wrong. Please try again!" msgstr "" @@ -6961,18 +7062,18 @@ msgstr "" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:209 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:236 -#: application/views/station_profile/create.php:275 -#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 #: application/views/station_profile/create.php:293 -#: application/views/station_profile/edit.php:350 -#: application/views/station_profile/edit.php:358 -#: application/views/station_profile/edit.php:384 -#: application/views/station_profile/edit.php:405 -#: application/views/station_profile/edit.php:423 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 #: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 #: application/views/user/edit.php:347 application/views/user/edit.php:358 #: application/views/user/edit.php:369 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:399 @@ -6999,18 +7100,18 @@ msgstr "Si" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:210 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:237 -#: application/views/station_profile/create.php:276 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/create.php:292 -#: application/views/station_profile/edit.php:351 -#: application/views/station_profile/edit.php:359 -#: application/views/station_profile/edit.php:385 -#: application/views/station_profile/edit.php:406 -#: application/views/station_profile/edit.php:424 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 #: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 #: application/views/user/edit.php:348 application/views/user/edit.php:359 #: application/views/user/edit.php:370 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:400 @@ -7332,7 +7433,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:505 #: application/views/qso/index.php:272 -#: application/views/station_profile/edit.php:85 +#: application/views/station_profile/edit.php:92 msgid "Location" msgstr "Luogo" @@ -7495,58 +7596,58 @@ msgstr "Certificati Disponibili" msgid "Upload Certificate" msgstr "Carica Certificato" -#: application/views/lotw_views/index.php:41 +#: application/views/lotw_views/index.php:37 msgid "QSO Start Date" msgstr "Data di inizio QSO" -#: application/views/lotw_views/index.php:42 +#: application/views/lotw_views/index.php:38 msgid "QSO End Date" msgstr "Data di fine QSO" -#: application/views/lotw_views/index.php:43 +#: application/views/lotw_views/index.php:39 msgid "Date Created" msgstr "Data di Creazione" -#: application/views/lotw_views/index.php:44 +#: application/views/lotw_views/index.php:40 msgid "Date Expires" msgstr "Data di Scadenza" -#: application/views/lotw_views/index.php:46 +#: application/views/lotw_views/index.php:42 #: application/views/view_log/qso.php:404 msgid "Last Upload" msgstr "Last upload" -#: application/views/lotw_views/index.php:91 +#: application/views/lotw_views/index.php:87 msgid "Expired" msgstr "Scaduto" -#: application/views/lotw_views/index.php:93 +#: application/views/lotw_views/index.php:89 msgid "Expiring" msgstr "" -#: application/views/lotw_views/index.php:105 +#: application/views/lotw_views/index.php:101 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:108 +#: application/views/lotw_views/index.php:104 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:114 +#: application/views/lotw_views/index.php:110 msgid "Not Synced" msgstr "Non Sincronizzato" -#: application/views/lotw_views/index.php:129 +#: application/views/lotw_views/index.php:125 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "Devi caricare dei certificati p12 LoTW per abilitare questa area." -#: application/views/lotw_views/index.php:144 +#: application/views/lotw_views/index.php:140 msgid "Information" msgstr "Informazione" -#: application/views/lotw_views/index.php:149 +#: application/views/lotw_views/index.php:145 msgid "Manual Sync" msgstr "Sincronizzazione Manuale" @@ -8058,7 +8159,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:64 #: application/views/oqrs/showrequests.php:87 -#: application/views/user/main.php:48 application/views/user/profile.php:24 +#: application/views/user/index.php:48 application/views/user/profile.php:24 msgid "E-mail" msgstr "" @@ -8381,35 +8482,20 @@ msgid "" "queue." msgstr "" -#: application/views/qso/components/winkeysettings.php:7 -#: application/views/qso/components/winkeysettings_results.php:7 -msgid "Winkey Macros" -msgstr "" - -#: application/views/qso/components/winkeysettings.php:12 -#: application/views/qso/components/winkeysettings.php:28 -#: application/views/qso/components/winkeysettings.php:44 -#: application/views/qso/components/winkeysettings.php:60 -#: application/views/qso/components/winkeysettings.php:76 -#: application/views/qso/components/winkeysettings_results.php:12 -#: application/views/qso/components/winkeysettings_results.php:28 -#: application/views/qso/components/winkeysettings_results.php:44 -#: application/views/qso/components/winkeysettings_results.php:60 -#: application/views/qso/components/winkeysettings_results.php:76 -#, php-format -msgid "Function %d - Name" -msgstr "" - +#: application/views/qso/components/winkeysettings.php:3 #: application/views/qso/components/winkeysettings.php:19 #: application/views/qso/components/winkeysettings.php:35 #: application/views/qso/components/winkeysettings.php:51 #: application/views/qso/components/winkeysettings.php:67 -#: application/views/qso/components/winkeysettings.php:83 -#: application/views/qso/components/winkeysettings_results.php:19 -#: application/views/qso/components/winkeysettings_results.php:35 -#: application/views/qso/components/winkeysettings_results.php:51 -#: application/views/qso/components/winkeysettings_results.php:67 -#: application/views/qso/components/winkeysettings_results.php:83 +#, php-format +msgid "Function %d - Name" +msgstr "" + +#: application/views/qso/components/winkeysettings.php:10 +#: application/views/qso/components/winkeysettings.php:26 +#: application/views/qso/components/winkeysettings.php:42 +#: application/views/qso/components/winkeysettings.php:58 +#: application/views/qso/components/winkeysettings.php:74 #, php-format msgid "Function %d - Macro" msgstr "" @@ -8529,7 +8615,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:5 application/views/qso/index.php:694 +#: application/views/qso/index.php:5 application/views/qso/index.php:690 msgid "Previous Contacts" msgstr "Contatti Precedenti" @@ -8570,16 +8656,16 @@ msgid "Search DXCluster for latest Spot" msgstr "" #: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:149 -#: application/views/station_profile/edit.php:211 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 #: application/views/user/edit.php:583 application/views/view_log/qso.php:282 #: application/views/view_log/qso.php:549 msgid "IOTA Reference" msgstr "Referenza IOTA" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:165 -#: application/views/station_profile/edit.php:239 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 #: application/views/user/edit.php:587 application/views/view_log/qso.php:289 #: application/views/view_log/qso.php:556 msgid "SOTA Reference" @@ -8645,15 +8731,19 @@ msgstr "" msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:673 msgid "Suggestions" msgstr "Suggerimenti" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:680 msgid "Profile Picture" msgstr "Immagine Profilo" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:704 msgid "Max. 5 previous contacts are shown" msgstr "" @@ -9231,116 +9321,116 @@ msgid "" "%sthis article%s of our Wiki." msgstr "" -#: application/views/station_profile/create.php:51 -#: application/views/station_profile/edit.php:60 +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:52 -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:62 +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:62 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:59 -#: application/views/station_profile/edit.php:68 +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 msgid "Station callsign. For example: 4W7EST/P" msgstr "" -#: application/views/station_profile/create.php:63 -#: application/views/station_profile/edit.php:72 +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 msgid "Station Power (W)" msgstr "" -#: application/views/station_profile/create.php:65 -#: application/views/station_profile/edit.php:74 +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" -#: application/views/station_profile/create.php:68 -#: application/views/station_profile/edit.php:89 +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 msgid "Station DXCC" msgstr "" -#: application/views/station_profile/create.php:71 -#: application/views/station_profile/edit.php:92 +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 msgctxt "DXCC selection" msgid "None" msgstr "" -#: application/views/station_profile/create.php:78 -#: application/views/station_profile/edit.php:105 +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:83 -#: application/views/station_profile/edit.php:111 +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 msgid "Station City" msgstr "" -#: application/views/station_profile/create.php:85 -#: application/views/station_profile/edit.php:113 +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:94 -#: application/views/station_profile/edit.php:125 -msgid "Station state. Applies to certain countries only." -msgstr "" - -#: application/views/station_profile/create.php:99 -#: application/views/station_profile/edit.php:130 -msgid "Station County" -msgstr "" - #: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:132 +msgid "Station state. Applies to certain countries only." +msgstr "" + +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 +msgid "Station County" +msgstr "" + +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/edit.php:158 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:158 -#: application/views/station_profile/edit.php:175 -#: application/views/station_profile/edit.php:199 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 msgid "click here" msgstr "" -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/edit.php:175 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:135 -#: application/views/station_profile/edit.php:187 -#: application/views/station_profile/edit.php:190 +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 msgid "Station Gridsquare" msgstr "" -#: application/views/station_profile/create.php:140 -#: application/views/station_profile/edit.php:195 +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 msgid "Get Gridsquare" msgstr "" -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:199 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 #, php-format msgctxt "uses 'click here'" msgid "" @@ -9348,247 +9438,247 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:145 -#: application/views/station_profile/edit.php:200 +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" -#: application/views/station_profile/create.php:160 -#: application/views/station_profile/edit.php:225 +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 msgid "Station IOTA reference. For example: EU-005" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:226 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:226 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:241 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:241 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:254 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:254 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:267 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:267 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 #, php-format msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:183 -#: application/views/station_profile/edit.php:280 +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 msgid "Signature Name" msgstr "" -#: application/views/station_profile/create.php:185 -#: application/views/station_profile/edit.php:282 +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 msgid "Station Signature (e.g. GMA).." msgstr "" -#: application/views/station_profile/create.php:189 -#: application/views/station_profile/edit.php:286 +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 msgid "Signature Information" msgstr "" -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/edit.php:288 +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "" -#: application/views/station_profile/create.php:195 -#: application/views/station_profile/edit.php:301 +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:197 -#: application/views/station_profile/edit.php:303 +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "" -#: application/views/station_profile/create.php:201 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 msgid "Default QSLMSG" msgstr "" -#: application/views/station_profile/create.php:204 -#: application/views/station_profile/edit.php:309 +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "" -#: application/views/station_profile/create.php:207 -#: application/views/station_profile/edit.php:348 +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:212 -#: application/views/station_profile/edit.php:353 +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " "Clublog. If this is deactivated on it's own please check if the Call is " "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:215 -#: application/views/station_profile/edit.php:356 +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 msgid "ClubLog Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:224 -#: application/views/station_profile/edit.php:372 -msgid "HRDLog.net Username" -msgstr "" - -#: application/views/station_profile/create.php:226 -#: application/views/station_profile/edit.php:374 -msgid "" -"The username you are registered with at HRDlog.net (usually your callsign)." -msgstr "" - -#: application/views/station_profile/create.php:229 -#: application/views/station_profile/edit.php:377 -msgid "HRDLog.net API Key" -msgstr "" - #: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:379 +msgid "HRDLog.net Username" +msgstr "" + +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 +msgid "" +"The username you are registered with at HRDlog.net (usually your callsign)." +msgstr "" + +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 +msgid "HRDLog.net API Key" +msgstr "" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:379 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:234 -#: application/views/station_profile/edit.php:382 +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 msgid "HRDLog.net Logbook Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:243 -#: application/views/station_profile/edit.php:317 +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 msgid "Subscription Required" msgstr "" -#: application/views/station_profile/create.php:248 +#: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:326 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:326 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/edit.php:330 +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 msgid "QRZ.com Logbook Upload" msgstr "" -#: application/views/station_profile/create.php:260 -#: application/views/station_profile/edit.php:333 +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:268 -#: application/views/station_profile/edit.php:398 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:400 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:400 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:273 -#: application/views/station_profile/edit.php:403 +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 msgid "QO-100 Dx Club Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:283 -#: application/views/station_profile/edit.php:421 -msgid "OQRS Enabled" -msgstr "" - #: application/views/station_profile/create.php:290 #: application/views/station_profile/edit.php:428 +msgid "OQRS Enabled" +msgstr "" + +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 msgid "OQRS Email alert" msgstr "" -#: application/views/station_profile/create.php:295 -#: application/views/station_profile/edit.php:433 +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 msgid "Make sure email is set up under admin and global options." msgstr "" -#: application/views/station_profile/create.php:298 -#: application/views/station_profile/edit.php:436 +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 msgid "OQRS Text" msgstr "" -#: application/views/station_profile/create.php:300 -#: application/views/station_profile/edit.php:438 +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 msgid "Some info you want to add regarding QSL'ing." msgstr "" -#: application/views/station_profile/edit.php:142 +#: application/views/station_profile/edit.php:149 msgid "Zones" msgstr "" -#: application/views/station_profile/edit.php:277 +#: application/views/station_profile/edit.php:284 msgid "Signature" msgstr "" @@ -10013,7 +10103,7 @@ msgstr "" msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:42 application/views/update/index.php:62 msgid "Re-check all QSOs in logbook" msgstr "" @@ -10039,6 +10129,13 @@ msgstr "" msgid "Update distance data" msgstr "" +#: application/views/update/index.php:61 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" + #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "" @@ -10450,6 +10547,122 @@ msgstr "" msgid "You can reset your password here." msgstr "" +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "" + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "" + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "" + #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" msgstr "" @@ -10475,84 +10688,6 @@ msgstr "" msgid "Keep me logged in" msgstr "" -#: application/views/user/main.php:2 -msgid "Do you really want to send this user a password-reset link?" -msgstr "" - -#: application/views/user/main.php:6 -msgid "Please Wait ..." -msgstr "" - -#: application/views/user/main.php:9 -msgid "Password-reset e-mail sent to user:" -msgstr "" - -#: application/views/user/main.php:30 -msgid "User List" -msgstr "" - -#: application/views/user/main.php:33 -msgid "Wavelog needs at least one user configured in order to operate." -msgstr "" - -#: application/views/user/main.php:34 -msgid "" -"Users can be assigned roles which give them different permissions, such as " -"adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "" - -#: application/views/user/main.php:35 -msgid "" -"The currently logged-in user is displayed at the upper-right of each page." -msgstr "" - -#: application/views/user/main.php:36 -msgid "" -"With the password reset button, you can send a user an email containing a " -"link to reset their password. To achieve this, ensure that the email " -"settings in the global options are configured correctly." -msgstr "" - -#: application/views/user/main.php:38 -msgid "Create user" -msgstr "" - -#: application/views/user/main.php:39 -msgid "Refresh List" -msgstr "" - -#: application/views/user/main.php:49 -msgid "Type" -msgstr "" - -#: application/views/user/main.php:50 -msgid "Last seen" -msgstr "" - -#: application/views/user/main.php:53 -msgid "Password Reset" -msgstr "" - -#: application/views/user/main.php:79 -msgid "Never" -msgstr "" - -#: application/views/user/main.php:83 -msgid "Locations" -msgstr "" - -#: application/views/user/main.php:85 -msgid "Logbooks" -msgstr "" - -#: application/views/user/main.php:87 -msgid "Last QSO:" -msgstr "" - -#: application/views/user/main.php:89 -msgid "No QSOs in Log" -msgstr "" - #: application/views/user/profile.php:19 msgid "Level" msgstr "" diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.po b/application/locale/nl_NL/LC_MESSAGES/messages.po index 4500fc4e0..0cc95c19f 100644 --- a/application/locale/nl_NL/LC_MESSAGES/messages.po +++ b/application/locale/nl_NL/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-17 17:16+0000\n" +"POT-Creation-Date: 2024-08-21 15:06+0000\n" "PO-Revision-Date: 2024-08-17 10:47+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Dutch \n" "Language-Team: Polish \n" "Language-Team: Portuguese (Portugal) \n" @@ -18,7 +18,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 5.6.2\n" +"X-Generator: Weblate 5.7\n" #: application/controllers/Accumulated.php:13 #: application/controllers/Activators.php:13 @@ -50,8 +50,8 @@ msgstr "" #: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 #: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 #: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:348 -#: application/controllers/Eqsl.php:411 application/controllers/Eqsl.php:427 -#: application/controllers/Eqsl.php:487 application/controllers/Hamsat.php:13 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 application/controllers/Hamsat.php:13 #: application/controllers/Kmlexport.php:18 #: application/controllers/Kmlexport.php:33 #: application/controllers/Labels.php:26 @@ -59,17 +59,17 @@ msgstr "" #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 #: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 #: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 -#: application/controllers/Lotw.php:712 application/controllers/Lotw.php:820 -#: application/controllers/Lotw.php:828 application/controllers/Mode.php:15 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 #: application/controllers/Notes.php:10 application/controllers/Options.php:15 #: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 #: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 #: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 #: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 #: application/controllers/Qso.php:9 application/controllers/Qso.php:19 -#: application/controllers/Qso.php:176 application/controllers/Qso.php:279 -#: application/controllers/Qso.php:299 application/controllers/Qso.php:308 -#: application/controllers/Qso.php:603 application/controllers/Radio.php:259 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:599 application/controllers/Radio.php:259 #: application/controllers/Radio.php:285 application/controllers/Radio.php:301 #: application/controllers/Satellite.php:15 #: application/controllers/Sattimers.php:9 @@ -83,10 +83,11 @@ msgstr "" #: application/controllers/Update.php:24 application/controllers/Update.php:273 #: application/controllers/Update.php:284 #: application/controllers/Update.php:295 -#: application/controllers/Update.php:306 application/controllers/User.php:8 -#: application/controllers/User.php:21 application/controllers/User.php:206 -#: application/controllers/User.php:207 application/controllers/User.php:719 -#: application/controllers/User.php:738 application/controllers/User.php:1021 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 #: application/controllers/User_options.php:9 msgid "You're not allowed to do that!" msgstr "Não é permitido fazer isso!" @@ -107,7 +108,7 @@ msgstr "Mapa Gridsquare activadas" #: application/controllers/Gridmap.php:31 #: application/controllers/Visitor.php:374 #: application/views/activators/index.php:100 -#: application/views/interface_assets/footer.php:42 +#: application/views/interface_assets/footer.php:43 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "Gridsquares" @@ -221,7 +222,7 @@ msgid "Key Invalid - either not found or disabled" msgstr "Chave inválida - não encontrada ou desactivada" #: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 +#: application/views/lotw_views/index.php:91 msgid "Valid" msgstr "Válido" @@ -276,7 +277,7 @@ msgstr "DOK" #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 -#: application/views/lotw_views/index.php:40 +#: application/views/lotw_views/index.php:36 #: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 #: application/views/search/cqzones_result.php:15 #: application/views/search/result.php:27 @@ -355,7 +356,7 @@ msgstr " e " #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:336 #: application/views/search/search_result_ajax.php:9 -#: application/views/station_profile/edit.php:236 +#: application/views/station_profile/edit.php:243 #: application/views/user/edit.php:234 application/views/user/edit.php:256 #: application/views/user/edit.php:278 application/views/user/edit.php:300 #: application/views/user/edit.php:323 @@ -376,7 +377,7 @@ msgstr "SOTA" #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:341 #: application/views/search/search_result_ajax.php:10 -#: application/views/station_profile/edit.php:249 +#: application/views/station_profile/edit.php:256 #: application/views/user/edit.php:235 application/views/user/edit.php:257 #: application/views/user/edit.php:279 application/views/user/edit.php:301 #: application/views/user/edit.php:324 @@ -396,7 +397,7 @@ msgstr "WWFF" #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:346 #: application/views/search/search_result_ajax.php:11 -#: application/views/station_profile/edit.php:262 +#: application/views/station_profile/edit.php:269 #: application/views/user/edit.php:236 application/views/user/edit.php:258 #: application/views/user/edit.php:280 application/views/user/edit.php:302 #: application/views/user/edit.php:325 @@ -669,19 +670,19 @@ msgstr "Informações de importação eQSL" msgid "eQSL QSO Upload" msgstr "Upload de contactos eQSL" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:416 msgid "eQSL Tools" msgstr "Ferramentas eQSL" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid " / Errors: " msgstr " / Erros: " -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid "Successfully downloaded: " msgstr "Descarregado com sucesso: " -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:472 msgid "eQSL Card Image Download" msgstr "Descarregar Imagem do cartão eQSL" @@ -956,7 +957,7 @@ msgstr "LoTW" #: application/views/search/result_search.php:16 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:273 -#: application/views/station_profile/edit.php:298 +#: application/views/station_profile/edit.php:305 #: application/views/timeline/index.php:64 application/views/user/edit.php:564 #: application/views/user/edit.php:667 application/views/user/edit.php:731 msgid "eQSL" @@ -970,7 +971,7 @@ msgstr "eQSL" #: application/views/awards/waja/index.php:71 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 -#: application/views/station_profile/edit.php:345 +#: application/views/station_profile/edit.php:352 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 #: application/views/view_log/partial/log_ajax.php:83 @@ -1145,7 +1146,7 @@ msgstr "País" #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:318 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:208 +#: application/views/station_profile/edit.php:215 #: application/views/timeline/index.php:202 application/views/user/edit.php:233 #: application/views/user/edit.php:255 application/views/user/edit.php:277 #: application/views/user/edit.php:299 application/views/user/edit.php:322 @@ -1369,15 +1370,15 @@ msgstr "Operador" #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:675 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:159 #: application/views/lookup/index.php:31 -#: application/views/lotw_views/index.php:56 +#: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 #: 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:98 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 #: application/views/stationsetup/stationsetup.php:150 @@ -1407,23 +1408,53 @@ msgstr "Consulta rápida" msgid "Logbook of the World" msgstr "Logbook of the World" -#: application/controllers/Lotw.php:610 +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "Certificado Importado." + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "Certificado atualizado." + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "Certificado eliminado." + +#: application/controllers/Lotw.php:413 +#, php-format +msgid "" +"Found no certificate in file %s. If the filename contains 'key-only' this is " +"typically a certificate request which has not been processed by LoTW yet." +msgstr "" +"Não foi encontrado nenhum certificado no ficheiro %s. Se o nome do ficheiro " +"contiver 'key-only', isto é tipicamente um pedido de certificado que ainda " +"não foi processado pelo LoTW." + +#: application/controllers/Lotw.php:617 msgid "LoTW ADIF Information" msgstr "Informações sobre o ADIF LoTW" -#: application/controllers/Lotw.php:718 +#: application/controllers/Lotw.php:725 msgid "LoTW ADIF Import" msgstr "Importação ADIF LoTW" -#: application/controllers/Lotw.php:830 +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "Não definiu as suas credenciais LoTW da ARRL !" + +#: application/controllers/Lotw.php:837 msgid "LoTW .TQ8 Upload" msgstr "Enviar .TQ8 LoTW" -#: application/controllers/Lotw.php:927 application/controllers/Lotw.php:932 +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "O seu nome de utilizador e/ou palavra-passe da ARRL está incorreto." + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 msgid "LoTW .TQ8 Sent" msgstr ".TQ8 LoTW enviado" -#: application/controllers/Lotw.php:939 +#: application/controllers/Lotw.php:946 msgid "LoTW .TQ8 Not Sent" msgstr ".TQ8 LoTW não enviado" @@ -1590,6 +1621,46 @@ msgstr "Pedidos OQRS" msgid "QRB Calculator" msgstr "Calculadora QRB" +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "Latitude: %s, Longitude: %s" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "A distância entre %s e %s é de %s milha." +msgstr[1] "A distância entre %s e %s é de %s milhas." + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "A distância entre %s e %s é de %s milha náutica." +msgstr[1] "A distância entre %s e %s é de %s milhas náuticas." + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "A distância entre %s e %s é de %s quilómetro." +msgstr[1] "A distância entre %s e %s é de %s quilómetros." + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "O rumo é %s." + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" +"Latitudes negativas estão a sul do equador, longitudes negativas estão a " +"oeste de Greenwich." + #: application/controllers/Qrz.php:173 #: application/views/interface_assets/header.php:426 msgid "QRZ Logbook" @@ -1644,7 +1715,7 @@ msgstr "Registo de data e hora" #: application/controllers/Radio.php:52 #: application/views/logbookadvanced/index.php:527 -#: application/views/lotw_views/index.php:47 +#: application/views/lotw_views/index.php:43 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:171 #: application/views/stationsetup/exportmapoptions.php:5 @@ -1670,13 +1741,13 @@ msgstr "Predefinição (clique para libertar)" #: application/controllers/Radio.php:105 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2329 -#: application/views/interface_assets/footer.php:2347 -#: application/views/interface_assets/footer.php:2368 -#: application/views/interface_assets/footer.php:2386 +#: application/views/interface_assets/footer.php:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:519 -#: application/views/lotw_views/index.php:118 +#: application/views/lotw_views/index.php:114 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 #: application/views/qslcard/index.php:65 @@ -1686,7 +1757,7 @@ msgstr "Predefinição (clique para libertar)" #: application/views/stationsetup/stationsetup.php:33 #: application/views/stationsetup/stationsetup.php:137 #: application/views/stationsetup/stationsetup.php:192 -#: application/views/themes/index.php:107 application/views/user/main.php:54 +#: application/views/themes/index.php:107 application/views/user/index.php:57 #: application/views/view_log/qso.php:613 msgid "Delete" msgstr "Apagar" @@ -1727,6 +1798,7 @@ msgstr "Tempos dos satélite" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 +#: application/views/interface_assets/footer.php:37 #: application/views/interface_assets/header.php:336 #: application/views/interface_assets/header.php:343 #: application/views/logbookadvanced/index.php:516 @@ -1779,8 +1851,8 @@ msgstr "Editar localização da estação: " #: application/views/logbookadvanced/edit.php:18 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:447 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 @@ -1845,8 +1917,8 @@ msgstr "Erro. A ligação já está a ser utilizada!" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:259 -#: application/views/station_profile/edit.php:332 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 msgid "Disabled" @@ -1905,15 +1977,15 @@ msgstr "Estação ativa" #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:28 #: application/views/stationsetup/stationsetup.php:161 -#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/user/index.php:90 application/views/user/index.php:92 msgid "QSO" msgstr "Contacto" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 -#: application/views/interface_assets/footer.php:538 -#: application/views/interface_assets/footer.php:547 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 #: application/views/labels/index.php:47 application/views/labels/index.php:83 #: application/views/logbookadvanced/index.php:518 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 @@ -1921,7 +1993,7 @@ msgstr "Contacto" #: application/views/search/stored_queries.php:21 #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 -#: application/views/themes/index.php:104 application/views/user/main.php:52 +#: application/views/themes/index.php:104 application/views/user/index.php:52 msgid "Edit" msgstr "Editar" @@ -2039,37 +2111,37 @@ msgstr "Excepções do DXCC:" msgid "Dxcc Prefixes:" msgstr "Prefixos DXCC:" -#: application/controllers/User.php:12 +#: application/controllers/User.php:36 #: application/views/interface_assets/header.php:268 msgid "User Accounts" msgstr "Contas de utilizadores" -#: application/controllers/User.php:52 +#: application/controllers/User.php:76 msgid "Add User" msgstr "Adicionar utilizador" -#: application/controllers/User.php:166 +#: application/controllers/User.php:190 msgid "Users" msgstr "Utilizadores" -#: application/controllers/User.php:240 application/controllers/User.php:673 +#: application/controllers/User.php:264 application/controllers/User.php:697 msgid "Edit User" msgstr "Editar utilizador" -#: application/controllers/User.php:665 application/controllers/User.php:668 -#: application/views/user/main.php:3 application/views/user/main.php:46 +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 msgid "User" msgstr "Utilizador" -#: application/controllers/User.php:665 application/controllers/User.php:668 +#: application/controllers/User.php:689 application/controllers/User.php:692 msgid "edited" msgstr "editado" -#: application/controllers/User.php:722 +#: application/controllers/User.php:746 msgid "Profile" msgstr "Perfil" -#: application/controllers/User.php:779 +#: application/controllers/User.php:803 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." @@ -2077,18 +2149,18 @@ msgstr "" "Parabéns! O Wavelog foi instalado com sucesso. Pode agora fazer login pela " "primeira vez." -#: application/controllers/User.php:843 application/controllers/User.php:853 +#: application/controllers/User.php:867 application/controllers/User.php:877 msgid "Login failed. Try again." msgstr "O login falhou. Tente novamente." -#: application/controllers/User.php:860 +#: application/controllers/User.php:884 #: application/views/interface_assets/header.php:356 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:88 msgid "Login" msgstr "Iniciar sessão" -#: application/controllers/User.php:898 +#: application/controllers/User.php:922 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " @@ -2099,38 +2171,70 @@ msgstr "" "administrador. Atualmente, apenas os administradores têm permissão para " "iniciar sessão." -#: application/controllers/User.php:901 +#: application/controllers/User.php:925 msgid "Incorrect username or password!" msgstr "Nome de utilizador ou palavra-passe incorrectos!" -#: application/controllers/User.php:918 +#: application/controllers/User.php:942 #, php-format msgid "User %s logged out." msgstr "O utilizador %s terminou a sessão." -#: application/controllers/User.php:932 +#: application/controllers/User.php:956 msgid "Password Reset is disabled on the Demo!" msgstr "A reposição da palavra-passe está desactivada na Demo!" -#: application/controllers/User.php:945 +#: application/controllers/User.php:969 msgid "Forgot Password" msgstr "Esqueci-me da palavra-passe" -#: application/controllers/User.php:995 application/views/user/main.php:8 +#: application/controllers/User.php:1019 application/views/user/index.php:8 msgid "Email settings are incorrect." msgstr "As definições de e-mail estão incorrectas." -#: application/controllers/User.php:999 application/controllers/User.php:1004 +#: application/controllers/User.php:1023 application/controllers/User.php:1028 msgid "Password Reset Processed." msgstr "A redefinição da palavra-passe foi processada." -#: application/controllers/User.php:1106 +#: application/controllers/User.php:1129 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "Redefinir a palavra-passe" +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" +"Atualmente, não pode personificar outro utilizador. Por favor, altera a " +"encryption_key no seu ficheiro config.php primeiro!" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "Hash inválido" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "O hash de personificação é muito antigo. Por favor, tente novamente." + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" +"Não pode fazer-se passar por outro utilizador enquanto não estiver " +"autenticado como o utilizador de origem" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "Houve um problema com a sua sessão. Por favor, tente novamente." + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "O utilizador solicitado para imitar não existe" + #: application/controllers/Visitor.php:50 #: application/controllers/Visitor.php:79 #: application/controllers/Visitor.php:142 @@ -2426,8 +2530,8 @@ msgstr "Diferença" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1441 -#: application/views/interface_assets/footer.php:1580 +#: application/views/interface_assets/footer.php:1446 +#: application/views/interface_assets/footer.php:1585 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 @@ -2659,7 +2763,7 @@ msgstr "Nada encontrado!" #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 -#: application/views/lotw_views/index.php:39 +#: application/views/lotw_views/index.php:35 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 #: application/views/qslcard/index.php:28 @@ -2674,10 +2778,10 @@ msgstr "Nada encontrado!" #: application/views/search/lotw_unconfirmed_result.php:6 #: application/views/search/result.php:11 #: application/views/simplefle/index.php:142 -#: application/views/station_profile/edit.php:56 +#: application/views/station_profile/edit.php:63 #: application/views/stationsetup/linkedlocations.php:17 -#: application/views/user/edit.php:123 application/views/user/main.php:4 -#: application/views/user/main.php:47 application/views/user/profile.php:29 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 #: application/views/view_log/qso.php:82 application/views/view_log/qso.php:507 msgid "Callsign" msgstr "Indicativo" @@ -2935,8 +3039,8 @@ msgstr "Usar sempre o indicativo de login como nome do operador na importação" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 -#: application/views/interface_assets/footer.php:498 -#: application/views/interface_assets/footer.php:2125 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 msgid "DANGER" msgstr "PERIGO" @@ -3127,8 +3231,8 @@ msgstr "Nome simples para descrever a utilização desta API." #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 -#: application/views/interface_assets/footer.php:44 -#: application/views/interface_assets/footer.php:533 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -3136,8 +3240,6 @@ msgstr "Nome simples para descrever a utilização desta API." #: application/views/options/oqrs.php:63 #: application/views/options/radios.php:45 #: application/views/options/version_dialog.php:78 -#: application/views/qso/components/winkeysettings.php:90 -#: application/views/qso/components/winkeysettings_results.php:90 #: application/views/satellite/create.php:70 #: application/views/simplefle/index.php:22 msgid "Save" @@ -3223,7 +3325,7 @@ msgid "Permissions" msgstr "Permissões" #: application/views/api/help.php:31 application/views/cron/index.php:52 -#: application/views/lotw_views/index.php:45 +#: application/views/lotw_views/index.php:41 #: application/views/mode/index.php:31 #: application/views/oqrs/showrequests.php:91 #: application/views/sattimers/index.php:39 @@ -3395,8 +3497,8 @@ msgstr "Total" #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:106 -#: application/views/station_profile/edit.php:146 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 #: application/views/timeline/index.php:231 #: application/views/timeplotter/index.php:44 msgid "CQ Zone" @@ -3446,7 +3548,7 @@ msgstr "Diplomas - CQ Magazine WAZ" #: application/views/bandmap/list.php:73 #: application/views/dashboard/index.php:245 #: application/views/dashboard/index.php:363 -#: application/views/interface_assets/footer.php:39 +#: application/views/interface_assets/footer.php:40 #: application/views/visitor/index.php:266 msgid "Confirmed" msgstr "Confirmado" @@ -3512,7 +3614,7 @@ msgstr "Mostrar contactos com tipo de QSL" #: application/views/awards/cq/index.php:56 #: application/views/awards/itu/index.php:56 -#: application/views/interface_assets/footer.php:2104 +#: application/views/interface_assets/footer.php:2109 #: application/views/qso/edit_ajax.php:378 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -4033,8 +4135,8 @@ msgstr "Suprimido" #: application/views/logbookadvanced/index.php:251 #: application/views/logbookadvanced/index.php:594 #: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:120 -#: application/views/station_profile/edit.php:163 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 msgid "ITU Zone" msgstr "Zona ITU" @@ -4161,8 +4263,8 @@ msgstr "" #: application/views/awards/pota/index.php:31 #: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:177 -#: application/views/station_profile/edit.php:265 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 #: application/views/user/edit.php:595 application/views/view_log/qso.php:303 #: application/views/view_log/qso.php:570 msgid "POTA Reference(s)" @@ -4469,8 +4571,8 @@ msgstr "" #: application/views/awards/wwff/index.php:31 #: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:171 -#: application/views/station_profile/edit.php:252 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 #: application/views/user/edit.php:591 application/views/view_log/qso.php:296 #: application/views/view_log/qso.php:563 msgid "WWFF Reference" @@ -4671,9 +4773,7 @@ msgstr "Criar uma banda" #: application/views/bands/index.php:152 #: application/views/contesting/add.php:74 -#: application/views/interface_assets/footer.php:43 -#: application/views/qso/components/winkeysettings.php:91 -#: application/views/qso/components/winkeysettings_results.php:91 +#: application/views/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -5003,8 +5103,8 @@ msgid "Name of Contest in ADIF-specification" msgstr "Nome do Concurso na especificação ADIF" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:48 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "Criar" @@ -5149,8 +5249,8 @@ msgstr "Identificador" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:261 -#: application/views/station_profile/edit.php:334 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 msgid "Enabled" @@ -5206,6 +5306,7 @@ msgstr "Introduza a sua própria expressão Cron" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "Cancelar" @@ -5904,7 +6005,7 @@ msgstr "Instalado" msgid "Not Installed" msgstr "Não instalado" -#: application/views/debug/index.php:283 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:649 msgid "Settings" msgstr "Configurações" @@ -5961,7 +6062,7 @@ msgstr "Atualização do DXCC via Club Log" #: application/views/debug/index.php:506 application/views/debug/index.php:511 #: application/views/debug/index.php:516 application/views/debug/index.php:521 #: application/views/debug/index.php:526 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/edit.php:49 msgid "Update" msgstr "Atualização" @@ -6005,8 +6106,8 @@ msgstr[1] "" #: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:57 -#: application/views/station_profile/edit.php:66 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" @@ -6364,10 +6465,10 @@ msgid "QSL Date" msgstr "Data QSL" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2330 -#: application/views/interface_assets/footer.php:2348 -#: application/views/interface_assets/footer.php:2369 -#: application/views/interface_assets/footer.php:2387 +#: application/views/interface_assets/footer.php:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -6504,30 +6605,30 @@ msgstr "Atenção" msgid "OK" msgstr "OK" -#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/footer.php:38 msgid "Warning! Are you sure you want delete QSO with " msgstr "Atenção! Tem a certeza que quer apagar o contacto com " -#: application/views/interface_assets/footer.php:38 +#: application/views/interface_assets/footer.php:39 #: application/views/user/edit.php:493 msgid "Colors" msgstr "Cores" -#: application/views/interface_assets/footer.php:40 +#: application/views/interface_assets/footer.php:41 msgid "Worked not confirmed" msgstr "Contactado mas não confirmado" -#: application/views/interface_assets/footer.php:41 +#: application/views/interface_assets/footer.php:42 msgid "Not worked" msgstr "Não contactado" -#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:46 #: application/views/qso/index.php:601 #: application/views/visitor/layout/footer.php:245 msgid "Clear" msgstr "Limpar" -#: application/views/interface_assets/footer.php:46 +#: application/views/interface_assets/footer.php:47 #: application/views/qso/edit_ajax.php:211 #: application/views/qso/edit_ajax.php:512 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." @@ -6535,81 +6636,89 @@ msgstr "" "O modo de propagação não é suportado pelo LoTW. Campos QSL do LoTW " "desactivados." -#: application/views/interface_assets/footer.php:47 +#: application/views/interface_assets/footer.php:48 msgid "No states for this DXCC available" msgstr "Não há estados disponíveis para este DXCC" -#: application/views/interface_assets/footer.php:129 +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "Calcular QRB e QTF" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "Erro nos locators. Por favor, verifique." + +#: application/views/interface_assets/footer.php:132 #: application/views/interface_assets/header.php:434 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "Informação da Versão" -#: application/views/interface_assets/footer.php:395 +#: application/views/interface_assets/footer.php:398 msgid "Description:" msgstr "Descrição:" -#: application/views/interface_assets/footer.php:398 +#: application/views/interface_assets/footer.php:401 msgid "Query description" msgstr "Descrição da consulta" -#: application/views/interface_assets/footer.php:414 +#: application/views/interface_assets/footer.php:417 msgid "Your query has been saved!" msgstr "A sua consulta foi guardada!" -#: application/views/interface_assets/footer.php:416 +#: application/views/interface_assets/footer.php:419 #: application/views/search/filter.php:46 msgid "Edit queries" msgstr "Editar consultas" -#: application/views/interface_assets/footer.php:418 +#: application/views/interface_assets/footer.php:421 msgid "Stored queries:" msgstr "Consultas guardadas:" -#: application/views/interface_assets/footer.php:423 +#: application/views/interface_assets/footer.php:426 #: application/views/search/filter.php:60 msgid "Run Query" msgstr "Executar Consulta" -#: application/views/interface_assets/footer.php:435 -#: application/views/interface_assets/footer.php:564 -#: application/views/interface_assets/footer.php:628 +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 msgid "Stored Queries" msgstr "Consultas Guardadas" -#: application/views/interface_assets/footer.php:440 -#: application/views/interface_assets/footer.php:633 +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 msgid "You need to make a query before you search!" msgstr "Tens de fazer uma consulta antes de pesquisar!" -#: application/views/interface_assets/footer.php:461 -#: application/views/interface_assets/footer.php:592 +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 #: application/views/search/filter.php:79 msgid "Export to ADIF" msgstr "Exportar para ADIF" -#: application/views/interface_assets/footer.php:499 +#: application/views/interface_assets/footer.php:502 msgid "Warning! Are you sure you want delete this stored query?" msgstr "Aviso! Tem a certeza de que quer eliminar esta consulta guardada?" -#: application/views/interface_assets/footer.php:513 +#: application/views/interface_assets/footer.php:516 msgid "The stored query has been deleted!" msgstr "A consulta armazenada foi eliminada!" -#: application/views/interface_assets/footer.php:522 +#: application/views/interface_assets/footer.php:525 msgid "The stored query could not be deleted. Please try again!" msgstr "" "A consulta armazenada não pôde ser eliminada. Por favor, tente novamente!" -#: application/views/interface_assets/footer.php:548 +#: application/views/interface_assets/footer.php:551 msgid "The query description has been updated!" msgstr "A descrição da consulta foi atualizada!" -#: application/views/interface_assets/footer.php:552 +#: application/views/interface_assets/footer.php:555 msgid "Something went wrong with the save. Please try again!" msgstr "Algo correu mal com a gravação. Por favor, tente novamente!" -#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:678 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -6619,75 +6728,75 @@ msgstr "" "qual é o DXCC correto para o local em questão. Se tiver a certeza, ignore " "este aviso." -#: application/views/interface_assets/footer.php:725 +#: application/views/interface_assets/footer.php:730 #: application/views/logbookadvanced/index.php:511 msgid "Callsign: " msgstr "Indicativo: " -#: application/views/interface_assets/footer.php:726 +#: application/views/interface_assets/footer.php:731 msgid "Count: " msgstr "Quantidade: " -#: application/views/interface_assets/footer.php:727 +#: application/views/interface_assets/footer.php:732 msgid "Grids: " msgstr "Grelhas: " -#: application/views/interface_assets/footer.php:1162 +#: application/views/interface_assets/footer.php:1167 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "Não tem sessão iniciada. Por favor %slogin%s" -#: application/views/interface_assets/footer.php:1368 -#: application/views/interface_assets/footer.php:1372 -#: application/views/interface_assets/footer.php:1375 -#: application/views/interface_assets/footer.php:1512 -#: application/views/interface_assets/footer.php:1516 -#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 msgid "grid square" msgstr "quadrícula" -#: application/views/interface_assets/footer.php:1375 -#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 msgid "Total count" msgstr "Número total" -#: application/views/interface_assets/footer.php:2106 +#: application/views/interface_assets/footer.php:2111 msgid "QSL Card for " msgstr "Cartão QSL para " -#: application/views/interface_assets/footer.php:2126 +#: application/views/interface_assets/footer.php:2131 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Aviso! Tem a certeza de que quer eliminar este cartão QSL?" -#: application/views/interface_assets/footer.php:2166 +#: application/views/interface_assets/footer.php:2171 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "Cartão eQSL" -#: application/views/interface_assets/footer.php:2168 +#: application/views/interface_assets/footer.php:2173 msgid "eQSL Card for " msgstr "Cartão eQSL para " -#: application/views/interface_assets/footer.php:2341 -#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 #: application/views/view_log/qso.php:604 msgid "QSL image file" msgstr "Ficheiro de imagem QSL" -#: application/views/interface_assets/footer.php:2360 +#: application/views/interface_assets/footer.php:2365 msgid "Front QSL Card:" msgstr "Frente do Cartão QSL:" -#: application/views/interface_assets/footer.php:2398 +#: application/views/interface_assets/footer.php:2403 msgid "Back QSL Card:" msgstr "Parte traseira do Cartão QSL:" -#: application/views/interface_assets/footer.php:2409 -#: application/views/interface_assets/footer.php:2434 +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 msgid "Add additional QSOs to a QSL Card" msgstr "Adicionar QSOs adicionais a um Cartão QSL" -#: application/views/interface_assets/footer.php:2445 +#: application/views/interface_assets/footer.php:2450 msgid "Something went wrong. Please try again!" msgstr "Algo correu mal. Por favor, tente novamente!" @@ -7285,18 +7394,18 @@ msgstr "QSL enviada" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:209 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:236 -#: application/views/station_profile/create.php:275 -#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 #: application/views/station_profile/create.php:293 -#: application/views/station_profile/edit.php:350 -#: application/views/station_profile/edit.php:358 -#: application/views/station_profile/edit.php:384 -#: application/views/station_profile/edit.php:405 -#: application/views/station_profile/edit.php:423 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 #: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 #: application/views/user/edit.php:347 application/views/user/edit.php:358 #: application/views/user/edit.php:369 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:399 @@ -7323,18 +7432,18 @@ msgstr "Sim" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:210 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:237 -#: application/views/station_profile/create.php:276 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/create.php:292 -#: application/views/station_profile/edit.php:351 -#: application/views/station_profile/edit.php:359 -#: application/views/station_profile/edit.php:385 -#: application/views/station_profile/edit.php:406 -#: application/views/station_profile/edit.php:424 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 #: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 #: application/views/user/edit.php:348 application/views/user/edit.php:359 #: application/views/user/edit.php:370 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:400 @@ -7657,7 +7766,7 @@ msgstr "# Resultados" #: application/views/logbookadvanced/index.php:505 #: application/views/qso/index.php:272 -#: application/views/station_profile/edit.php:85 +#: application/views/station_profile/edit.php:92 msgid "Location" msgstr "Localização" @@ -7825,60 +7934,60 @@ msgstr "Certificados Disponíveis" msgid "Upload Certificate" msgstr "Carregar Certificado" -#: application/views/lotw_views/index.php:41 +#: application/views/lotw_views/index.php:37 msgid "QSO Start Date" msgstr "Data de Início do contacto" -#: application/views/lotw_views/index.php:42 +#: application/views/lotw_views/index.php:38 msgid "QSO End Date" msgstr "Data de fim do contacto" -#: application/views/lotw_views/index.php:43 +#: application/views/lotw_views/index.php:39 msgid "Date Created" msgstr "Data de criação" -#: application/views/lotw_views/index.php:44 +#: application/views/lotw_views/index.php:40 msgid "Date Expires" msgstr "Data de expiração" -#: application/views/lotw_views/index.php:46 +#: application/views/lotw_views/index.php:42 #: application/views/view_log/qso.php:404 msgid "Last Upload" msgstr "Último envio" -#: application/views/lotw_views/index.php:91 +#: application/views/lotw_views/index.php:87 msgid "Expired" msgstr "Expirado" -#: application/views/lotw_views/index.php:93 +#: application/views/lotw_views/index.php:89 msgid "Expiring" msgstr "A expirar" -#: application/views/lotw_views/index.php:105 +#: application/views/lotw_views/index.php:101 #, php-format msgid "Last success: %s" msgstr "Último sucesso: %s" -#: application/views/lotw_views/index.php:108 +#: application/views/lotw_views/index.php:104 #, php-format msgid "Last fail: %s" msgstr "Última falha: %s" -#: application/views/lotw_views/index.php:114 +#: application/views/lotw_views/index.php:110 msgid "Not Synced" msgstr "Não sincronizado" -#: application/views/lotw_views/index.php:129 +#: application/views/lotw_views/index.php:125 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" "É necessário carregar um ou mais certificados LoTW \".p12\" para utilizar " "esta área." -#: application/views/lotw_views/index.php:144 +#: application/views/lotw_views/index.php:140 msgid "Information" msgstr "Informação" -#: application/views/lotw_views/index.php:149 +#: application/views/lotw_views/index.php:145 msgid "Manual Sync" msgstr "Sincronização manual" @@ -8450,7 +8559,7 @@ msgstr "Há alguma informação adicional que seja necessário conhecer?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:64 #: application/views/oqrs/showrequests.php:87 -#: application/views/user/main.php:48 application/views/user/profile.php:24 +#: application/views/user/index.php:48 application/views/user/profile.php:24 msgid "E-mail" msgstr "E-mail" @@ -8790,35 +8899,20 @@ msgstr "" "Não foram encontrados contactos adicionais. Isso significa que provavelmente " "já estão na fila de espera." -#: application/views/qso/components/winkeysettings.php:7 -#: application/views/qso/components/winkeysettings_results.php:7 -msgid "Winkey Macros" -msgstr "Macros Winkey" - -#: application/views/qso/components/winkeysettings.php:12 -#: application/views/qso/components/winkeysettings.php:28 -#: application/views/qso/components/winkeysettings.php:44 -#: application/views/qso/components/winkeysettings.php:60 -#: application/views/qso/components/winkeysettings.php:76 -#: application/views/qso/components/winkeysettings_results.php:12 -#: application/views/qso/components/winkeysettings_results.php:28 -#: application/views/qso/components/winkeysettings_results.php:44 -#: application/views/qso/components/winkeysettings_results.php:60 -#: application/views/qso/components/winkeysettings_results.php:76 -#, php-format -msgid "Function %d - Name" -msgstr "Função %d - Nome" - +#: application/views/qso/components/winkeysettings.php:3 #: application/views/qso/components/winkeysettings.php:19 #: application/views/qso/components/winkeysettings.php:35 #: application/views/qso/components/winkeysettings.php:51 #: application/views/qso/components/winkeysettings.php:67 -#: application/views/qso/components/winkeysettings.php:83 -#: application/views/qso/components/winkeysettings_results.php:19 -#: application/views/qso/components/winkeysettings_results.php:35 -#: application/views/qso/components/winkeysettings_results.php:51 -#: application/views/qso/components/winkeysettings_results.php:67 -#: application/views/qso/components/winkeysettings_results.php:83 +#, php-format +msgid "Function %d - Name" +msgstr "Função %d - Nome" + +#: application/views/qso/components/winkeysettings.php:10 +#: application/views/qso/components/winkeysettings.php:26 +#: application/views/qso/components/winkeysettings.php:42 +#: application/views/qso/components/winkeysettings.php:58 +#: application/views/qso/components/winkeysettings.php:74 #, php-format msgid "Function %d - Macro" msgstr "Função %d - Macro" @@ -8939,7 +9033,7 @@ msgstr "Guardar alterações" msgid "TimeOff is less than TimeOn" msgstr "O tempo de inatividade é menor que o tempo de atividade" -#: application/views/qso/index.php:5 application/views/qso/index.php:694 +#: application/views/qso/index.php:5 application/views/qso/index.php:690 msgid "Previous Contacts" msgstr "Contactos anteriores" @@ -8980,16 +9074,16 @@ msgid "Search DXCluster for latest Spot" msgstr "Pesquisar DXCluster para o spot mais recente" #: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:149 -#: application/views/station_profile/edit.php:211 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 #: application/views/user/edit.php:583 application/views/view_log/qso.php:282 #: application/views/view_log/qso.php:549 msgid "IOTA Reference" msgstr "Referência IOTA" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:165 -#: application/views/station_profile/edit.php:239 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 #: application/views/user/edit.php:587 application/views/view_log/qso.php:289 #: application/views/view_log/qso.php:556 msgid "SOTA Reference" @@ -9055,15 +9149,19 @@ msgstr "Winkey" msgid "Connect" msgstr "Conectar" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "Enviar" + +#: application/views/qso/index.php:673 msgid "Suggestions" msgstr "Sugestões" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:680 msgid "Profile Picture" msgstr "Foto de Perfil" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:704 msgid "Max. 5 previous contacts are shown" msgstr "São apresentados no máximo 5 contactos anteriores" @@ -9694,116 +9792,116 @@ msgstr "" "Um resumo completo de todos os comandos e a sintaxe necessária pode ser " "encontrado neste %sartigo%s da nossa Wiki." -#: application/views/station_profile/create.php:51 -#: application/views/station_profile/edit.php:60 +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 msgid "Location Name" msgstr "Nome da localização" -#: application/views/station_profile/create.php:52 -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:62 +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "QTH de origem" -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:62 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "Nome abreviado para a localização da estação. Por exemplo: %s" -#: application/views/station_profile/create.php:59 -#: application/views/station_profile/edit.php:68 +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 msgid "Station callsign. For example: 4W7EST/P" msgstr "Indicativo de chamada da estação. Por exemplo: 4W7EST/P" -#: application/views/station_profile/create.php:63 -#: application/views/station_profile/edit.php:72 +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 msgid "Station Power (W)" msgstr "Potência da Estação (W)" -#: application/views/station_profile/create.php:65 -#: application/views/station_profile/edit.php:74 +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 msgid "Default station power in Watt. Overwritten by CAT." msgstr "Potência por defeito da estação em Watt. Substituída pelo CAT." -#: application/views/station_profile/create.php:68 -#: application/views/station_profile/edit.php:89 +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 msgid "Station DXCC" msgstr "Estação DXCC" -#: application/views/station_profile/create.php:71 -#: application/views/station_profile/edit.php:92 +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 msgctxt "DXCC selection" msgid "None" msgstr "Nenhum" -#: application/views/station_profile/create.php:78 -#: application/views/station_profile/edit.php:105 +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 msgid "Station DXCC entity. For example: Bolivia" msgstr "Entidade DXCC da estação. Por exemplo: Bolívia" -#: application/views/station_profile/create.php:83 -#: application/views/station_profile/edit.php:111 +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 msgid "Station City" msgstr "Cidade da Estação" -#: application/views/station_profile/create.php:85 -#: application/views/station_profile/edit.php:113 +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 msgid "Station city. For example: Oslo" msgstr "Cidade da estação. Por exemplo: Oslo" -#: application/views/station_profile/create.php:94 -#: application/views/station_profile/edit.php:125 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:132 msgid "Station state. Applies to certain countries only." msgstr "Estado da estação. Aplica-se apenas a certos países." -#: application/views/station_profile/create.php:99 -#: application/views/station_profile/edit.php:130 +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 msgid "Station County" msgstr "Condado da Estação" -#: application/views/station_profile/create.php:101 -#: application/views/station_profile/edit.php:132 +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "Condado da Estação (usado apenas para EUA/Alasca/Havai)." -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/edit.php:158 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "Se não souberes a tua zona CQ, então %s para a encontrares!" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:158 -#: application/views/station_profile/edit.php:175 -#: application/views/station_profile/edit.php:199 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 msgid "click here" msgstr "clique aqui" -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/edit.php:175 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "Se não sabe a sua zona ITU, então %s para a encontrar!" -#: application/views/station_profile/create.php:135 -#: application/views/station_profile/edit.php:187 -#: application/views/station_profile/edit.php:190 +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 msgid "Station Gridsquare" msgstr "Quadrícula da Estação" -#: application/views/station_profile/create.php:140 -#: application/views/station_profile/edit.php:195 +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 msgid "Get Gridsquare" msgstr "Obter quadrícula" -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:199 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 #, php-format msgctxt "uses 'click here'" msgid "" @@ -9813,8 +9911,8 @@ msgstr "" "Quadrícula da estação. Por exemplo: HM54AP. Se não souber o quadrado do seu " "locator, então %s!" -#: application/views/station_profile/create.php:145 -#: application/views/station_profile/edit.php:200 +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." @@ -9822,53 +9920,53 @@ msgstr "" "Se estiver localizado numa linha de grelha, introduza vários quadrados de " "grelha separados por vírgulas. Por exemplo: IO77,IO78,IO87,IO88." -#: application/views/station_profile/create.php:160 -#: application/views/station_profile/edit.php:225 +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 msgid "Station IOTA reference. For example: EU-005" msgstr "Referência IOTA da estação. Por exemplo: EU-005" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:226 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 msgid "IOTA World website" msgstr "Site IOTA World" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:226 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 #, php-format msgid "You can look up IOTA references at the %s." msgstr "Pode consultar as referências da IOTA no %s." -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:241 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 msgid "SOTA Maps website" msgstr "Site SOTA Maps" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:241 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" "Referência SOTA da estação. Pode consultar as referências SOTA no site %s." -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:254 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 msgid "GMA Map website" msgstr "Site GMA Map" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:254 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" "Referência WWFF da estação. Pode consultar as referências WWFF no site %s." -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:267 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 msgid "POTA Map website" msgstr "Site POTA Map" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:267 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 #, php-format msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " @@ -9877,44 +9975,44 @@ msgstr "" "Referência(s) POTA da estação. São permitidos vários valores separados por " "vírgulas. Pode consultar as referências POTA no site %s." -#: application/views/station_profile/create.php:183 -#: application/views/station_profile/edit.php:280 +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 msgid "Signature Name" msgstr "Nome de Assinatura" -#: application/views/station_profile/create.php:185 -#: application/views/station_profile/edit.php:282 +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 msgid "Station Signature (e.g. GMA).." msgstr "Assinatura da Estação (por exemplo, GMA).." -#: application/views/station_profile/create.php:189 -#: application/views/station_profile/edit.php:286 +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 msgid "Signature Information" msgstr "Informação de Assinatura" -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/edit.php:288 +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "Informação sobre a assinatura da estação (por exemplo, DA/NW-357)." -#: application/views/station_profile/create.php:195 -#: application/views/station_profile/edit.php:301 +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "Apelido do QTH no eQSL" -#: application/views/station_profile/create.php:197 -#: application/views/station_profile/edit.php:303 +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "O apelido QTH que está configurado no seu perfil eQSL" -#: application/views/station_profile/create.php:201 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 msgid "Default QSLMSG" msgstr "Mensagem padrão QSLMSG" -#: application/views/station_profile/create.php:204 -#: application/views/station_profile/edit.php:309 +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." @@ -9922,13 +10020,13 @@ msgstr "" "Definir uma mensagem predefinida que será preenchida e enviada para cada " "contacto para esta localização de estação." -#: application/views/station_profile/create.php:207 -#: application/views/station_profile/edit.php:348 +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 msgid "Ignore Clublog Upload" msgstr "Ignorar envio para o Clublog" -#: application/views/station_profile/create.php:212 -#: application/views/station_profile/edit.php:353 +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " "Clublog. If this is deactivated on it's own please check if the Call is " @@ -9938,137 +10036,137 @@ msgstr "" "enviados parar o Clublog. Se isto estiver desativado por si só, por favor " "verifique se o indicativo está corretamente configurado no Clublog" -#: application/views/station_profile/create.php:215 -#: application/views/station_profile/edit.php:356 +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 msgid "ClubLog Realtime Upload" msgstr "Envio em tempo real para o ClubLog" -#: application/views/station_profile/create.php:224 -#: application/views/station_profile/edit.php:372 +#: application/views/station_profile/create.php:231 +#: application/views/station_profile/edit.php:379 msgid "HRDLog.net Username" msgstr "Nome de utilizador do HRDLog.net" -#: application/views/station_profile/create.php:226 -#: application/views/station_profile/edit.php:374 +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" "O nome de utilizador com que está registado no HRDlog.net (normalmente o seu " "indicativo)." -#: application/views/station_profile/create.php:229 -#: application/views/station_profile/edit.php:377 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 msgid "HRDLog.net API Key" msgstr "Chave API do HRDLog.net" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:379 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "Crie o seu código API no seu %s" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:379 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 msgid "HRDLog.net Userprofile page" msgstr "Página de perfil do utilizador HRDLog.net" -#: application/views/station_profile/create.php:234 -#: application/views/station_profile/edit.php:382 +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 msgid "HRDLog.net Logbook Realtime Upload" msgstr "Envio em tempo real para o Logbook do HRDLog.net" -#: application/views/station_profile/create.php:243 -#: application/views/station_profile/edit.php:317 +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 msgid "Subscription Required" msgstr "Subscrição obrigatória" -#: application/views/station_profile/create.php:248 +#: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "Chave API do Logbook do QRZ.com" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "Chave API de testes" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:326 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "Pode encontrar a sua chave API em %s" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:326 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 msgid "the QRZ.com Logbook settings page" msgstr "a página de definições do logbook do QRZ.com" -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/edit.php:330 +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 msgid "QRZ.com Logbook Upload" msgstr "Envio do log para o Logbook do QRZ.com" -#: application/views/station_profile/create.php:260 -#: application/views/station_profile/edit.php:333 +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 msgid "Realtime" msgstr "Tempo real" -#: application/views/station_profile/create.php:268 -#: application/views/station_profile/edit.php:398 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "Chave API do QO-100 Dx Club" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:400 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "Crie a sua chave API em %s" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:400 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 msgid "QO-100 Dx Club's profile page" msgstr "Página de perfil do QO-100 Dx Club" -#: application/views/station_profile/create.php:273 -#: application/views/station_profile/edit.php:403 +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 msgid "QO-100 Dx Club Realtime Upload" msgstr "Envio em tempo real do log para o QO-100 Dx Club" -#: application/views/station_profile/create.php:283 -#: application/views/station_profile/edit.php:421 +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 msgid "OQRS Enabled" msgstr "OQRS ativado" -#: application/views/station_profile/create.php:290 -#: application/views/station_profile/edit.php:428 +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 msgid "OQRS Email alert" msgstr "Alerta de email OQRS" -#: application/views/station_profile/create.php:295 -#: application/views/station_profile/edit.php:433 +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 msgid "Make sure email is set up under admin and global options." msgstr "" "Certifique-se de que o correio eletrónico está configurado nas opções de " "administração e globais." -#: application/views/station_profile/create.php:298 -#: application/views/station_profile/edit.php:436 +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 msgid "OQRS Text" msgstr "Texto OQRS" -#: application/views/station_profile/create.php:300 -#: application/views/station_profile/edit.php:438 +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 msgid "Some info you want to add regarding QSL'ing." msgstr "Alguma informação que queira acrescentar sobre as QSL's." -#: application/views/station_profile/edit.php:142 +#: application/views/station_profile/edit.php:149 msgid "Zones" msgstr "Zonas" -#: application/views/station_profile/edit.php:277 +#: application/views/station_profile/edit.php:284 msgid "Signature" msgstr "Assinatura" @@ -10544,7 +10642,7 @@ msgstr "" msgid "Check QSOs missing DXCC data" msgstr "Verificar contactos sem dados DXCC" -#: application/views/update/index.php:42 +#: application/views/update/index.php:42 application/views/update/index.php:62 msgid "Re-check all QSOs in logbook" msgstr "Verificar novamente todos os contactos no logbook" @@ -10572,6 +10670,16 @@ msgstr "Aqui pode atualizar contactos com informação de distância em falta." msgid "Update distance data" msgstr "Atualizar dados de distância" +#: application/views/update/index.php:61 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" +"Use o seguinte botão para atualizar a informação de distância para todos os " +"teus contactos. Dependendo do número de contactos, isto pode demorar algum " +"tempo a executar. Por favor seja paciente." + #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "Apagar conta de utilizador" @@ -11005,6 +11113,137 @@ msgstr "Esqueceu-se da palavra-passe?" msgid "You can reset your password here." msgstr "Pode redefinir a sua palavra-passe aqui." +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" +"Quer mesmo enviar a este utilizador uma ligação de reposição da palavra-" +"passe?" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "Aguarde ..." + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "E-mail de reposição de palavra-passe enviado ao utilizador:" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "Lista de utilizadores" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "" +"O Wavelog necessita de pelo menos um utilizador configurado para poder " +"funcionar." + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" +"Podem ser atribuídas funções aos utilizadores que lhes dão diferentes " +"permissões, tais como adicionar QSOs ao logbook e aceder às APIs do Wavelog." + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" +"O utilizador atualmente com sessão iniciada é apresentado no canto superior " +"direito de cada página." + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" +"Com o botão de reposição da palavra-passe, pode enviar a um utilizador um e-" +"mail com uma ligação para repor a sua palavra-passe. Para tal, certifique-se " +"de que as definições de correio eletrónico nas opções globais estão " +"corretamente configuradas." + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "Criar utilizador" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "Atualizar lista" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "Tipo" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "Visto pela última vez" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "Redefinição da palavra-passe" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "Imitar" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "Nunca" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "Localizações" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "Logbooks" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "Último contacto:" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "Sem contactos no log" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "Imitar utilizador" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" +"Está prestes a fazer-se passar por outro utilizador. Para voltar à sua conta " +"de administrador, precisará de terminar a sessão e voltar a iniciar sessão " +"como administrador." + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "Deseja imitar este utilizador?" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "Nome de utilizador:" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "Nome:" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "Indicativo:" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "E-mail:" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "Última vez visto:" + #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" msgstr "MODO DE MANUTENÇÃO" @@ -11030,96 +11269,6 @@ msgstr "Esqueceu-se da sua palavra-passe?" msgid "Keep me logged in" msgstr "Manter a minha sessão iniciada" -#: application/views/user/main.php:2 -msgid "Do you really want to send this user a password-reset link?" -msgstr "" -"Quer mesmo enviar a este utilizador uma ligação de reposição da palavra-" -"passe?" - -#: application/views/user/main.php:6 -msgid "Please Wait ..." -msgstr "Aguarde ..." - -#: application/views/user/main.php:9 -msgid "Password-reset e-mail sent to user:" -msgstr "E-mail de reposição de palavra-passe enviado ao utilizador:" - -#: application/views/user/main.php:30 -msgid "User List" -msgstr "Lista de utilizadores" - -#: application/views/user/main.php:33 -msgid "Wavelog needs at least one user configured in order to operate." -msgstr "" -"O Wavelog necessita de pelo menos um utilizador configurado para poder " -"funcionar." - -#: application/views/user/main.php:34 -msgid "" -"Users can be assigned roles which give them different permissions, such as " -"adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "" -"Podem ser atribuídas funções aos utilizadores que lhes dão diferentes " -"permissões, tais como adicionar QSOs ao logbook e aceder às APIs do Wavelog." - -#: application/views/user/main.php:35 -msgid "" -"The currently logged-in user is displayed at the upper-right of each page." -msgstr "" -"O utilizador atualmente com sessão iniciada é apresentado no canto superior " -"direito de cada página." - -#: application/views/user/main.php:36 -msgid "" -"With the password reset button, you can send a user an email containing a " -"link to reset their password. To achieve this, ensure that the email " -"settings in the global options are configured correctly." -msgstr "" -"Com o botão de reposição da palavra-passe, pode enviar a um utilizador um e-" -"mail com uma ligação para repor a sua palavra-passe. Para tal, certifique-se " -"de que as definições de correio eletrónico nas opções globais estão " -"corretamente configuradas." - -#: application/views/user/main.php:38 -msgid "Create user" -msgstr "Criar utilizador" - -#: application/views/user/main.php:39 -msgid "Refresh List" -msgstr "Atualizar lista" - -#: application/views/user/main.php:49 -msgid "Type" -msgstr "Tipo" - -#: application/views/user/main.php:50 -msgid "Last seen" -msgstr "Visto pela última vez" - -#: application/views/user/main.php:53 -msgid "Password Reset" -msgstr "Redefinição da palavra-passe" - -#: application/views/user/main.php:79 -msgid "Never" -msgstr "Nunca" - -#: application/views/user/main.php:83 -msgid "Locations" -msgstr "Localizações" - -#: application/views/user/main.php:85 -msgid "Logbooks" -msgstr "Logbooks" - -#: application/views/user/main.php:87 -msgid "Last QSO:" -msgstr "Último contacto:" - -#: application/views/user/main.php:89 -msgid "No QSOs in Log" -msgstr "Sem contactos no log" - #: application/views/user/profile.php:19 msgid "Level" msgstr "Nível" @@ -11386,6 +11535,9 @@ msgstr "O seu indicativo:" msgid "Submit Request" msgstr "Submeter pedido" +#~ msgid "Winkey Macros" +#~ msgstr "Macros Winkey" + #~ msgid "User logged in" #~ msgstr "Utilizador com sessão iniciada" diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.mo b/application/locale/ru_RU/LC_MESSAGES/messages.mo index 368cebadf..98cba4139 100644 Binary files a/application/locale/ru_RU/LC_MESSAGES/messages.mo and b/application/locale/ru_RU/LC_MESSAGES/messages.mo differ diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.po b/application/locale/ru_RU/LC_MESSAGES/messages.po index 7ec94d926..389bb1487 100644 --- a/application/locale/ru_RU/LC_MESSAGES/messages.po +++ b/application/locale/ru_RU/LC_MESSAGES/messages.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-17 17:16+0000\n" -"PO-Revision-Date: 2024-08-17 10:48+0000\n" -"Last-Translator: \"Francisco (F4VSE)\" \n" +"POT-Creation-Date: 2024-08-21 15:06+0000\n" +"PO-Revision-Date: 2024-08-20 05:18+0000\n" +"Last-Translator: Michael Skolsky \n" "Language-Team: Russian \n" "Language: ru_RU\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 5.6.2\n" +"X-Generator: Weblate 5.7\n" #: application/controllers/Accumulated.php:13 #: application/controllers/Activators.php:13 @@ -51,8 +51,8 @@ msgstr "" #: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 #: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 #: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:348 -#: application/controllers/Eqsl.php:411 application/controllers/Eqsl.php:427 -#: application/controllers/Eqsl.php:487 application/controllers/Hamsat.php:13 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 application/controllers/Hamsat.php:13 #: application/controllers/Kmlexport.php:18 #: application/controllers/Kmlexport.php:33 #: application/controllers/Labels.php:26 @@ -60,17 +60,17 @@ msgstr "" #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 #: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 #: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 -#: application/controllers/Lotw.php:712 application/controllers/Lotw.php:820 -#: application/controllers/Lotw.php:828 application/controllers/Mode.php:15 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 #: application/controllers/Notes.php:10 application/controllers/Options.php:15 #: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 #: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 #: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 #: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 #: application/controllers/Qso.php:9 application/controllers/Qso.php:19 -#: application/controllers/Qso.php:176 application/controllers/Qso.php:279 -#: application/controllers/Qso.php:299 application/controllers/Qso.php:308 -#: application/controllers/Qso.php:603 application/controllers/Radio.php:259 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:599 application/controllers/Radio.php:259 #: application/controllers/Radio.php:285 application/controllers/Radio.php:301 #: application/controllers/Satellite.php:15 #: application/controllers/Sattimers.php:9 @@ -84,13 +84,14 @@ msgstr "" #: application/controllers/Update.php:24 application/controllers/Update.php:273 #: application/controllers/Update.php:284 #: application/controllers/Update.php:295 -#: application/controllers/Update.php:306 application/controllers/User.php:8 -#: application/controllers/User.php:21 application/controllers/User.php:206 -#: application/controllers/User.php:207 application/controllers/User.php:719 -#: application/controllers/User.php:738 application/controllers/User.php:1021 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 #: application/controllers/User_options.php:9 msgid "You're not allowed to do that!" -msgstr "" +msgstr "Вам нельзя это делать!" #: application/controllers/Accumulated.php:21 #: application/views/interface_assets/header.php:150 @@ -108,7 +109,7 @@ msgstr "Карта активированных квадратов" #: application/controllers/Gridmap.php:31 #: application/controllers/Visitor.php:374 #: application/views/activators/index.php:100 -#: application/views/interface_assets/footer.php:42 +#: application/views/interface_assets/footer.php:43 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "Квадраты" @@ -222,7 +223,7 @@ msgid "Key Invalid - either not found or disabled" msgstr "Ключ недействительный — либо не найден, либо отключен" #: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 +#: application/views/lotw_views/index.php:91 msgid "Valid" msgstr "Действительный" @@ -277,7 +278,7 @@ msgstr "DOK" #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 -#: application/views/lotw_views/index.php:40 +#: application/views/lotw_views/index.php:36 #: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 #: application/views/search/cqzones_result.php:15 #: application/views/search/result.php:27 @@ -317,7 +318,7 @@ msgstr "Просмотр журнала" #: application/controllers/Awards.php:454 msgid " and band " -msgstr "" +msgstr " и диапазон " #: application/controllers/Awards.php:457 msgid " and sat " @@ -356,7 +357,7 @@ msgstr " и " #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:336 #: application/views/search/search_result_ajax.php:9 -#: application/views/station_profile/edit.php:236 +#: application/views/station_profile/edit.php:243 #: application/views/user/edit.php:234 application/views/user/edit.php:256 #: application/views/user/edit.php:278 application/views/user/edit.php:300 #: application/views/user/edit.php:323 @@ -377,7 +378,7 @@ msgstr "SOTA" #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:341 #: application/views/search/search_result_ajax.php:10 -#: application/views/station_profile/edit.php:249 +#: application/views/station_profile/edit.php:256 #: application/views/user/edit.php:235 application/views/user/edit.php:257 #: application/views/user/edit.php:279 application/views/user/edit.php:301 #: application/views/user/edit.php:324 @@ -397,7 +398,7 @@ msgstr "WWFF" #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:346 #: application/views/search/search_result_ajax.php:11 -#: application/views/station_profile/edit.php:262 +#: application/views/station_profile/edit.php:269 #: application/views/user/edit.php:236 application/views/user/edit.php:258 #: application/views/user/edit.php:280 application/views/user/edit.php:302 #: application/views/user/edit.php:325 @@ -671,19 +672,19 @@ msgstr "информация для импорта eQSL" msgid "eQSL QSO Upload" msgstr "загрузка QSO в eQSL" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:416 msgid "eQSL Tools" msgstr "инструменты eQSL" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid " / Errors: " msgstr " / Ошибки: " -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid "Successfully downloaded: " msgstr "Успешно скачано: " -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:472 msgid "eQSL Card Image Download" msgstr "скачать изображения eQSL" @@ -958,7 +959,7 @@ msgstr "LoTW" #: application/views/search/result_search.php:16 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:273 -#: application/views/station_profile/edit.php:298 +#: application/views/station_profile/edit.php:305 #: application/views/timeline/index.php:64 application/views/user/edit.php:564 #: application/views/user/edit.php:667 application/views/user/edit.php:731 msgid "eQSL" @@ -972,7 +973,7 @@ msgstr "eQSL" #: application/views/awards/waja/index.php:71 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 -#: application/views/station_profile/edit.php:345 +#: application/views/station_profile/edit.php:352 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 #: application/views/view_log/partial/log_ajax.php:83 @@ -1147,7 +1148,7 @@ msgstr "Страна" #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:318 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:208 +#: application/views/station_profile/edit.php:215 #: application/views/timeline/index.php:202 application/views/user/edit.php:233 #: application/views/user/edit.php:255 application/views/user/edit.php:277 #: application/views/user/edit.php:299 application/views/user/edit.php:322 @@ -1371,15 +1372,15 @@ msgstr "Оператор" #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:675 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:159 #: application/views/lookup/index.php:31 -#: application/views/lotw_views/index.php:56 +#: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 #: 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:98 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 #: application/views/stationsetup/stationsetup.php:150 @@ -1409,23 +1410,50 @@ msgstr "Быстрый поиск" msgid "Logbook of the World" msgstr "Logbook of the World" -#: application/controllers/Lotw.php:610 +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "" + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "" + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "" + +#: application/controllers/Lotw.php:413 +#, php-format +msgid "" +"Found no certificate in file %s. If the filename contains 'key-only' this is " +"typically a certificate request which has not been processed by LoTW yet." +msgstr "" + +#: application/controllers/Lotw.php:617 msgid "LoTW ADIF Information" msgstr "LoTW. Информация ADIF" -#: application/controllers/Lotw.php:718 +#: application/controllers/Lotw.php:725 msgid "LoTW ADIF Import" msgstr "LoTW. Импорт ADIF" -#: application/controllers/Lotw.php:830 +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "" + +#: application/controllers/Lotw.php:837 msgid "LoTW .TQ8 Upload" msgstr "LoTW. TQ8 загрузка" -#: application/controllers/Lotw.php:927 application/controllers/Lotw.php:932 +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "" + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 msgid "LoTW .TQ8 Sent" msgstr "LoTW. TQ8 загружен" -#: application/controllers/Lotw.php:939 +#: application/controllers/Lotw.php:946 msgid "LoTW .TQ8 Not Sent" msgstr "LoTW. TQ8 не загружен" @@ -1590,6 +1618,47 @@ msgstr "Запросы OQRS" msgid "QRB Calculator" msgstr "Калькулятор QRB" +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "" + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" + #: application/controllers/Qrz.php:173 #: application/views/interface_assets/header.php:426 msgid "QRZ Logbook" @@ -1644,7 +1713,7 @@ msgstr "Метка времени" #: application/controllers/Radio.php:52 #: application/views/logbookadvanced/index.php:527 -#: application/views/lotw_views/index.php:47 +#: application/views/lotw_views/index.php:43 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:171 #: application/views/stationsetup/exportmapoptions.php:5 @@ -1670,13 +1739,13 @@ msgstr "По умолчанию (нажмите, чтобы освободить #: application/controllers/Radio.php:105 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2329 -#: application/views/interface_assets/footer.php:2347 -#: application/views/interface_assets/footer.php:2368 -#: application/views/interface_assets/footer.php:2386 +#: application/views/interface_assets/footer.php:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:519 -#: application/views/lotw_views/index.php:118 +#: application/views/lotw_views/index.php:114 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 #: application/views/qslcard/index.php:65 @@ -1686,7 +1755,7 @@ msgstr "По умолчанию (нажмите, чтобы освободить #: application/views/stationsetup/stationsetup.php:33 #: application/views/stationsetup/stationsetup.php:137 #: application/views/stationsetup/stationsetup.php:192 -#: application/views/themes/index.php:107 application/views/user/main.php:54 +#: application/views/themes/index.php:107 application/views/user/index.php:57 #: application/views/view_log/qso.php:613 msgid "Delete" msgstr "Удалить" @@ -1727,6 +1796,7 @@ msgstr "Спутниковые таймеры" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 +#: application/views/interface_assets/footer.php:37 #: application/views/interface_assets/header.php:336 #: application/views/interface_assets/header.php:343 #: application/views/logbookadvanced/index.php:516 @@ -1779,8 +1849,8 @@ msgstr "Редактировать профиль QTH: " #: application/views/logbookadvanced/edit.php:18 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:447 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 @@ -1845,8 +1915,8 @@ msgstr "Ошибка. Ссылка уже используется!" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:259 -#: application/views/station_profile/edit.php:332 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 msgid "Disabled" @@ -1903,15 +1973,15 @@ msgstr "Активный профиль QTH" #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:28 #: application/views/stationsetup/stationsetup.php:161 -#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/user/index.php:90 application/views/user/index.php:92 msgid "QSO" msgstr "QSO" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 -#: application/views/interface_assets/footer.php:538 -#: application/views/interface_assets/footer.php:547 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 #: application/views/labels/index.php:47 application/views/labels/index.php:83 #: application/views/logbookadvanced/index.php:518 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 @@ -1919,7 +1989,7 @@ msgstr "QSO" #: application/views/search/stored_queries.php:21 #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 -#: application/views/themes/index.php:104 application/views/user/main.php:52 +#: application/views/themes/index.php:104 application/views/user/index.php:52 msgid "Edit" msgstr "Редактировать" @@ -2035,37 +2105,37 @@ msgstr "Исключения DXCC:" msgid "Dxcc Prefixes:" msgstr "Префиксы DXCC:" -#: application/controllers/User.php:12 +#: application/controllers/User.php:36 #: application/views/interface_assets/header.php:268 msgid "User Accounts" msgstr "Аккаунты пользователей" -#: application/controllers/User.php:52 +#: application/controllers/User.php:76 msgid "Add User" msgstr "Добавить пользователя" -#: application/controllers/User.php:166 +#: application/controllers/User.php:190 msgid "Users" msgstr "Пользователи" -#: application/controllers/User.php:240 application/controllers/User.php:673 +#: application/controllers/User.php:264 application/controllers/User.php:697 msgid "Edit User" msgstr "Редактировать пользователя" -#: application/controllers/User.php:665 application/controllers/User.php:668 -#: application/views/user/main.php:3 application/views/user/main.php:46 +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 msgid "User" msgstr "Пользователь" -#: application/controllers/User.php:665 application/controllers/User.php:668 +#: application/controllers/User.php:689 application/controllers/User.php:692 msgid "edited" msgstr "отредактирован" -#: application/controllers/User.php:722 +#: application/controllers/User.php:746 msgid "Profile" msgstr "Профиль" -#: application/controllers/User.php:779 +#: application/controllers/User.php:803 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." @@ -2073,18 +2143,18 @@ msgstr "" "Поздравляем! Wavelog был успешно установлен. Теперь вы можете войти в " "систему в первый раз." -#: application/controllers/User.php:843 application/controllers/User.php:853 +#: application/controllers/User.php:867 application/controllers/User.php:877 msgid "Login failed. Try again." msgstr "Вход не выполнен. Попробуйте снова." -#: application/controllers/User.php:860 +#: application/controllers/User.php:884 #: application/views/interface_assets/header.php:356 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:88 msgid "Login" msgstr "Вход" -#: application/controllers/User.php:898 +#: application/controllers/User.php:922 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " @@ -2095,38 +2165,66 @@ msgstr "" "администратором. В настоящий момент только администраторы могут войти на " "сервер." -#: application/controllers/User.php:901 +#: application/controllers/User.php:925 msgid "Incorrect username or password!" msgstr "Неверные логин или пароль!" -#: application/controllers/User.php:918 +#: application/controllers/User.php:942 #, php-format msgid "User %s logged out." msgstr "Пользователь %s вышел." -#: application/controllers/User.php:932 +#: application/controllers/User.php:956 msgid "Password Reset is disabled on the Demo!" msgstr "Сброс пароля отключен в демо-версии!" -#: application/controllers/User.php:945 +#: application/controllers/User.php:969 msgid "Forgot Password" msgstr "Восстановить пароль" -#: application/controllers/User.php:995 application/views/user/main.php:8 +#: application/controllers/User.php:1019 application/views/user/index.php:8 msgid "Email settings are incorrect." msgstr "Настройки емэйл некорректны." -#: application/controllers/User.php:999 application/controllers/User.php:1004 +#: application/controllers/User.php:1023 application/controllers/User.php:1028 msgid "Password Reset Processed." msgstr "Осуществлён сброс пароля." -#: application/controllers/User.php:1106 +#: application/controllers/User.php:1129 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "Сбросить пароль" +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "" + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "" + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "" + #: application/controllers/Visitor.php:50 #: application/controllers/Visitor.php:79 #: application/controllers/Visitor.php:142 @@ -2177,80 +2275,80 @@ msgstr "Не найдено профилей QTH, использующих OQRS. #: application/libraries/Subdivisions.php:31 msgctxt "Division Name (States in various countries)." msgid "Province" -msgstr "" +msgstr "Провинция" #: application/libraries/Subdivisions.php:39 msgctxt "Division Name (States in various countries)." msgid "Oblast" -msgstr "" +msgstr "Область" #: application/libraries/Subdivisions.php:41 #: application/libraries/Subdivisions.php:47 msgctxt "Division Name (States in various countries)." msgid "Region" -msgstr "" +msgstr "Регион" #: application/libraries/Subdivisions.php:45 msgctxt "Division Name (States in various countries)." msgid "Department" -msgstr "" +msgstr "Отдел" #: application/libraries/Subdivisions.php:49 msgctxt "Division Name (States in various countries)." msgid "Municipality" -msgstr "" +msgstr "Муниципалитет" #: application/libraries/Subdivisions.php:51 msgctxt "Division Name (States in various countries)." msgid "Federal State" -msgstr "" +msgstr "Федеральное государство" #: application/libraries/Subdivisions.php:56 #: application/libraries/Subdivisions.php:94 msgctxt "Division Name (States in various countries)." msgid "County" -msgstr "" +msgstr "Графство" #: application/libraries/Subdivisions.php:60 #: application/libraries/Subdivisions.php:85 msgctxt "Division Name (States in various countries)." msgid "District" -msgstr "" +msgstr "Район" #: application/libraries/Subdivisions.php:62 msgctxt "Division Name (States in various countries)." msgid "Canton" -msgstr "" +msgstr "Кантон" #: application/libraries/Subdivisions.php:64 msgctxt "Division Name (States in various countries)." msgid "US State" -msgstr "" +msgstr "Штат США" #: application/libraries/Subdivisions.php:67 msgctxt "Division Name (States in various countries)." msgid "Prefecture" -msgstr "" +msgstr "Префектура" #: application/libraries/Subdivisions.php:69 msgctxt "Division Name (States in various countries)." msgid "State" -msgstr "" +msgstr "Штат" #: application/libraries/Subdivisions.php:78 msgctxt "Division Name (States in various countries)." msgid "US County" -msgstr "" +msgstr "Округ США" #: application/libraries/Subdivisions.php:90 msgctxt "Division Name (States in various countries)." msgid "DME" -msgstr "" +msgstr "DME" #: application/libraries/Subdivisions.php:92 msgctxt "Division Name (States in various countries)." msgid "City / Ku / Gun" -msgstr "" +msgstr "Город / Ku / Gun" #: application/models/Eqslmethods_model.php:281 msgid "Your eQSL username and/or password is incorrect." @@ -2419,8 +2517,8 @@ msgstr "Разница" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1441 -#: application/views/interface_assets/footer.php:1580 +#: application/views/interface_assets/footer.php:1446 +#: application/views/interface_assets/footer.php:1585 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 @@ -2652,7 +2750,7 @@ msgstr "Не найдено!" #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 -#: application/views/lotw_views/index.php:39 +#: application/views/lotw_views/index.php:35 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 #: application/views/qslcard/index.php:28 @@ -2667,10 +2765,10 @@ msgstr "Не найдено!" #: application/views/search/lotw_unconfirmed_result.php:6 #: application/views/search/result.php:11 #: application/views/simplefle/index.php:142 -#: application/views/station_profile/edit.php:56 +#: application/views/station_profile/edit.php:63 #: application/views/stationsetup/linkedlocations.php:17 -#: application/views/user/edit.php:123 application/views/user/main.php:4 -#: application/views/user/main.php:47 application/views/user/profile.php:29 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 #: application/views/view_log/qso.php:82 application/views/view_log/qso.php:507 msgid "Callsign" msgstr "Позывной" @@ -2928,8 +3026,8 @@ msgstr "Всегда использовать позывной (логин) ка #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 -#: application/views/interface_assets/footer.php:498 -#: application/views/interface_assets/footer.php:2125 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 msgid "DANGER" msgstr "ОПАСНО" @@ -2943,6 +3041,8 @@ msgid "" "If selected, Wavelog will try to import %sall%s QSO's of the ADIF, " "regardless if they match to the chosen station-location." msgstr "" +"Если выбрано, Wavelog попытается импортировать %sвсе%s QSO из ADIF, " +"независимо от того, соответствуют ли они выбранному местоположению станции." #: application/views/adif/import.php:158 application/views/adif/import.php:273 #: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 @@ -3116,8 +3216,8 @@ msgstr "Простое название, описывающее назначен #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 -#: application/views/interface_assets/footer.php:44 -#: application/views/interface_assets/footer.php:533 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -3125,8 +3225,6 @@ msgstr "Простое название, описывающее назначен #: application/views/options/oqrs.php:63 #: application/views/options/radios.php:45 #: application/views/options/version_dialog.php:78 -#: application/views/qso/components/winkeysettings.php:90 -#: application/views/qso/components/winkeysettings_results.php:90 #: application/views/satellite/create.php:70 #: application/views/simplefle/index.php:22 msgid "Save" @@ -3211,7 +3309,7 @@ msgid "Permissions" msgstr "Разрешения" #: application/views/api/help.php:31 application/views/cron/index.php:52 -#: application/views/lotw_views/index.php:45 +#: application/views/lotw_views/index.php:41 #: application/views/mode/index.php:31 #: application/views/oqrs/showrequests.php:91 #: application/views/sattimers/index.php:39 @@ -3382,8 +3480,8 @@ msgstr "Всего" #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:106 -#: application/views/station_profile/edit.php:146 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 #: application/views/timeline/index.php:231 #: application/views/timeplotter/index.php:44 msgid "CQ Zone" @@ -3392,7 +3490,7 @@ msgstr "Зона CQ" #: application/views/awards/cq/index.php:4 #: application/views/awards/itu/index.php:4 msgid "Hover over a zone" -msgstr "" +msgstr "Наведите курсор на зону CQ / зону ITU" #: application/views/awards/cq/index.php:20 msgid "CQ Magazine WAZ Award" @@ -3433,7 +3531,7 @@ msgstr "Дипломы - CQ Magazine WAZ" #: application/views/bandmap/list.php:73 #: application/views/dashboard/index.php:245 #: application/views/dashboard/index.php:363 -#: application/views/interface_assets/footer.php:39 +#: application/views/interface_assets/footer.php:40 #: application/views/visitor/index.php:266 msgid "Confirmed" msgstr "Подтверждено" @@ -3499,7 +3597,7 @@ msgstr "Отобразить QSO с типом QSL" #: application/views/awards/cq/index.php:56 #: application/views/awards/itu/index.php:56 -#: application/views/interface_assets/footer.php:2104 +#: application/views/interface_assets/footer.php:2109 #: application/views/qso/edit_ajax.php:378 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -3667,7 +3765,7 @@ msgstr "Сработано / Подтверждено" #: application/views/awards/waja/index.php:80 #: application/views/awards/was/index.php:76 msgid "Every band" -msgstr "Все диапазоны" +msgstr "Каждый диапазон" #: application/views/awards/dxcc/index.php:14 msgid "DXCC Award" @@ -3872,11 +3970,11 @@ msgstr "Эта карта отображает только QSO, проведё #: application/views/awards/helvetia/index.php:3 msgctxt "Switzerland Canton" msgid "Canton" -msgstr "" +msgstr "Кантон" #: application/views/awards/helvetia/index.php:4 msgid "Hover over a canton" -msgstr "" +msgstr "Наведите курсор на кантон" #: application/views/awards/helvetia/index.php:20 msgid "HELVETIA 26 | SWITZERLAND AWARD" @@ -4022,8 +4120,8 @@ msgstr "Удалено" #: application/views/logbookadvanced/index.php:251 #: application/views/logbookadvanced/index.php:594 #: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:120 -#: application/views/station_profile/edit.php:163 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 msgid "ITU Zone" msgstr "Зона ITU" @@ -4149,8 +4247,8 @@ msgstr "" #: application/views/awards/pota/index.php:31 #: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:177 -#: application/views/station_profile/edit.php:265 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 #: application/views/user/edit.php:595 application/views/view_log/qso.php:303 #: application/views/view_log/qso.php:570 msgid "POTA Reference(s)" @@ -4159,11 +4257,11 @@ msgstr "Сравочник POTA" #: application/views/awards/rac/index.php:3 msgctxt "Canada Province" msgid "Province" -msgstr "" +msgstr "Провинция" #: application/views/awards/rac/index.php:4 msgid "Hover over a province" -msgstr "" +msgstr "Наведите курсор на провинцию" #: application/views/awards/rac/index.php:106 msgid "Show RAC Map" @@ -4338,11 +4436,11 @@ msgstr "Квадраты WAB" #: application/views/awards/waja/index.php:3 msgctxt "Japan Prefecture" msgid "Prefecture" -msgstr "" +msgstr "Префектура" #: application/views/awards/waja/index.php:4 msgid "Hover over a prefecture" -msgstr "" +msgstr "Наведите курсор на префектуру" #: application/views/awards/waja/index.php:19 msgid "WAJA - Worked All Japan prefectures Award" @@ -4380,11 +4478,11 @@ msgstr "Префектура" #: application/views/awards/was/index.php:3 msgctxt "USA State" msgid "State" -msgstr "" +msgstr "Штат" #: application/views/awards/was/index.php:4 msgid "Hover over a state" -msgstr "" +msgstr "Наведите курсор на штат" #: application/views/awards/was/index.php:20 msgid "WAS Award" @@ -4453,8 +4551,8 @@ msgstr "" #: application/views/awards/wwff/index.php:31 #: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:171 -#: application/views/station_profile/edit.php:252 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 #: application/views/user/edit.php:591 application/views/view_log/qso.php:296 #: application/views/view_log/qso.php:563 msgid "WWFF Reference" @@ -4654,9 +4752,7 @@ msgstr "Лобавить диапазон" #: application/views/bands/index.php:152 #: application/views/contesting/add.php:74 -#: application/views/interface_assets/footer.php:43 -#: application/views/qso/components/winkeysettings.php:91 -#: application/views/qso/components/winkeysettings_results.php:91 +#: application/views/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4991,8 +5087,8 @@ msgid "Name of Contest in ADIF-specification" msgstr "Название контеста в спецификации ADIF" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:48 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "Создать" @@ -5021,7 +5117,7 @@ msgstr "Тип обмена" #: application/views/contesting/index.php:16 msgid "Exchange" -msgstr "Обмен" +msgstr "Контрольный номер" #: application/views/contesting/index.php:18 msgid "Serial" @@ -5138,8 +5234,8 @@ msgstr "Идентификатор" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:261 -#: application/views/station_profile/edit.php:334 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 msgid "Enabled" @@ -5195,6 +5291,7 @@ msgstr "Введите собственные настройки Cron" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "Отмена" @@ -5742,6 +5839,8 @@ msgstr "" #, php-format msgid "Check this wiki article %shere%s for more information." msgstr "" +"Проверьте эту статью на вики %sздесь%s для получения дополнительной " +"информации." #: application/views/debug/index.php:48 #, php-format @@ -5893,7 +5992,7 @@ msgstr "Установленные" msgid "Not Installed" msgstr "Не установленные" -#: application/views/debug/index.php:283 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:649 msgid "Settings" msgstr "Настройки" @@ -5950,7 +6049,7 @@ msgstr "Обновление DXCC из Clublog" #: application/views/debug/index.php:506 application/views/debug/index.php:511 #: application/views/debug/index.php:516 application/views/debug/index.php:521 #: application/views/debug/index.php:526 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/edit.php:49 msgid "Update" msgstr "Обновить" @@ -5993,8 +6092,8 @@ msgstr[2] "База данных содержит %d QSO без привязан #: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:57 -#: application/views/station_profile/edit.php:66 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" @@ -6115,7 +6214,7 @@ msgstr "Данные QSO" #: application/views/distances/index.php:9 #, php-format msgid "contacts were plotted.%s Your furthest contact was with" -msgstr "" +msgstr "контакты были нанесены на карту.%s Ваш самый дальний контакт был с" #: application/views/distances/index.php:10 msgid "in gridsquare" @@ -6348,10 +6447,10 @@ msgid "QSL Date" msgstr "Дата QSL" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2330 -#: application/views/interface_assets/footer.php:2348 -#: application/views/interface_assets/footer.php:2369 -#: application/views/interface_assets/footer.php:2387 +#: application/views/interface_assets/footer.php:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -6487,109 +6586,117 @@ msgstr "Внимание" msgid "OK" msgstr "ОК" -#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/footer.php:38 msgid "Warning! Are you sure you want delete QSO with " msgstr "Предупреждение! Вы уверены в том, что хотите удалить QSO c " -#: application/views/interface_assets/footer.php:38 +#: application/views/interface_assets/footer.php:39 #: application/views/user/edit.php:493 msgid "Colors" msgstr "Цвета" -#: application/views/interface_assets/footer.php:40 +#: application/views/interface_assets/footer.php:41 msgid "Worked not confirmed" msgstr "Сработано, не подтверждено" -#: application/views/interface_assets/footer.php:41 +#: application/views/interface_assets/footer.php:42 msgid "Not worked" msgstr "Не сработано" -#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:46 #: application/views/qso/index.php:601 #: application/views/visitor/layout/footer.php:245 msgid "Clear" msgstr "Очистить" -#: application/views/interface_assets/footer.php:46 +#: application/views/interface_assets/footer.php:47 #: application/views/qso/edit_ajax.php:211 #: application/views/qso/edit_ajax.php:512 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "Режим распространения не поддерживается LoTW. Поля QSL LoTW отключены." -#: application/views/interface_assets/footer.php:47 +#: application/views/interface_assets/footer.php:48 msgid "No states for this DXCC available" +msgstr "Для этого DXCC нет доступных штатов." + +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" msgstr "" -#: application/views/interface_assets/footer.php:129 +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "" + +#: application/views/interface_assets/footer.php:132 #: application/views/interface_assets/header.php:434 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "Информация о версии" -#: application/views/interface_assets/footer.php:395 +#: application/views/interface_assets/footer.php:398 msgid "Description:" msgstr "Описание:" -#: application/views/interface_assets/footer.php:398 +#: application/views/interface_assets/footer.php:401 msgid "Query description" msgstr "Описание запроса" -#: application/views/interface_assets/footer.php:414 +#: application/views/interface_assets/footer.php:417 msgid "Your query has been saved!" msgstr "Ваш запрос сохранён!" -#: application/views/interface_assets/footer.php:416 +#: application/views/interface_assets/footer.php:419 #: application/views/search/filter.php:46 msgid "Edit queries" msgstr "Редактировать запросы" -#: application/views/interface_assets/footer.php:418 +#: application/views/interface_assets/footer.php:421 msgid "Stored queries:" msgstr "Сохранённые запросы:" -#: application/views/interface_assets/footer.php:423 +#: application/views/interface_assets/footer.php:426 #: application/views/search/filter.php:60 msgid "Run Query" msgstr "Выполнить запрос" -#: application/views/interface_assets/footer.php:435 -#: application/views/interface_assets/footer.php:564 -#: application/views/interface_assets/footer.php:628 +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 msgid "Stored Queries" msgstr "Сохранённые запросы" -#: application/views/interface_assets/footer.php:440 -#: application/views/interface_assets/footer.php:633 +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 msgid "You need to make a query before you search!" msgstr "Сначала нужно сформировать запрос, прежде чем искать!" -#: application/views/interface_assets/footer.php:461 -#: application/views/interface_assets/footer.php:592 +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 #: application/views/search/filter.php:79 msgid "Export to ADIF" msgstr "Экспортировать в ADIF" -#: application/views/interface_assets/footer.php:499 +#: application/views/interface_assets/footer.php:502 msgid "Warning! Are you sure you want delete this stored query?" msgstr "Внимание! Вы уверены, что хотите удалить этот сохранённый запрос?" -#: application/views/interface_assets/footer.php:513 +#: application/views/interface_assets/footer.php:516 msgid "The stored query has been deleted!" msgstr "Сохранённый запрос был удален!" -#: application/views/interface_assets/footer.php:522 +#: application/views/interface_assets/footer.php:525 msgid "The stored query could not be deleted. Please try again!" msgstr "Не удалось удалить сохранённый запрос. Пожалуйста, попробуйте еще раз!" -#: application/views/interface_assets/footer.php:548 +#: application/views/interface_assets/footer.php:551 msgid "The query description has been updated!" msgstr "Описание запроса было обновлено!" -#: application/views/interface_assets/footer.php:552 +#: application/views/interface_assets/footer.php:555 msgid "Something went wrong with the save. Please try again!" msgstr "Что-то пошло не так с сохранением. Пожалуйста, попробуйте еще раз!" -#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:678 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -6599,75 +6706,75 @@ msgstr "" "действителен. Проверьте, какой DXCC для данного конкретного места является " "правильным. Если вы уверены, проигнорируйте это предупреждение." -#: application/views/interface_assets/footer.php:725 +#: application/views/interface_assets/footer.php:730 #: application/views/logbookadvanced/index.php:511 msgid "Callsign: " msgstr "Позывной: " -#: application/views/interface_assets/footer.php:726 +#: application/views/interface_assets/footer.php:731 msgid "Count: " -msgstr "" +msgstr "Всего: " -#: application/views/interface_assets/footer.php:727 +#: application/views/interface_assets/footer.php:732 msgid "Grids: " -msgstr "" +msgstr "Квадратов: " -#: application/views/interface_assets/footer.php:1162 +#: application/views/interface_assets/footer.php:1167 #, php-format msgid "You're not logged in. Please %slogin%s" -msgstr "" +msgstr "Вы не вошли в систему. Пожалуйста, %sвойдите%s" -#: application/views/interface_assets/footer.php:1368 -#: application/views/interface_assets/footer.php:1372 -#: application/views/interface_assets/footer.php:1375 -#: application/views/interface_assets/footer.php:1512 -#: application/views/interface_assets/footer.php:1516 -#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 msgid "grid square" msgstr "квадрат(/-а/-ов)" -#: application/views/interface_assets/footer.php:1375 -#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 msgid "Total count" msgstr "Всего" -#: application/views/interface_assets/footer.php:2106 +#: application/views/interface_assets/footer.php:2111 msgid "QSL Card for " msgstr "QSL-карточка для " -#: application/views/interface_assets/footer.php:2126 +#: application/views/interface_assets/footer.php:2131 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Внимание! Вы уверены, что хотите удалить эту QSL-карточку?" -#: application/views/interface_assets/footer.php:2166 +#: application/views/interface_assets/footer.php:2171 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "eQSL-карточка" -#: application/views/interface_assets/footer.php:2168 +#: application/views/interface_assets/footer.php:2173 msgid "eQSL Card for " msgstr "eQSL-карточка для " -#: application/views/interface_assets/footer.php:2341 -#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 #: application/views/view_log/qso.php:604 msgid "QSL image file" msgstr "Изображение QSL-карточки" -#: application/views/interface_assets/footer.php:2360 +#: application/views/interface_assets/footer.php:2365 msgid "Front QSL Card:" msgstr "Лицевая сторона QSL-карточки:" -#: application/views/interface_assets/footer.php:2398 +#: application/views/interface_assets/footer.php:2403 msgid "Back QSL Card:" msgstr "Обратная сторона QSL-карточки:" -#: application/views/interface_assets/footer.php:2409 -#: application/views/interface_assets/footer.php:2434 +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 msgid "Add additional QSOs to a QSL Card" msgstr "Добавить дополнительные QSO на QSL-карточку" -#: application/views/interface_assets/footer.php:2445 +#: application/views/interface_assets/footer.php:2450 msgid "Something went wrong. Please try again!" msgstr "Что-то пошло не так. Пожалуйста, попробуйте еще раз!" @@ -7264,18 +7371,18 @@ msgstr "QSL отправлено" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:209 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:236 -#: application/views/station_profile/create.php:275 -#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 #: application/views/station_profile/create.php:293 -#: application/views/station_profile/edit.php:350 -#: application/views/station_profile/edit.php:358 -#: application/views/station_profile/edit.php:384 -#: application/views/station_profile/edit.php:405 -#: application/views/station_profile/edit.php:423 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 #: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 #: application/views/user/edit.php:347 application/views/user/edit.php:358 #: application/views/user/edit.php:369 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:399 @@ -7302,18 +7409,18 @@ msgstr "Да" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:210 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:237 -#: application/views/station_profile/create.php:276 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/create.php:292 -#: application/views/station_profile/edit.php:351 -#: application/views/station_profile/edit.php:359 -#: application/views/station_profile/edit.php:385 -#: application/views/station_profile/edit.php:406 -#: application/views/station_profile/edit.php:424 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 #: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 #: application/views/user/edit.php:348 application/views/user/edit.php:359 #: application/views/user/edit.php:370 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:400 @@ -7635,7 +7742,7 @@ msgstr "# Результаты" #: application/views/logbookadvanced/index.php:505 #: application/views/qso/index.php:272 -#: application/views/station_profile/edit.php:85 +#: application/views/station_profile/edit.php:92 msgid "Location" msgstr "QTH" @@ -7805,60 +7912,60 @@ msgstr "Имеющиеся сертификаты" msgid "Upload Certificate" msgstr "Загрузить сертификат" -#: application/views/lotw_views/index.php:41 +#: application/views/lotw_views/index.php:37 msgid "QSO Start Date" msgstr "Дата начала QSO" -#: application/views/lotw_views/index.php:42 +#: application/views/lotw_views/index.php:38 msgid "QSO End Date" msgstr "Дата окончания QSO" -#: application/views/lotw_views/index.php:43 +#: application/views/lotw_views/index.php:39 msgid "Date Created" msgstr "Дата создания" -#: application/views/lotw_views/index.php:44 +#: application/views/lotw_views/index.php:40 msgid "Date Expires" msgstr "Дата окончания срока действия" -#: application/views/lotw_views/index.php:46 +#: application/views/lotw_views/index.php:42 #: application/views/view_log/qso.php:404 msgid "Last Upload" msgstr "Последняя загрузка" -#: application/views/lotw_views/index.php:91 +#: application/views/lotw_views/index.php:87 msgid "Expired" msgstr "Истёк" -#: application/views/lotw_views/index.php:93 +#: application/views/lotw_views/index.php:89 msgid "Expiring" msgstr "Истекает" -#: application/views/lotw_views/index.php:105 +#: application/views/lotw_views/index.php:101 #, php-format msgid "Last success: %s" msgstr "Последнее успеное: %s" -#: application/views/lotw_views/index.php:108 +#: application/views/lotw_views/index.php:104 #, php-format msgid "Last fail: %s" msgstr "Последнее неуспешное: %s" -#: application/views/lotw_views/index.php:114 +#: application/views/lotw_views/index.php:110 msgid "Not Synced" msgstr "Не синхронизирован" -#: application/views/lotw_views/index.php:129 +#: application/views/lotw_views/index.php:125 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" "Вам необходимо загрузить сертификат LoTW в формате p12 для использования " "этих функций." -#: application/views/lotw_views/index.php:144 +#: application/views/lotw_views/index.php:140 msgid "Information" msgstr "Информация" -#: application/views/lotw_views/index.php:149 +#: application/views/lotw_views/index.php:145 msgid "Manual Sync" msgstr "Ручная синхронизация" @@ -8418,7 +8525,7 @@ msgstr "Есть ли дополнительная информация, о ко #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:64 #: application/views/oqrs/showrequests.php:87 -#: application/views/user/main.php:48 application/views/user/profile.php:24 +#: application/views/user/index.php:48 application/views/user/profile.php:24 msgid "E-mail" msgstr "Емэйл" @@ -8758,35 +8865,20 @@ msgstr "" "Никаких дополнительных QSO не было найдено. Это означает, что они, вероятно, " "уже находятся в очереди." -#: application/views/qso/components/winkeysettings.php:7 -#: application/views/qso/components/winkeysettings_results.php:7 -msgid "Winkey Macros" -msgstr "Макросы Winkey" - -#: application/views/qso/components/winkeysettings.php:12 -#: application/views/qso/components/winkeysettings.php:28 -#: application/views/qso/components/winkeysettings.php:44 -#: application/views/qso/components/winkeysettings.php:60 -#: application/views/qso/components/winkeysettings.php:76 -#: application/views/qso/components/winkeysettings_results.php:12 -#: application/views/qso/components/winkeysettings_results.php:28 -#: application/views/qso/components/winkeysettings_results.php:44 -#: application/views/qso/components/winkeysettings_results.php:60 -#: application/views/qso/components/winkeysettings_results.php:76 -#, php-format -msgid "Function %d - Name" -msgstr "Функция %d - Название" - +#: application/views/qso/components/winkeysettings.php:3 #: application/views/qso/components/winkeysettings.php:19 #: application/views/qso/components/winkeysettings.php:35 #: application/views/qso/components/winkeysettings.php:51 #: application/views/qso/components/winkeysettings.php:67 -#: application/views/qso/components/winkeysettings.php:83 -#: application/views/qso/components/winkeysettings_results.php:19 -#: application/views/qso/components/winkeysettings_results.php:35 -#: application/views/qso/components/winkeysettings_results.php:51 -#: application/views/qso/components/winkeysettings_results.php:67 -#: application/views/qso/components/winkeysettings_results.php:83 +#, php-format +msgid "Function %d - Name" +msgstr "Функция %d - Название" + +#: application/views/qso/components/winkeysettings.php:10 +#: application/views/qso/components/winkeysettings.php:26 +#: application/views/qso/components/winkeysettings.php:42 +#: application/views/qso/components/winkeysettings.php:58 +#: application/views/qso/components/winkeysettings.php:74 #, php-format msgid "Function %d - Macro" msgstr "Функция %d - Макрос" @@ -8908,7 +9000,7 @@ msgstr "Сохранить изменения" msgid "TimeOff is less than TimeOn" msgstr "Время окончания меньше времени начала" -#: application/views/qso/index.php:5 application/views/qso/index.php:694 +#: application/views/qso/index.php:5 application/views/qso/index.php:690 msgid "Previous Contacts" msgstr "Предыдущие QSO" @@ -8949,16 +9041,16 @@ msgid "Search DXCluster for latest Spot" msgstr "Поиск в DX кластере последнего спота" #: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:149 -#: application/views/station_profile/edit.php:211 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 #: application/views/user/edit.php:583 application/views/view_log/qso.php:282 #: application/views/view_log/qso.php:549 msgid "IOTA Reference" msgstr "Справочник IOTA" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:165 -#: application/views/station_profile/edit.php:239 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 #: application/views/user/edit.php:587 application/views/view_log/qso.php:289 #: application/views/view_log/qso.php:556 msgid "SOTA Reference" @@ -9024,15 +9116,19 @@ msgstr "Winkey" msgid "Connect" msgstr "Подключить" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:673 msgid "Suggestions" msgstr "Предложения" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:680 msgid "Profile Picture" msgstr "Изображение профиля" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:704 msgid "Max. 5 previous contacts are shown" msgstr "Показываются максимум 5 предыдущих QSO" @@ -9540,6 +9636,7 @@ msgid "" "If you did operate from a new location, first create a new %sStation " "Location%s" msgstr "" +"Если вы работали с нового места, сначала создайте новое %sStation Location%s" #: application/views/simplefle/index.php:112 msgid "e.g. OK2CQR" @@ -9560,7 +9657,7 @@ msgstr "Референции" #: application/views/simplefle/index.php:160 #, php-format msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" -msgstr "" +msgstr "Рефы могут быть либо %sS%sOTA, %sI%sOTA, %sP%sOTA, либо %sW%sWFF" #: application/views/simplefle/index.php:167 msgid "Reload QSO List" @@ -9651,117 +9748,119 @@ msgid "" "A full summary of all commands and the necessary syntax can be found in " "%sthis article%s of our Wiki." msgstr "" +"Полное описание всех команд и необходимого синтаксиса можно найти в %sэтой " +"статье%s нашей Вики." -#: application/views/station_profile/create.php:51 -#: application/views/station_profile/edit.php:60 +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 msgid "Location Name" msgstr "Название профиля QTH" -#: application/views/station_profile/create.php:52 -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:62 +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "Домашний QTH" -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:62 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "Короткое название профиля QTH. К примеру: %s" -#: application/views/station_profile/create.php:59 -#: application/views/station_profile/edit.php:68 +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 msgid "Station callsign. For example: 4W7EST/P" msgstr "Позывной станции, например: 4W7EST/P" -#: application/views/station_profile/create.php:63 -#: application/views/station_profile/edit.php:72 +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 msgid "Station Power (W)" msgstr "Мощность станции (Вт)" -#: application/views/station_profile/create.php:65 -#: application/views/station_profile/edit.php:74 +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 msgid "Default station power in Watt. Overwritten by CAT." msgstr "Мощность станции по умолчанию в Вт. Перезаписывается данными из CAT." -#: application/views/station_profile/create.php:68 -#: application/views/station_profile/edit.php:89 +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 msgid "Station DXCC" msgstr "DXCC станции" -#: application/views/station_profile/create.php:71 -#: application/views/station_profile/edit.php:92 +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 msgctxt "DXCC selection" msgid "None" msgstr "нет" -#: application/views/station_profile/create.php:78 -#: application/views/station_profile/edit.php:105 +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 msgid "Station DXCC entity. For example: Bolivia" msgstr "Субъект DXCC станции. Например: Боливия" -#: application/views/station_profile/create.php:83 -#: application/views/station_profile/edit.php:111 +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 msgid "Station City" msgstr "город" -#: application/views/station_profile/create.php:85 -#: application/views/station_profile/edit.php:113 +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 msgid "Station city. For example: Oslo" msgstr "Город станции. К примеру, Осло" -#: application/views/station_profile/create.php:94 -#: application/views/station_profile/edit.php:125 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:132 msgid "Station state. Applies to certain countries only." msgstr "Штат/область станции. Применимо только к некоторым странам." -#: application/views/station_profile/create.php:99 -#: application/views/station_profile/edit.php:130 +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 msgid "Station County" msgstr "Графство/район" -#: application/views/station_profile/create.php:101 -#: application/views/station_profile/edit.php:132 +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "Графство/район станции. (Используется только для некоторых стран)." -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/edit.php:158 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "Если вы не знаете свою зону CQ, то %s, чтобы найти ее!" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:158 -#: application/views/station_profile/edit.php:175 -#: application/views/station_profile/edit.php:199 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 msgid "click here" msgstr "кликните здесь" -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/edit.php:175 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "Если вы не знаете свою зону ITU, то %s, чтобы найти ее!" -#: application/views/station_profile/create.php:135 -#: application/views/station_profile/edit.php:187 -#: application/views/station_profile/edit.php:190 +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 msgid "Station Gridsquare" msgstr "Квадрат" -#: application/views/station_profile/create.php:140 -#: application/views/station_profile/edit.php:195 +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 msgid "Get Gridsquare" msgstr "Получить квадрат" -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:199 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 #, php-format msgctxt "uses 'click here'" msgid "" @@ -9770,8 +9869,8 @@ msgid "" msgstr "" "Квадрат станции, например: HM54AP. Если вы не знаете свой квадрат, то %s!" -#: application/views/station_profile/create.php:145 -#: application/views/station_profile/edit.php:200 +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." @@ -9779,95 +9878,95 @@ msgstr "" "Если вы располагаетесь на границе квадратов, то укажите квадраты через " "запятую, к примеру: IO77,IO78,IO87,IO88." -#: application/views/station_profile/create.php:160 -#: application/views/station_profile/edit.php:225 +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 msgid "Station IOTA reference. For example: EU-005" msgstr "Референция IOTA станции, к примеру: EU-005" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:226 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 msgid "IOTA World website" msgstr "Веб-сайт IOTA" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:226 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 #, php-format msgid "You can look up IOTA references at the %s." msgstr "Референции IOTA можно найти на сайте %s." -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:241 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 msgid "SOTA Maps website" msgstr "Веб-сайт карт SOTA" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:241 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "Референция SOTA станции. Ссылки на референции SOTA можно найти на %s." -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:254 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 msgid "GMA Map website" msgstr "Веб-сайт карт GMA" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:254 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "Референция WWFF станции. Ссылки на референции WWFF можно найти на %s." -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:267 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 msgid "POTA Map website" msgstr "Веб-сайт карт POTA" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:267 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 #, php-format msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " "look up POTA references at the %s." msgstr "Референция POTA станции. Ссылки на референции POTA можно найти на %s." -#: application/views/station_profile/create.php:183 -#: application/views/station_profile/edit.php:280 +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 msgid "Signature Name" msgstr "Имя подписи" -#: application/views/station_profile/create.php:185 -#: application/views/station_profile/edit.php:282 +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 msgid "Station Signature (e.g. GMA).." msgstr "Подпись станции (т.е. GMA).." -#: application/views/station_profile/create.php:189 -#: application/views/station_profile/edit.php:286 +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 msgid "Signature Information" msgstr "Информация о подписи" -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/edit.php:288 +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "Информация о подписис станции (т.е. DA/NW-357)." -#: application/views/station_profile/create.php:195 -#: application/views/station_profile/edit.php:301 +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "eQSL QTH Nickname" -#: application/views/station_profile/create.php:197 -#: application/views/station_profile/edit.php:303 +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "Название профиля, который сконфигурирован в eQSL для данного QTH" -#: application/views/station_profile/create.php:201 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 msgid "Default QSLMSG" msgstr "Сообщение в QSL (QSLMSG) по умолчанию" -#: application/views/station_profile/create.php:204 -#: application/views/station_profile/edit.php:309 +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." @@ -9875,13 +9974,13 @@ msgstr "" "Определите сообщение по умолчанию, которое будет заполняться и отправляться " "при каждом QSO для данного профиля QTH." -#: application/views/station_profile/create.php:207 -#: application/views/station_profile/edit.php:348 +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 msgid "Ignore Clublog Upload" msgstr "Игнорировать загрузку в Clublog" -#: application/views/station_profile/create.php:212 -#: application/views/station_profile/edit.php:353 +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " "Clublog. If this is deactivated on it's own please check if the Call is " @@ -9891,136 +9990,136 @@ msgstr "" "загружаться в Clublog. Если эта функция отключилась самостоятельно, " "проверьте, правильно ли настроен позыной в Clublog" -#: application/views/station_profile/create.php:215 -#: application/views/station_profile/edit.php:356 +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 msgid "ClubLog Realtime Upload" msgstr "Загрузка в Clublog в реальном времени" -#: application/views/station_profile/create.php:224 -#: application/views/station_profile/edit.php:372 +#: application/views/station_profile/create.php:231 +#: application/views/station_profile/edit.php:379 msgid "HRDLog.net Username" msgstr "Имя пользователя в HRDLog.net" -#: application/views/station_profile/create.php:226 -#: application/views/station_profile/edit.php:374 +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" "Имя пользователя, под которым вы зарегистрированы на сайте HRDlog.net " "(обычно это ваш позывной)." -#: application/views/station_profile/create.php:229 -#: application/views/station_profile/edit.php:377 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 msgid "HRDLog.net API Key" msgstr "Ключ API HRDLog.net" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:379 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "Создайте код API на вашей %s" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:379 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 msgid "HRDLog.net Userprofile page" msgstr "странице профиля пользователя на HRDLog.net" -#: application/views/station_profile/create.php:234 -#: application/views/station_profile/edit.php:382 +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 msgid "HRDLog.net Logbook Realtime Upload" msgstr "Загрузка в журнал HRDLog.net в реальном времени" -#: application/views/station_profile/create.php:243 -#: application/views/station_profile/edit.php:317 +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 msgid "Subscription Required" msgstr "Требуется подписка" -#: application/views/station_profile/create.php:248 +#: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "Ключ API QRZ.com Logbook" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "Проверить ключ API" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:326 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "Ваши ключи API находятся на %s" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:326 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 msgid "the QRZ.com Logbook settings page" msgstr "странице настроек QRZ.com Logbook" -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/edit.php:330 +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 msgid "QRZ.com Logbook Upload" msgstr "Загрузка в QRZ.com Logbook" -#: application/views/station_profile/create.php:260 -#: application/views/station_profile/edit.php:333 +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 msgid "Realtime" msgstr "В реальном времени" -#: application/views/station_profile/create.php:268 -#: application/views/station_profile/edit.php:398 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "Ключ API QO-100 Dx Club" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:400 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "Создайте ключ API на своей %s" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:400 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 msgid "QO-100 Dx Club's profile page" msgstr "странице профиля в QO-100 Dx Club" -#: application/views/station_profile/create.php:273 -#: application/views/station_profile/edit.php:403 +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 msgid "QO-100 Dx Club Realtime Upload" msgstr "Загрузка QO-100 Dx Club в реальном времени" -#: application/views/station_profile/create.php:283 -#: application/views/station_profile/edit.php:421 +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 msgid "OQRS Enabled" msgstr "OQRS включен" -#: application/views/station_profile/create.php:290 -#: application/views/station_profile/edit.php:428 +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 msgid "OQRS Email alert" msgstr "Оповещение о OQRS о емэйл" -#: application/views/station_profile/create.php:295 -#: application/views/station_profile/edit.php:433 +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 msgid "Make sure email is set up under admin and global options." msgstr "" "Убедитесь, что емэйл сконфигурирован администратором в общих настройках." -#: application/views/station_profile/create.php:298 -#: application/views/station_profile/edit.php:436 +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 msgid "OQRS Text" msgstr "Текст OQRS" -#: application/views/station_profile/create.php:300 -#: application/views/station_profile/edit.php:438 +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 msgid "Some info you want to add regarding QSL'ing." msgstr "Информация, которую вы хотите добавить, касающаяся QSL." -#: application/views/station_profile/edit.php:142 +#: application/views/station_profile/edit.php:149 msgid "Zones" msgstr "Зоны" -#: application/views/station_profile/edit.php:277 +#: application/views/station_profile/edit.php:284 msgid "Signature" msgstr "Подпись" @@ -10401,6 +10500,8 @@ msgid "" "Click here on 'Add a Theme' and type in the necessary data. Type in the " "filenames for the logos %swithout%s the file extension '.png'" msgstr "" +"Нажмите здесь на «Добавить тему» и введите необходимые данные. Введите имена " +"файлов для логотипов %sбез%s расширения файла «.png»" #: application/views/themes/index.php:83 msgid "Foldername" @@ -10489,7 +10590,7 @@ msgstr "" msgid "Check QSOs missing DXCC data" msgstr "Проверить QSO на отсутствие данных DXCC" -#: application/views/update/index.php:42 +#: application/views/update/index.php:42 application/views/update/index.php:62 msgid "Re-check all QSOs in logbook" msgstr "Перепроверить все QSO в журнале" @@ -10518,6 +10619,16 @@ msgstr "" msgid "Update distance data" msgstr "Обновить информацию о дистанции" +#: application/views/update/index.php:61 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" +"Используйте эту кнопку, чтобы обновить информацию о расстоянии для всех " +"ваших QSO. В зависимости от количества QSO это может занять некоторое время. " +"Пожалуйста, будьте терпеливы." + #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "Удалить аккаунт пользователя" @@ -10948,6 +11059,133 @@ msgstr "Забыли пароль?" msgid "You can reset your password here." msgstr "Вы можете сбросить свой пароль здесь." +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" +"Вы действительно хотите отправить этому пользователю ссылку для сброса " +"пароля?" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "Пожалуйста подождите..." + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "Письма с ссылкой для спроса пароля отправлено пользователю:" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "Список пользователей" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "" +"Для работы Wavelog требуется хотя наличие хотя бы одного пользовательского " +"аккаунта." + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" +"Пользователям могут быть назначены роли, которые предоставляют им различные " +"права, например, добавление QSO в журнал и доступ к API Wavelog." + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" +"Текущий вошедший в систему пользователь отображается в правом верхнем углу " +"каждой страницы." + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" +"С помощью кнопки сброса пароля вы можете отправить пользователю письмо, " +"содержащее ссылку для сброса пароля. Для этого убедитесь, что параметры " +"электронной почты в глобальных параметрах настроены правильно." + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "Добавить пользователя" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "Обновить список" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "Роль" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "Последний логин" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "Сброс пароля" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "Никогда" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "Профилей QTH" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "Журналов" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "Последнее QSO:" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "Количество QSO в журнале" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "" + #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" msgstr "РЕЖИМ ОБСЛУЖИВАНИЯ" @@ -10963,7 +11201,7 @@ msgstr "Эта демонстрация будет сбрасываться ка #: application/views/user/login.php:60 #, php-format msgid "More Information about Wavelog on %sGithub%s." -msgstr "" +msgstr "Больше информации о Wavelog на %sGithub%s." #: application/views/user/login.php:79 msgid "Forgot your password?" @@ -10973,95 +11211,6 @@ msgstr "Забыли пароль?" msgid "Keep me logged in" msgstr "Оставаться в системе" -#: application/views/user/main.php:2 -msgid "Do you really want to send this user a password-reset link?" -msgstr "" -"Вы действительно хотите отправить этому пользователю ссылку для сброса " -"пароля?" - -#: application/views/user/main.php:6 -msgid "Please Wait ..." -msgstr "Пожалуйста подождите..." - -#: application/views/user/main.php:9 -msgid "Password-reset e-mail sent to user:" -msgstr "Письма с ссылкой для спроса пароля отправлено пользователю:" - -#: application/views/user/main.php:30 -msgid "User List" -msgstr "Список пользователей" - -#: application/views/user/main.php:33 -msgid "Wavelog needs at least one user configured in order to operate." -msgstr "" -"Для работы Wavelog требуется хотя наличие хотя бы одного пользовательского " -"аккаунта." - -#: application/views/user/main.php:34 -msgid "" -"Users can be assigned roles which give them different permissions, such as " -"adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "" -"Пользователям могут быть назначены роли, которые предоставляют им различные " -"права, например, добавление QSO в журнал и доступ к API Wavelog." - -#: application/views/user/main.php:35 -msgid "" -"The currently logged-in user is displayed at the upper-right of each page." -msgstr "" -"Текущий вошедший в систему пользователь отображается в правом верхнем углу " -"каждой страницы." - -#: application/views/user/main.php:36 -msgid "" -"With the password reset button, you can send a user an email containing a " -"link to reset their password. To achieve this, ensure that the email " -"settings in the global options are configured correctly." -msgstr "" -"С помощью кнопки сброса пароля вы можете отправить пользователю письмо, " -"содержащее ссылку для сброса пароля. Для этого убедитесь, что параметры " -"электронной почты в глобальных параметрах настроены правильно." - -#: application/views/user/main.php:38 -msgid "Create user" -msgstr "Добавить пользователя" - -#: application/views/user/main.php:39 -msgid "Refresh List" -msgstr "Обновить список" - -#: application/views/user/main.php:49 -msgid "Type" -msgstr "Роль" - -#: application/views/user/main.php:50 -msgid "Last seen" -msgstr "Последний логин" - -#: application/views/user/main.php:53 -msgid "Password Reset" -msgstr "Сброс пароля" - -#: application/views/user/main.php:79 -msgid "Never" -msgstr "Никогда" - -#: application/views/user/main.php:83 -msgid "Locations" -msgstr "Профилей QTH" - -#: application/views/user/main.php:85 -msgid "Logbooks" -msgstr "Журналов" - -#: application/views/user/main.php:87 -msgid "Last QSO:" -msgstr "Последнее QSO:" - -#: application/views/user/main.php:89 -msgid "No QSOs in Log" -msgstr "Количество QSO в журнале" - #: application/views/user/profile.php:19 msgid "Level" msgstr "Уровень" @@ -11326,6 +11475,9 @@ msgstr "Ваш позывной:" msgid "Submit Request" msgstr "Отправить запрос" +#~ msgid "Winkey Macros" +#~ msgstr "Макросы Winkey" + #~ msgid "User logged in" #~ msgstr "Пользователь вошёл" diff --git a/application/locale/sq/LC_MESSAGES/messages.po b/application/locale/sq/LC_MESSAGES/messages.po index 5592f669d..4cb89d833 100644 --- a/application/locale/sq/LC_MESSAGES/messages.po +++ b/application/locale/sq/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-17 17:16+0000\n" +"POT-Creation-Date: 2024-08-21 15:06+0000\n" "PO-Revision-Date: 2024-08-17 10:49+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Albanian \n" +"POT-Creation-Date: 2024-08-21 15:06+0000\n" +"PO-Revision-Date: 2024-08-21 06:52+0000\n" +"Last-Translator: Dragan Đorđević <4o4a.dragan@gmail.com>\n" "Language-Team: Serbian \n" "Language: sr\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 5.6.2\n" +"X-Generator: Weblate 5.7\n" #: application/controllers/Accumulated.php:13 #: application/controllers/Activators.php:13 @@ -51,8 +51,8 @@ msgstr "" #: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 #: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 #: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:348 -#: application/controllers/Eqsl.php:411 application/controllers/Eqsl.php:427 -#: application/controllers/Eqsl.php:487 application/controllers/Hamsat.php:13 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 application/controllers/Hamsat.php:13 #: application/controllers/Kmlexport.php:18 #: application/controllers/Kmlexport.php:33 #: application/controllers/Labels.php:26 @@ -60,17 +60,17 @@ msgstr "" #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 #: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 #: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 -#: application/controllers/Lotw.php:712 application/controllers/Lotw.php:820 -#: application/controllers/Lotw.php:828 application/controllers/Mode.php:15 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 #: application/controllers/Notes.php:10 application/controllers/Options.php:15 #: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 #: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 #: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 #: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 #: application/controllers/Qso.php:9 application/controllers/Qso.php:19 -#: application/controllers/Qso.php:176 application/controllers/Qso.php:279 -#: application/controllers/Qso.php:299 application/controllers/Qso.php:308 -#: application/controllers/Qso.php:603 application/controllers/Radio.php:259 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:599 application/controllers/Radio.php:259 #: application/controllers/Radio.php:285 application/controllers/Radio.php:301 #: application/controllers/Satellite.php:15 #: application/controllers/Sattimers.php:9 @@ -84,10 +84,11 @@ msgstr "" #: application/controllers/Update.php:24 application/controllers/Update.php:273 #: application/controllers/Update.php:284 #: application/controllers/Update.php:295 -#: application/controllers/Update.php:306 application/controllers/User.php:8 -#: application/controllers/User.php:21 application/controllers/User.php:206 -#: application/controllers/User.php:207 application/controllers/User.php:719 -#: application/controllers/User.php:738 application/controllers/User.php:1021 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 #: application/controllers/User_options.php:9 msgid "You're not allowed to do that!" msgstr "Nije vam dozvoljeno da to uradite!" @@ -108,7 +109,7 @@ msgstr "Mapa aktiviranih polja" #: application/controllers/Gridmap.php:31 #: application/controllers/Visitor.php:374 #: application/views/activators/index.php:100 -#: application/views/interface_assets/footer.php:42 +#: application/views/interface_assets/footer.php:43 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "Polja" @@ -222,7 +223,7 @@ msgid "Key Invalid - either not found or disabled" msgstr "Ključ nije ispravan - ili nije pronađen, ili je onemogućen" #: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 +#: application/views/lotw_views/index.php:91 msgid "Valid" msgstr "Validan" @@ -277,7 +278,7 @@ msgstr "DOK" #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 -#: application/views/lotw_views/index.php:40 +#: application/views/lotw_views/index.php:36 #: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 #: application/views/search/cqzones_result.php:15 #: application/views/search/result.php:27 @@ -317,7 +318,7 @@ msgstr "Pregled loga" #: application/controllers/Awards.php:454 msgid " and band " -msgstr "" +msgstr " i opseg " #: application/controllers/Awards.php:457 msgid " and sat " @@ -356,7 +357,7 @@ msgstr " i " #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:336 #: application/views/search/search_result_ajax.php:9 -#: application/views/station_profile/edit.php:236 +#: application/views/station_profile/edit.php:243 #: application/views/user/edit.php:234 application/views/user/edit.php:256 #: application/views/user/edit.php:278 application/views/user/edit.php:300 #: application/views/user/edit.php:323 @@ -377,7 +378,7 @@ msgstr "SOTA" #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:341 #: application/views/search/search_result_ajax.php:10 -#: application/views/station_profile/edit.php:249 +#: application/views/station_profile/edit.php:256 #: application/views/user/edit.php:235 application/views/user/edit.php:257 #: application/views/user/edit.php:279 application/views/user/edit.php:301 #: application/views/user/edit.php:324 @@ -397,7 +398,7 @@ msgstr "WWFF" #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:346 #: application/views/search/search_result_ajax.php:11 -#: application/views/station_profile/edit.php:262 +#: application/views/station_profile/edit.php:269 #: application/views/user/edit.php:236 application/views/user/edit.php:258 #: application/views/user/edit.php:280 application/views/user/edit.php:302 #: application/views/user/edit.php:325 @@ -426,7 +427,7 @@ msgstr "H26" #: application/controllers/Awards.php:856 msgid "IOTA (Island On The Air)" -msgstr "IOTA (Island On The Air)" +msgstr "IOTA (Island On The Air - Ostrva u eteru)" #: application/controllers/Awards.php:867 #: application/controllers/Awards.php:881 @@ -670,19 +671,19 @@ msgstr "Informacije o eQSL uvozu" msgid "eQSL QSO Upload" msgstr "eQSL učitavanje QSO" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:416 msgid "eQSL Tools" msgstr "eQSL alati" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid " / Errors: " msgstr " / Greške: " -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid "Successfully downloaded: " msgstr "Uspešno preuzeto: " -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:472 msgid "eQSL Card Image Download" msgstr "Preuzimanje slika eQSL karata" @@ -958,7 +959,7 @@ msgstr "LoTW" #: application/views/search/result_search.php:16 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:273 -#: application/views/station_profile/edit.php:298 +#: application/views/station_profile/edit.php:305 #: application/views/timeline/index.php:64 application/views/user/edit.php:564 #: application/views/user/edit.php:667 application/views/user/edit.php:731 msgid "eQSL" @@ -972,7 +973,7 @@ msgstr "eQSL" #: application/views/awards/waja/index.php:71 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 -#: application/views/station_profile/edit.php:345 +#: application/views/station_profile/edit.php:352 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 #: application/views/view_log/partial/log_ajax.php:83 @@ -1147,7 +1148,7 @@ msgstr "Zemlja" #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:318 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:208 +#: application/views/station_profile/edit.php:215 #: application/views/timeline/index.php:202 application/views/user/edit.php:233 #: application/views/user/edit.php:255 application/views/user/edit.php:277 #: application/views/user/edit.php:299 application/views/user/edit.php:322 @@ -1371,15 +1372,15 @@ msgstr "Operator" #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:675 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:159 #: application/views/lookup/index.php:31 -#: application/views/lotw_views/index.php:56 +#: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 #: 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:98 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 #: application/views/stationsetup/stationsetup.php:150 @@ -1409,23 +1410,50 @@ msgstr "Brza pretraga" msgid "Logbook of the World" msgstr "Loogbok of the World" -#: application/controllers/Lotw.php:610 +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "" + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "" + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "" + +#: application/controllers/Lotw.php:413 +#, php-format +msgid "" +"Found no certificate in file %s. If the filename contains 'key-only' this is " +"typically a certificate request which has not been processed by LoTW yet." +msgstr "" + +#: application/controllers/Lotw.php:617 msgid "LoTW ADIF Information" msgstr "Informacija o LoTW ADIF" -#: application/controllers/Lotw.php:718 +#: application/controllers/Lotw.php:725 msgid "LoTW ADIF Import" msgstr "Uvoz LoTW ADIF" -#: application/controllers/Lotw.php:830 +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "" + +#: application/controllers/Lotw.php:837 msgid "LoTW .TQ8 Upload" msgstr "LoTW .TQ8 učitavanje" -#: application/controllers/Lotw.php:927 application/controllers/Lotw.php:932 +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "" + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 msgid "LoTW .TQ8 Sent" msgstr "LoTW .TQ8 je poslat" -#: application/controllers/Lotw.php:939 +#: application/controllers/Lotw.php:946 msgid "LoTW .TQ8 Not Sent" msgstr "LoTW .TQ8 nije poslat" @@ -1590,6 +1618,47 @@ msgstr "OQRS zahtevi" msgid "QRB Calculator" msgstr "QRB računar" +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "" + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" + #: application/controllers/Qrz.php:173 #: application/views/interface_assets/header.php:426 msgid "QRZ Logbook" @@ -1644,7 +1713,7 @@ msgstr "Vremenska oznaka" #: application/controllers/Radio.php:52 #: application/views/logbookadvanced/index.php:527 -#: application/views/lotw_views/index.php:47 +#: application/views/lotw_views/index.php:43 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:171 #: application/views/stationsetup/exportmapoptions.php:5 @@ -1670,13 +1739,13 @@ msgstr "Podrazumevano (kliknite za objavu)" #: application/controllers/Radio.php:105 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2329 -#: application/views/interface_assets/footer.php:2347 -#: application/views/interface_assets/footer.php:2368 -#: application/views/interface_assets/footer.php:2386 +#: application/views/interface_assets/footer.php:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:519 -#: application/views/lotw_views/index.php:118 +#: application/views/lotw_views/index.php:114 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 #: application/views/qslcard/index.php:65 @@ -1686,7 +1755,7 @@ msgstr "Podrazumevano (kliknite za objavu)" #: application/views/stationsetup/stationsetup.php:33 #: application/views/stationsetup/stationsetup.php:137 #: application/views/stationsetup/stationsetup.php:192 -#: application/views/themes/index.php:107 application/views/user/main.php:54 +#: application/views/themes/index.php:107 application/views/user/index.php:57 #: application/views/view_log/qso.php:613 msgid "Delete" msgstr "Obrišite" @@ -1727,6 +1796,7 @@ msgstr "Satelitski tajmer" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 +#: application/views/interface_assets/footer.php:37 #: application/views/interface_assets/header.php:336 #: application/views/interface_assets/header.php:343 #: application/views/logbookadvanced/index.php:516 @@ -1779,8 +1849,8 @@ msgstr "Uredi lokaciju stanice: " #: application/views/logbookadvanced/edit.php:18 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:447 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 @@ -1845,8 +1915,8 @@ msgstr "Greška. Veza je već u upotrebi!" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:259 -#: application/views/station_profile/edit.php:332 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 msgid "Disabled" @@ -1904,15 +1974,15 @@ msgstr "Aktivna stanica" #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:28 #: application/views/stationsetup/stationsetup.php:161 -#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/user/index.php:90 application/views/user/index.php:92 msgid "QSO" msgstr "QSO" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 -#: application/views/interface_assets/footer.php:538 -#: application/views/interface_assets/footer.php:547 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 #: application/views/labels/index.php:47 application/views/labels/index.php:83 #: application/views/logbookadvanced/index.php:518 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 @@ -1920,7 +1990,7 @@ msgstr "QSO" #: application/views/search/stored_queries.php:21 #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 -#: application/views/themes/index.php:104 application/views/user/main.php:52 +#: application/views/themes/index.php:104 application/views/user/index.php:52 msgid "Edit" msgstr "Uredite" @@ -2037,37 +2107,37 @@ msgstr "DXCC izuzetaka:" msgid "Dxcc Prefixes:" msgstr "DXCC prefiksa:" -#: application/controllers/User.php:12 +#: application/controllers/User.php:36 #: application/views/interface_assets/header.php:268 msgid "User Accounts" msgstr "Korisnički nalozi" -#: application/controllers/User.php:52 +#: application/controllers/User.php:76 msgid "Add User" msgstr "Dodaj korisnika" -#: application/controllers/User.php:166 +#: application/controllers/User.php:190 msgid "Users" msgstr "Korisnici" -#: application/controllers/User.php:240 application/controllers/User.php:673 +#: application/controllers/User.php:264 application/controllers/User.php:697 msgid "Edit User" msgstr "Uredi korisnika" -#: application/controllers/User.php:665 application/controllers/User.php:668 -#: application/views/user/main.php:3 application/views/user/main.php:46 +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 msgid "User" msgstr "Korisnik" -#: application/controllers/User.php:665 application/controllers/User.php:668 +#: application/controllers/User.php:689 application/controllers/User.php:692 msgid "edited" msgstr "uređeno" -#: application/controllers/User.php:722 +#: application/controllers/User.php:746 msgid "Profile" msgstr "Profil" -#: application/controllers/User.php:779 +#: application/controllers/User.php:803 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." @@ -2075,18 +2145,18 @@ msgstr "" "Čestitamo! Wavelog je uspešno instaliran. Sada se možete prijaviti po prvi " "put." -#: application/controllers/User.php:843 application/controllers/User.php:853 +#: application/controllers/User.php:867 application/controllers/User.php:877 msgid "Login failed. Try again." msgstr "Prijava nije uspela. Pokušajte ponovo." -#: application/controllers/User.php:860 +#: application/controllers/User.php:884 #: application/views/interface_assets/header.php:356 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:88 msgid "Login" msgstr "Prijava" -#: application/controllers/User.php:898 +#: application/controllers/User.php:922 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " @@ -2097,38 +2167,66 @@ msgstr "" "kontaktirate administratora. Trenutno je prijava dozvoljena samo " "administratorima." -#: application/controllers/User.php:901 +#: application/controllers/User.php:925 msgid "Incorrect username or password!" msgstr "Neispravno korisničko ime ili lozinka!" -#: application/controllers/User.php:918 +#: application/controllers/User.php:942 #, php-format msgid "User %s logged out." msgstr "Korisnik %s se odjavio." -#: application/controllers/User.php:932 +#: application/controllers/User.php:956 msgid "Password Reset is disabled on the Demo!" msgstr "Reset lozinke je onemogućen u Demo verziji!" -#: application/controllers/User.php:945 +#: application/controllers/User.php:969 msgid "Forgot Password" msgstr "Zaboravljena lozinka" -#: application/controllers/User.php:995 application/views/user/main.php:8 +#: application/controllers/User.php:1019 application/views/user/index.php:8 msgid "Email settings are incorrect." msgstr "Email podešavanja nisu ispravna." -#: application/controllers/User.php:999 application/controllers/User.php:1004 +#: application/controllers/User.php:1023 application/controllers/User.php:1028 msgid "Password Reset Processed." msgstr "Reset lozinke je obrađen." -#: application/controllers/User.php:1106 +#: application/controllers/User.php:1129 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "Reset lozinke" +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "" + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "" + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "" + #: application/controllers/Visitor.php:50 #: application/controllers/Visitor.php:79 #: application/controllers/Visitor.php:142 @@ -2421,8 +2519,8 @@ msgstr "Razlika" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1441 -#: application/views/interface_assets/footer.php:1580 +#: application/views/interface_assets/footer.php:1446 +#: application/views/interface_assets/footer.php:1585 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 @@ -2654,7 +2752,7 @@ msgstr "Ništa nije pronađeno!" #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 -#: application/views/lotw_views/index.php:39 +#: application/views/lotw_views/index.php:35 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 #: application/views/qslcard/index.php:28 @@ -2669,10 +2767,10 @@ msgstr "Ništa nije pronađeno!" #: application/views/search/lotw_unconfirmed_result.php:6 #: application/views/search/result.php:11 #: application/views/simplefle/index.php:142 -#: application/views/station_profile/edit.php:56 +#: application/views/station_profile/edit.php:63 #: application/views/stationsetup/linkedlocations.php:17 -#: application/views/user/edit.php:123 application/views/user/main.php:4 -#: application/views/user/main.php:47 application/views/user/profile.php:29 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 #: application/views/view_log/qso.php:82 application/views/view_log/qso.php:507 msgid "Callsign" msgstr "Pozivni znak" @@ -2930,8 +3028,8 @@ msgstr "Uvijek koristi prilikom uvoza login-pozivni znak kao operatorovo ime" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 -#: application/views/interface_assets/footer.php:498 -#: application/views/interface_assets/footer.php:2125 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 msgid "DANGER" msgstr "OPASNOST" @@ -3119,8 +3217,8 @@ msgstr "Jednostavno ime kao opis za šta koristite ovaj API." #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 -#: application/views/interface_assets/footer.php:44 -#: application/views/interface_assets/footer.php:533 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -3128,8 +3226,6 @@ msgstr "Jednostavno ime kao opis za šta koristite ovaj API." #: application/views/options/oqrs.php:63 #: application/views/options/radios.php:45 #: application/views/options/version_dialog.php:78 -#: application/views/qso/components/winkeysettings.php:90 -#: application/views/qso/components/winkeysettings_results.php:90 #: application/views/satellite/create.php:70 #: application/views/simplefle/index.php:22 msgid "Save" @@ -3214,7 +3310,7 @@ msgid "Permissions" msgstr "Dozvole" #: application/views/api/help.php:31 application/views/cron/index.php:52 -#: application/views/lotw_views/index.php:45 +#: application/views/lotw_views/index.php:41 #: application/views/mode/index.php:31 #: application/views/oqrs/showrequests.php:91 #: application/views/sattimers/index.php:39 @@ -3385,8 +3481,8 @@ msgstr "Ukupno" #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:106 -#: application/views/station_profile/edit.php:146 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 #: application/views/timeline/index.php:231 #: application/views/timeplotter/index.php:44 msgid "CQ Zone" @@ -3395,7 +3491,7 @@ msgstr "CQ zona" #: application/views/awards/cq/index.php:4 #: application/views/awards/itu/index.php:4 msgid "Hover over a zone" -msgstr "" +msgstr "Pomerite miša preko CQ zone / ITU zone" #: application/views/awards/cq/index.php:20 msgid "CQ Magazine WAZ Award" @@ -3435,7 +3531,7 @@ msgstr "Diplome - CQ Magazin WAZ" #: application/views/bandmap/list.php:73 #: application/views/dashboard/index.php:245 #: application/views/dashboard/index.php:363 -#: application/views/interface_assets/footer.php:39 +#: application/views/interface_assets/footer.php:40 #: application/views/visitor/index.php:266 msgid "Confirmed" msgstr "Potvrđeno" @@ -3501,7 +3597,7 @@ msgstr "Prikaži QSO sa vrstom QSL" #: application/views/awards/cq/index.php:56 #: application/views/awards/itu/index.php:56 -#: application/views/interface_assets/footer.php:2104 +#: application/views/interface_assets/footer.php:2109 #: application/views/qso/edit_ajax.php:378 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -3873,11 +3969,11 @@ msgstr "Ova karta prikazuje samo QSO rađene preko SAT." #: application/views/awards/helvetia/index.php:3 msgctxt "Switzerland Canton" msgid "Canton" -msgstr "" +msgstr "Kanton" #: application/views/awards/helvetia/index.php:4 msgid "Hover over a canton" -msgstr "" +msgstr "Pomerite miša preko kantona" #: application/views/awards/helvetia/index.php:20 msgid "HELVETIA 26 | SWITZERLAND AWARD" @@ -3939,6 +4035,12 @@ msgid "" "enhance the experience of all those active on the amateur bands. To achieve " "this, it draws on the widespread mystique surrounding islands." msgstr "" +"IOTA je uzbudljiv i program koji je uveo novine u potragu za diplomama, koji " +"je privukao interes hiljada radio amatera širom sveta. Ustanovljen je 1964 i " +"promoviše kontakte sa stanicama koje su smeštene na ostrvima širom sveta " +"kako bi poboljšao iskustva svih onih koji su aktivni na radio amaterskim " +"opsezima. Da bi se to postiglo, program se oslanja ne samo na bliska već i " +"udaljena, mistična ostrva." #: application/views/awards/iota/index.php:18 msgid "" @@ -3954,19 +4056,28 @@ msgid "" "an Honor Roll and annual listings, as well as recognizing it with " "certificates and prestigious awards." msgstr "" +"Administrira ga Islands On The Air (IOTA) Ltd (poznat kao IOTA Menadžment) u " +"saradnji sa Radio-udruženjem Velike Britanije (RGSB). IOTA Menadžment je " +"grupisao svjetska ostrva u otprilike 1200 'IOTA grupa', od kojih svaka ima " +"različiti broj ostrva, koja ispunjavaju određene uslove. Ovi listinzi su " +"objavljeni u IOTA Imeniku na IOTA web sajtu. Cilj IOTA tragača je da ostvare " +"radio vezu sa najmanje jednim ostrvom iz što je više grupa. Progam ima dobro " +"definisana pravila i podstiče prijateljsko takmičenje između tragača kako " +"objavljivanjem rezultata na Honor Roll i godišnjoj listi, tako i dodjelom " +"potvrda i prestižnih diploma." #: application/views/awards/iota/index.php:19 #, php-format msgid "You can also find this information on %s." -msgstr "" +msgstr "Ove informacije možete pronaći na %s." #: application/views/awards/iota/index.php:29 msgid "Deleted IOTA" -msgstr "" +msgstr "Izbrisane IOTA" #: application/views/awards/iota/index.php:132 msgid "Show IOTA Map" -msgstr "" +msgstr "Prikaži kartu IOTA" #: application/views/awards/iota/index.php:171 #: application/views/contesting/add.php:25 @@ -3992,11 +4103,11 @@ msgstr "" #: application/views/view_log/qso.php:191 #: application/views/view_log/qso.php:511 msgid "Name" -msgstr "" +msgstr "Naziv" #: application/views/awards/iota/index.php:173 msgid "Deleted" -msgstr "" +msgstr "Izbrisano" #: application/views/awards/itu/index.php:3 #: application/views/awards/itu/index.php:150 @@ -4004,10 +4115,10 @@ msgstr "" #: application/views/logbookadvanced/index.php:251 #: application/views/logbookadvanced/index.php:594 #: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:120 -#: application/views/station_profile/edit.php:163 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 msgid "ITU Zone" -msgstr "" +msgstr "ITU Zona" #: application/views/awards/itu/index.php:21 msgid "" @@ -4016,30 +4127,37 @@ msgid "" "broadcasting zones as defined by the International Telecommunications Union " "(ITU)." msgstr "" +"Klasičnu Worked ITU Zones diplomu možete osvojiti pružanjem dokaza da ste " +"ostvarili kontakte sa zemaljskim radio-amaterskim stanicama u najmanje 70 od " +"75 zona kako su definisane od strane Međunarodne unije za telekomunikacije " +"(International Telecommunication Union - ITU)." #: application/views/awards/itu/index.php:22 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." -msgstr "" +msgstr "Više informacija možete pronaći na web sajtu %s." #: application/views/awards/itu/index.php:25 msgid "Awards - ITU Zones" -msgstr "" +msgstr "Diplome - ITU zone" #: application/views/awards/itu/index.php:115 msgid "Show ITU Zone Map" -msgstr "" +msgstr "Prikaži kartu ITU zona" #: application/views/awards/jcc/index.php:16 msgid "JCC - Japan Century Cities Award" -msgstr "" +msgstr "JCC - Japan Century Cities Award" #: application/views/awards/jcc/index.php:17 msgid "" "May be claimed for having contacted (heard) and received a QSL card from an " "amateur station located in each of at least 100 different cities of Japan." msgstr "" +"Možete je osvojiti za ostvarene kontakte (ili slušane veze) i primljene QSL " +"karte od amaterskih radio-stanica smeštenih u svakom od najmanje 100 " +"različitih gradova Japana." #: application/views/awards/jcc/index.php:18 msgid "" @@ -4048,28 +4166,33 @@ msgid "" "however names of city may be omitted. An additional sticker will be issued " "at every 50 contacts like 150, 250, 350, 450, 550, 650, 750 cities." msgstr "" +"JCC-200, 300, 400, 500, 600, 700 i 800 će biti izdate kao posebne diplome. " +"Lista QSLkarata trebalo bi da bude složena po redu prema JCC referentnim " +"brojevima, a imena gradova mogu biti izostavljena. Dodatne nalepnice biće " +"izdate za svakih 50 kontakata kao što su 150, 250, 350, 450, 550, 650 i 750 " +"gradova." #: application/views/awards/jcc/index.php:115 msgid "Show JCC Map" -msgstr "" +msgstr "Prikaži JCC kartu" #: application/views/awards/jcc/index.php:116 #: application/views/cabrillo/index.php:180 application/views/cfd/index.php:25 #: application/views/csv/index.php:128 application/views/dxatlas/index.php:128 #: application/views/kml/index.php:113 msgid "Export" -msgstr "" +msgstr "Izvoz" #: application/views/awards/jcc/index.php:126 #: application/views/public_search/empty.php:2 #: application/views/public_search/result.php:2 msgid "Results" -msgstr "" +msgstr "Rezultati" #: application/views/awards/jcc/index.php:151 #: application/views/awards/waja/index.php:153 msgid "Number" -msgstr "" +msgstr "Broj" #: application/views/awards/jcc/index.php:152 #: application/views/search/result.php:21 @@ -4081,11 +4204,11 @@ msgstr "Grad" #: application/views/dashboard/index.php:353 #: application/views/distances/index.php:23 msgid "SAT" -msgstr "" +msgstr "SAT" #: application/views/awards/pota/index.php:7 msgid "POTA Awards" -msgstr "" +msgstr "POTA diploma" #: application/views/awards/pota/index.php:8 msgid "" @@ -4093,6 +4216,10 @@ msgid "" "Parks on the Air special event ended. A group of volunteers wanted to " "continue the fun beyond the one-year event, and thus, POTA was born." msgstr "" +"Parks on the Air® (POTA) program započet je 2017. godine kada se završio " +"ARRL-ov posebni događaj Nacionalni parkovi u eteru. Grupa volontera želela " +"je da nastavi sa zabavom oko projekta koji je trajao jednu godinu, te je " +"tako rođena POTA." #: application/views/awards/pota/index.php:9 msgid "" @@ -4100,6 +4227,9 @@ msgid "" "there are several categories based on the number of parks, geographic areas, " "and more." msgstr "" +"POTA funkcioniše slično SOTA programu, sa aktivatorima i lovcima. Za " +"diplome, postoji nekoliko kategorija na osnovu broja parkova, geografskih " +"područja, i još toga." #: application/views/awards/pota/index.php:10 #, php-format @@ -4107,39 +4237,41 @@ msgctxt "uses 'the website'" msgid "" "For more information about the available awards and categories, please visit " "the %s." -msgstr "" +msgstr "Za više informacija o dostupnim diplomama i kategorijama, posetite %s." #: application/views/awards/pota/index.php:31 #: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:177 -#: application/views/station_profile/edit.php:265 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 #: application/views/user/edit.php:595 application/views/view_log/qso.php:303 #: application/views/view_log/qso.php:570 msgid "POTA Reference(s)" -msgstr "" +msgstr "POTA reference" #: application/views/awards/rac/index.php:3 msgctxt "Canada Province" msgid "Province" -msgstr "" +msgstr "Provincije" #: application/views/awards/rac/index.php:4 msgid "Hover over a province" -msgstr "" +msgstr "Nanesite miša iznad provincije" #: application/views/awards/rac/index.php:106 msgid "Show RAC Map" -msgstr "" +msgstr "Prikaži RAC kartu" #: application/views/awards/sig/index.php:7 msgid "SIG Information" -msgstr "" +msgstr "SIG informacije" #: application/views/awards/sig/index.php:8 msgid "" "The SIG or Signature Category provides the possibility to use any kind of " "'Award Signature' for awards that are not implemented in Wavelog." msgstr "" +"SIG ili Signature Category pruža mogućnost da se koristi bilo koja vrsta " +"'Award Signature' za diplome koje nisu implementirane u Wavelogu." #: application/views/awards/sig/index.php:9 msgid "" @@ -4147,6 +4279,9 @@ msgid "" "dedicated fields for certain awards. SIG still makes it possible to use and " "evaluate all other types of signature markers." msgstr "" +"Razlog za ovo je da obični ADIF format ima samo nekoliko dodatnih polja za " +"određene diplome. SIG se koristi za proširenje ovih mogućnost i procenu " +"drugih markera potpisa." #: application/views/awards/sig/index.php:10 msgid "" @@ -4154,26 +4289,29 @@ msgid "" "marker, which is also visible in the award evaluation, and 'SIG INFO,' which " "contains a description of the signature. Both fields are freely customizable." msgstr "" +"Tokom obrade QSO, pronaći ćete dva polja: 'SIG' koji sadrži stvarnu oznaku, " +"koja je takođe vidljiva prilikom ispitaivanja diplome, i 'SIG INFO' koje " +"sadrži opis potpisa. Oba polja su slobodna za prilagođavanje po želji." #: application/views/awards/sig/index.php:21 msgid "Award Type" -msgstr "" +msgstr "Vrsta diplome" #: application/views/awards/sig/index.php:22 #: application/views/continents/index.php:17 #: application/views/distances/index.php:12 #: application/views/timeplotter/index.php:4 msgid "Number of QSOs" -msgstr "" +msgstr "Broj veza" #: application/views/awards/sig/index.php:23 msgid "Number of Refs" -msgstr "" +msgstr "Broj referenci" #: application/views/awards/sig/qso_list.php:9 #: application/views/awards/sota/index.php:23 msgid "Reference" -msgstr "" +msgstr "Reference" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 @@ -4185,31 +4323,34 @@ msgstr "" #: application/views/search/lotw_unconfirmed_result.php:7 #: application/views/view_log/qso.php:71 msgid "Date/Time" -msgstr "" +msgstr "Datum/Vrijeme" #: application/views/awards/sig/qso_list.php:14 #: application/views/awards/sota/index.php:27 msgid "RST Sent" -msgstr "" +msgstr "RST poslat" #: application/views/awards/sig/qso_list.php:15 #: application/views/awards/sota/index.php:28 msgid "RST Received" -msgstr "" +msgstr "RST primljen" #: application/views/awards/sig/qso_list.php:34 msgid "Export QSOs to ADIF" -msgstr "" +msgstr "Izvezi QSO u ADIF" #: application/views/awards/sota/index.php:7 msgid "SOTA Awards" -msgstr "" +msgstr "SOTA diplome" #: application/views/awards/sota/index.php:8 msgid "" "SOTA (Summits On The Air) is an award scheme for radio amateurs that " "encourages portable operation in mountainous areas." msgstr "" +"SOTA (Summits On The Air - Planinski vrhovi u eteru) je sistem dodjele " +"diploma za radio-amatere koji podstiču operacije prenosnim radio-stanicama " +"iz planinskih područja." #: application/views/awards/sota/index.php:9 msgid "" @@ -4221,76 +4362,92 @@ msgid "" "trophies. An Honor Roll for Activators and Chasers is maintained in the SOTA " "online database." msgstr "" +"U potpunosti je operativan u skoro stotinu zemalja širom svijeta. Svaka " +"zemlja ima vlastito udruženje koje definiše i prepoznaje SOTA vrhove u " +"okviru urdruženja. Svaki vrh donosi poene i aktivatorima i lovcima, u skladu " +"sa visinom vrha. Sertifikati su dostupni za razne rezultate, vodeći do " +"prestižnih trofeja 'Planinska koza' ili 'Lenjivac iz radio-sobe'. Honor Roll " +"za aktivatore i lovce se održava kroz SOTA bazu podataka kojoj je moguće " +"pristupiti preko Internet mreže." #: application/views/awards/vucc/index.php:7 msgid "VUCC - VHF/UHF Century Club Award" -msgstr "" +msgstr "VUCC - VHF/UHF Century Club diploma" #: application/views/awards/vucc/index.php:8 msgid "" "The VHF/UHF Century Club Award is given for a minimum number of worked and " "confirmed gridsquares on a desired band." msgstr "" +"VUCC - VHF/UHF Century Club diploma dodeljuje se za minimum rađenih i " +"potvrđenih polja na željenom opsegu." #: application/views/awards/vucc/index.php:9 #, php-format msgid "Official information and the rules can be found in this document: %s." msgstr "" +"Zvanične informacije i pravila mogu biti pronađeni u ovom dokumentu: %s." #: application/views/awards/vucc/index.php:10 msgid "Only VHF/UHF bands are relevant." -msgstr "" +msgstr "Relevantni su samo VHF/UHF opsezi." #: application/views/awards/vucc/index.php:22 msgid "Grids Worked" -msgstr "" +msgstr "Rađenih polja" #: application/views/awards/vucc/index.php:23 msgid "Grids Confirmed" -msgstr "" +msgstr "Potvrđenih polja" #: application/views/awards/wab/index.php:12 msgid "WAB - Worked All Britain Award" -msgstr "" +msgstr "WAB - Worked All Britain diploma" #: application/views/awards/wab/index.php:13 msgid "" "WAB, Worked All Britain squares in Amateur Radio, encourages licensed ham " "radio operators to work all the squares in Great Britain." msgstr "" +"WAB, urađena sva polja Velike Britanije, podstiče licencirane radio-amatere " +"da održe veze sa svim poljima u Velikoj Britaniji." #: application/views/awards/wab/index.php:14 msgid "" "May be claimed for having contacted an amateur station located in the " "required amount of squares, described on the page linked below." msgstr "" +"Zahtev možete poslati nakon kontakta sa amaterskim radio-stanicama lociranim " +"u određenom broju polja, prema opisu sa stranice čii se link nalazi ispod." #: application/views/awards/wab/index.php:109 msgid "List" -msgstr "" +msgstr "Lista" #: application/views/awards/wab/list.php:5 msgid "WAB Square" -msgstr "" +msgstr "WAB polje" #: application/views/awards/waja/index.php:3 msgctxt "Japan Prefecture" msgid "Prefecture" -msgstr "" +msgstr "Prefektura" #: application/views/awards/waja/index.php:4 msgid "Hover over a prefecture" -msgstr "" +msgstr "Nanesite miša preko prefekture" #: application/views/awards/waja/index.php:19 msgid "WAJA - Worked All Japan prefectures Award" -msgstr "" +msgstr "WAJA - Worked All Japan prefectures diploma" #: application/views/awards/waja/index.php:20 msgid "" "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham " "radio operators to work all the prefectures in Japan." msgstr "" +"WAJA, Worked All Japan prefekcures je diploma koja se dodeljuje licenciranim " +"radio-amaterima za održane veze sa svim japanskim prefekturama." #: application/views/awards/waja/index.php:21 msgid "" @@ -4299,28 +4456,32 @@ msgid "" "QSL cards should be arranged in order of WAJA (HAJA) reference number, " "however names of prefectures may be omitted." msgstr "" +"Zahtev možete poslati nakon održanih (slušanih) veza i primljenih QSL karata " +"od amaterskih radio-stanica lociranih u svakoj od 47 japanskih prefektura. " +"Lista QSL karata trebalo bi biti složena po redosledu WAJA (HAJA) " +"referentnih brojeva, a imena prefektura mogu biti izostavljena." #: application/views/awards/waja/index.php:118 msgid "Show WAJA Map" -msgstr "" +msgstr "Prikaži WAJA kartu" #: application/views/awards/waja/index.php:154 #: application/views/timeline/index.php:152 msgid "Prefecture" -msgstr "" +msgstr "Prefektura" #: application/views/awards/was/index.php:3 msgctxt "USA State" msgid "State" -msgstr "" +msgstr "Država" #: application/views/awards/was/index.php:4 msgid "Hover over a state" -msgstr "" +msgstr "Nanesite miša preko države" #: application/views/awards/was/index.php:20 msgid "WAS Award" -msgstr "" +msgstr "WAS diploma" #: application/views/awards/was/index.php:21 msgid "" @@ -4329,6 +4490,9 @@ msgid "" "101st year, they have redesigned the certificates and the program in hopes " "of streamlining and improving the award program." msgstr "" +"ARRL-ova najpopularnija diplomaj je WAS. Hiljade i hiljade diploma su izdate " +"radio-amaterima širom svijeta. U stogodišnjoj ARRL istoriji dolazilo je do " +"redizajna sertifikata i programa u nameri da se program diploma usavrši." #: application/views/awards/was/index.php:22 msgid "" @@ -4338,20 +4502,25 @@ msgid "" "possessions must be members of ARRL to apply for a WAS. Applicants from " "outside the U.S. are exempt from this requirement." msgstr "" +"WAS (Worked All States) diploma dodeljuje se radio-amaterima širom sveta " +"koji dostave dokaze sa pisanom potvrdom o kontaktima sa svakom od 50 država " +"Sjedinjenih američkih država. Radio-amateri iz SAD i teritorija moraju biti " +"članovi ARRL da bi aplicirali za diplomu. Aplikanti van SAD su izuzeti od " +"ovog pravila." #: application/views/awards/was/index.php:23 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." -msgstr "" +msgstr "Sve informacije i pravila o ARRL WAS diplomi možete naći %s." #: application/views/awards/was/index.php:114 msgid "Show WAS Map" -msgstr "" +msgstr "Prikaži WAS kartu" #: application/views/awards/wwff/index.php:7 msgid "WWFF - World Wide Flora and Fauna Award" -msgstr "" +msgstr "WWFF - diploma World Wide Flora and Fauna" #: application/views/awards/wwff/index.php:8 msgid "" @@ -4359,6 +4528,9 @@ msgid "" "radio operators to leave their shacks and operate portable in Protected " "Flora & Fauna areas (PFF) worldwide." msgstr "" +"WWFF, World Wide Flora and Fauna u radio-amaterizmu podstiču licencirane " +"radio-amatere operatore da izađu iz svojih radio-soba i rade prenosnom " +"opremom iz zaštićenih zona flore i faune, širom sveta." #: application/views/awards/wwff/index.php:9 msgid "" @@ -4366,25 +4538,29 @@ msgid "" "registered in the WWFF Directory. Hunters and Activators can apply for " "colorful awards, both globally and nationally." msgstr "" +"U WWFF imeniku već je registrovano više od 26.000 zaštićenih područja flore " +"i faune. Lovci i aktivatori mogu aplicirati za šarolike diplome, kako " +"globalne tako i diplome nacionalnih organizacija." #: application/views/awards/wwff/index.php:31 #: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:171 -#: application/views/station_profile/edit.php:252 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 #: application/views/user/edit.php:591 application/views/view_log/qso.php:296 #: application/views/view_log/qso.php:563 msgid "WWFF Reference" -msgstr "" +msgstr "WWFF reference" #: application/views/backup/adif_view.php:7 msgid "" "The backup of your log completed successfully. The output can be found at" msgstr "" +"Rezervna kopija vašeg loga je uspešno napravljena. Kopiju možete pronaći u" #: application/views/backup/adif_view.php:9 #: application/views/backup/notes_view.php:9 msgid "You could automate this process by making it a cronjob." -msgstr "" +msgstr "Mete automatizovati ovaj proces kreiranjem cronjob-a." #: application/views/backup/adif_view.php:13 #: application/views/backup/notes_view.php:13 @@ -4392,38 +4568,47 @@ msgid "" "Something went wrong during the backup process. Check that the backup folder " "exists and is writeable by your web server user / group." msgstr "" +"Nešto je pošlo naopako tokom procesa kreiranja rezervne kopije. Proverite da " +"li postoji direktorijum za rezervnu kopiju, i da li je omogućen za " +"upisivanje od strane vašeg web server korisnika/grupe." #: application/views/backup/main.php:17 msgid "" "Some of the data stored in Wavelog can be exported so that you can keep a " "backup copy elsewhere." msgstr "" +"Neki od podataka smeštenih u Wavelogu mogu biti izvezeni tako da rezervnu " +"kopiju možete čuvati na nekom drugom mestu." #: application/views/backup/main.php:18 msgid "" "It's recommended to create backups on a regular basis to protect your data." msgstr "" +"Preporučuje se da često pravite rezervne kopije kako biste zaštili vaše " +"podatke." #: application/views/backup/main.php:19 msgid "Backup ADIF data" -msgstr "" +msgstr "Rezervna kopija ADIF podataka" #: application/views/backup/main.php:20 msgid "Backup Notes" -msgstr "" +msgstr "Rezervna kopija Napomena" #: application/views/backup/notes_view.php:7 msgid "" "The backup of your notes completed successfully. The output can be found at" msgstr "" +"Rezervna kopija vaših Napomena je uspešno napravljena. Kopiju možete pronaći " +"u" #: application/views/bandmap/index.php:15 application/views/bandmap/list.php:49 msgid "BandMap" -msgstr "" +msgstr "Mapa opsega" #: application/views/bandmap/index.php:18 application/views/bandmap/list.php:52 msgid "BandList" -msgstr "" +msgstr "Lista opsega" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 #: application/views/contesting/index.php:15 @@ -4431,134 +4616,136 @@ msgstr "" #: application/views/contesting/index.php:169 #: application/views/qso/index.php:314 msgid "None" -msgstr "" +msgstr "Ništa" #: application/views/bandmap/index.php:33 application/views/bandmap/list.php:76 msgid "Spots de" -msgstr "" +msgstr "Spotovi od" #: application/views/bandmap/list.php:69 msgid "DXCC-Status" -msgstr "" +msgstr "DXCC status" #: application/views/bandmap/list.php:74 msgid "Not Confirmed" -msgstr "" +msgstr "Nije potvrđeno" #: application/views/bandmap/list.php:113 msgid "Spotter" -msgstr "" +msgstr "Spoter" #: application/views/bandmap/list.php:114 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:58 msgid "Message" -msgstr "" +msgstr "Poruka" #: application/views/bands/create.php:26 application/views/bands/edit.php:8 msgid "Name of Band (E.g. 20m)" -msgstr "" +msgstr "Naziv opsega (npr. 20M)" #: application/views/bands/create.php:29 application/views/bands/edit.php:11 #: application/views/bands/index.php:61 msgid "Bandgroup" -msgstr "" +msgstr "Grupa opsega" #: application/views/bands/create.php:31 application/views/bands/edit.php:13 msgid "Name of bandgroup (E.g. hf, vhf, uhf, shf)" -msgstr "" +msgstr "Ime grupe opsega (npr. KT, UKT, VKT, SKT)" #: application/views/bands/create.php:34 application/views/bands/edit.php:16 #: application/views/bands/index.php:62 msgid "SSB QRG" -msgstr "" +msgstr "SSB QRG" #: application/views/bands/create.php:36 application/views/bands/edit.php:18 msgid "Frequency for SSB QRG in band (must be in Hz)" -msgstr "" +msgstr "Frekvencija za SSB QRG u opsegu (mora biti u Hz)" #: application/views/bands/create.php:39 application/views/bands/edit.php:21 #: application/views/bands/index.php:63 msgid "DATA QRG" -msgstr "" +msgstr "DATA QRG" #: application/views/bands/create.php:41 application/views/bands/edit.php:23 msgid "Frequency for DATA QRG in band (must be in Hz)" -msgstr "" +msgstr "Frekvencija za DATA QRG u opsegu (mora biti u Hz)" #: application/views/bands/create.php:44 application/views/bands/edit.php:26 #: application/views/bands/index.php:64 msgid "CW QRG" -msgstr "" +msgstr "CW QRG" #: application/views/bands/create.php:46 application/views/bands/edit.php:28 msgid "Frequency for CW QRG in band (must be in Hz)" -msgstr "" +msgstr "Frekvencija za CW QRG u opsegu (mora biti u Hz)" #: application/views/bands/index.php:36 msgid "" "Using the band list you can control which bands are shown when creating a " "new QSO." msgstr "" +"Koristeći listu opsega možete kontrolisati koji opsezi će biti prikazani " +"kada kreirate novi QSO." #: application/views/bands/index.php:37 msgid "" "Active bands will be shown in the QSO 'Band' drop-down, while inactive bands " "will be hidden and cannot be selected." msgstr "" +"Aktivni opsezi će biti prikazani u padajućem prozoru 'Opseg', dok će " +"neaktivni opsezi biti skriveni i neće se moći izabrati." #: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:351 #: application/views/qso/index.php:248 application/views/qso/index.php:494 #: application/views/user/edit.php:599 application/views/view_log/qso.php:325 #: application/views/view_log/qso.php:577 msgid "Sig" -msgstr "" +msgstr "Sig" #: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:312 #: application/views/qso/index.php:433 msgid "USA County" -msgstr "" +msgstr "USA okrug" #: application/views/bands/index.php:58 #: application/views/interface_assets/header.php:208 msgid "WAJA" -msgstr "" +msgstr "WAJA" #: application/views/bands/index.php:59 #: application/views/interface_assets/header.php:232 msgid "WAS" -msgstr "" +msgstr "WAS" #: application/views/bands/index.php:65 msgid "QRG Unit" -msgstr "" +msgstr "QRG jedinica" #: application/views/bands/index.php:98 msgid "Hz" -msgstr "" +msgstr "Hz" #: application/views/bands/index.php:99 msgid "kHz" -msgstr "" +msgstr "kHz" #: application/views/bands/index.php:100 msgid "MHz" -msgstr "" +msgstr "MHz" #: application/views/bands/index.php:101 msgid "GHz" -msgstr "" +msgstr "GHz" #: application/views/bands/index.php:151 application/views/bands/index.php:157 msgid "Create a band" -msgstr "" +msgstr "Kreiraj opseg" #: application/views/bands/index.php:152 #: application/views/contesting/add.php:74 -#: application/views/interface_assets/footer.php:43 -#: application/views/qso/components/winkeysettings.php:91 -#: application/views/qso/components/winkeysettings_results.php:91 +#: application/views/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4566,159 +4753,162 @@ msgstr "Zatvori" #: application/views/bands/index.php:153 msgid "Warning! Are you sure you want to delete the following band: " -msgstr "" +msgstr "Upozorenje! Da li ste sigurni da želite obrisati sledeći opseg: " #: application/views/bands/index.php:154 msgid "Warning! Are you sure you want to activate all bands?" -msgstr "" +msgstr "Upozorenje! Da li ste sigurni da želite aktivirati sve opsege?" #: application/views/bands/index.php:155 msgid "Warning! Are you sure you want to deactivate all bands?" -msgstr "" +msgstr "Upozrenje! Da li ste sigurni da želite deaktivirati sve opsege?" #: application/views/bands/index.php:158 #: application/views/contesting/add.php:77 application/views/mode/index.php:77 msgid "Activate All" -msgstr "" +msgstr "Aktivirajte sve" #: application/views/bands/index.php:159 #: application/views/contesting/add.php:78 application/views/mode/index.php:78 msgid "Deactivate All" -msgstr "" +msgstr "Deaktivirajte sve" #: application/views/cabrillo/index.php:2 #: application/views/cabrillo/index.php:34 application/views/oqrs/index.php:59 msgid "Proceed" -msgstr "" +msgstr "Nastavite" #: application/views/cabrillo/index.php:3 msgid "Select Year" -msgstr "" +msgstr "Izaberite godinu" #: application/views/cabrillo/index.php:4 msgid "Select Contest" -msgstr "" +msgstr "Izaberite takmičenje" #: application/views/cabrillo/index.php:5 msgid "Select Date Range" -msgstr "" +msgstr "Izaberite datumski opseg" #: application/views/cabrillo/index.php:6 msgid "No contests were found for this station location!" -msgstr "" +msgstr "Za ovu staničnu lokaciju nisu pronađena takmičenja!" #: application/views/cabrillo/index.php:16 msgid "Export a contest to a Cabrillo log" -msgstr "" +msgstr "Izvezite takmičenje u Cabrillo dnevnik" #: application/views/cabrillo/index.php:28 msgid "Select Station Location:" -msgstr "" +msgstr "Izaberite staničnu lokaciju:" #: application/views/cabrillo/index.php:44 msgid "Club" -msgstr "" +msgstr "Klub" #: application/views/cabrillo/index.php:48 msgid "Category Operator" -msgstr "" +msgstr "Operator kategorije" #: application/views/cabrillo/index.php:56 msgid "Category Assisted" -msgstr "" +msgstr "Assisted kategorija" #: application/views/cabrillo/index.php:63 msgid "Category Band" -msgstr "" +msgstr "Opseg kategorije" #: application/views/cabrillo/index.php:89 msgid "Light/Laser" -msgstr "" +msgstr "Svetlo/Laser" #: application/views/cabrillo/index.php:90 msgid "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)" -msgstr "" +msgstr "VHF-3-BAND i VHF-FM-ONLY (samo u ARRL VHF takmičenju)" #: application/views/cabrillo/index.php:94 msgid "Category Mode" -msgstr "" +msgstr "Vrsta rada kategorije" #: application/views/cabrillo/index.php:105 msgid "Category Power" -msgstr "" +msgstr "Snaga kategorije" #: application/views/cabrillo/index.php:113 msgid "Category Station" -msgstr "" +msgstr "Stanica kategorije" #: application/views/cabrillo/index.php:129 msgid "Category Transmitter" -msgstr "" +msgstr "Predajnik kategorije" #: application/views/cabrillo/index.php:139 msgid "Category Overlay" -msgstr "" +msgstr "Overlay kategorija" #: application/views/cabrillo/index.php:150 msgid "Operators" -msgstr "" +msgstr "Operatori" #: application/views/cabrillo/index.php:155 msgid "Soapbox" -msgstr "" +msgstr "Komentari (soapbox)" #: application/views/cabrillo/index.php:159 msgid "Address" -msgstr "" +msgstr "Adresa" #: application/views/cabrillo/index.php:163 msgid "Address City" -msgstr "" +msgstr "Grad adrese" #: application/views/cabrillo/index.php:167 msgid "Address State/Province" -msgstr "" +msgstr "Država/Provincija adrese" #: application/views/cabrillo/index.php:171 msgid "Address Postalcode" -msgstr "" +msgstr "Poštanski broj adrese" #: application/views/cabrillo/index.php:175 msgid "Address Country" -msgstr "" +msgstr "Okrug adrese" #: application/views/cabrillo/index.php:186 msgid "No contests were found in your log." -msgstr "" +msgstr "U vašem dnevniku nisu pronađena takmičenja." #: application/views/cfd/index.php:7 #, php-format msgid "Export of CFD-File for DARC-Toplist (See %s)" -msgstr "" +msgstr "Izvoz CFD-datoteke za DARC-Toplistu (pogledajte %s)" #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 msgid "Hamsat - Satellite Rovers" -msgstr "" +msgstr "Hamsat - Satelitski roveri" #: application/views/components/hamsat/table.php:4 #: application/views/contestcalendar/index.php:4 #: application/views/dxcalendar/index.php:4 #: application/views/hamsat/index.php:8 msgid "This data comes from" -msgstr "" +msgstr "Ovi podaci dolaze od" #: application/views/components/hamsat/table.php:11 msgid "Show All Passes" -msgstr "" +msgstr "Prikaži sve prelete" #: application/views/components/hamsat/table.php:14 msgid "Private feed key empty. Please set the feed key in your profile." msgstr "" +"Lični ključ za snabdevanje je prazan. Molimo podesite ključ za snabdevanje u " +"vašem profilu." #: application/views/components/hamsat/table.php:19 msgid "No upcoming activations found. Please check back later." msgstr "" +"Nisu pronađene predstojeće aktivacije. Molimo proverite ponovo kasnije." #: application/views/components/hamsat/table.php:28 #: application/views/contesting/index.php:158 @@ -4729,34 +4919,34 @@ msgstr "" #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 #: application/views/view_log/qso.php:199 msgid "Comment" -msgstr "" +msgstr "Komentar" #: application/views/components/hamsat/table.php:31 #: application/views/hamsat/index.php:34 msgid "Gridsquare(s)" -msgstr "" +msgstr "Polje (polja)" #: application/views/components/hamsat/table.php:32 #: application/views/hamsat/index.php:35 msgid "Workable" -msgstr "" +msgstr "Moguće raditi" #: application/views/components/hamsat/table.php:134 msgctxt "Hamsat - Track Satellites" msgid "Track" -msgstr "" +msgstr "Pratite" #: application/views/components/hamsat/table.php:146 msgid "Sked" -msgstr "" +msgstr "Sked" #: application/views/components/radio_display_table.php:5 msgid "Radio Status" -msgstr "" +msgstr "Status radija" #: application/views/contestcalendar/index.php:9 msgid "No Contests" -msgstr "" +msgstr "Nema takmičenja" #: application/views/contestcalendar/index.php:14 #: application/views/logbookadvanced/edit.php:21 @@ -4766,27 +4956,27 @@ msgstr "" #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 msgid "Contest" -msgstr "" +msgstr "Takmičenje" #: application/views/contestcalendar/index.php:15 #: application/views/statistics/custom.php:41 #: application/views/statistics/custom_result.php:43 msgid "Start" -msgstr "" +msgstr "Start" #: application/views/contestcalendar/index.php:16 #: application/views/statistics/custom.php:46 #: application/views/statistics/custom_result.php:48 msgid "End" -msgstr "" +msgstr "Kraj" #: application/views/contestcalendar/index.php:17 msgid "Link" -msgstr "" +msgstr "Link" #: application/views/contestcalendar/index.php:26 msgid "Show Details" -msgstr "" +msgstr "Prikaži detalja" #: application/views/contestcalendar/index.php:38 #: application/views/dashboard/index.php:263 @@ -4795,32 +4985,36 @@ msgstr "" #: application/views/dashboard/index.php:332 #: application/views/satellite/pass.php:475 msgid "Today" -msgstr "" +msgstr "Danas" #: application/views/contestcalendar/index.php:48 msgid "Weekend" -msgstr "" +msgstr "Vikend" #: application/views/contestcalendar/index.php:59 msgid "Next Week" -msgstr "" +msgstr "Sledeće nedelje" #: application/views/contesting/add.php:16 msgid "" "Using the contest list, you can control which Contests are shown when " "logging QSOs in a contest." msgstr "" +"Korišćenjem liste takmičenja možete kontrolisati koja takmičenja će biti " +"prikazana kada upisujete QSO u takmičenju." #: application/views/contesting/add.php:19 msgid "" "Active contests will be shown in the Contest Name drop-down, while inactive " "contests will be hidden and cannot be selected." msgstr "" +"Aktivna takmičenja će biti prikazana u padajućoj listi 'Naziv takmičenja', " +"dok će neaktivni kontesti biti skriveni i neće moći biti izabrani." #: application/views/contesting/add.php:26 #: application/views/contesting/create.php:30 msgid "ADIF Name" -msgstr "" +msgstr "Naziv ADIF" #: application/views/contesting/add.php:27 #: application/views/contesting/add.php:41 @@ -4832,193 +5026,194 @@ msgstr "" #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:43 msgid "Active" -msgstr "" +msgstr "Aktivno" #: application/views/contesting/add.php:39 #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:49 msgid "Not Active" -msgstr "" +msgstr "Nije aktivno" #: application/views/contesting/add.php:40 #: application/views/contesting/add.php:49 application/views/mode/index.php:48 msgid "Activate" -msgstr "" +msgstr "Aktivirajte" #: application/views/contesting/add.php:42 #: application/views/contesting/add.php:47 application/views/mode/index.php:46 msgid "Deactivate" -msgstr "" +msgstr "Deaktivirajte" #: application/views/contesting/add.php:54 msgid "DANGER!" -msgstr "" +msgstr "OPASNOST!" #: application/views/contesting/add.php:55 msgid "Warning! Are you sure you want to delete the following contest: " -msgstr "" +msgstr "Upozorenje! Da li ste sigurni da želite izbrisati sledeće takmičenje: " #: application/views/contesting/add.php:56 msgid "Warning! Are you sure you want to activate all contests?" -msgstr "" +msgstr "Upozorenje! Da li ste sigurni da želite izbrisati sva takmičenja?" #: application/views/contesting/add.php:57 msgid "Warning! Are you sure you want to deactivate all contests?" -msgstr "" +msgstr "Upozorenje! Da li ste sigurni da želite deaktivirati sva takmičenja?" #: application/views/contesting/add.php:73 #: application/views/contesting/add.php:76 msgid "Add a Contest" -msgstr "" +msgstr "Dodajte takmičenje" #: application/views/contesting/create.php:26 #: application/views/contesting/edit.php:33 msgid "Name of the Contest" -msgstr "" +msgstr "Naziv takmičenja" #: application/views/contesting/create.php:32 #: application/views/contesting/edit.php:39 msgid "Name of Contest in ADIF-specification" -msgstr "" +msgstr "Naziv takmičenja za ADIF-specifikaciju" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:48 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" -msgstr "" +msgstr "Kreirajte" #: application/views/contesting/edit.php:31 #: application/views/contesting/index.php:24 #: application/views/qso/edit_ajax.php:548 #: application/views/view_log/qso.php:275 msgid "Contest Name" -msgstr "" +msgstr "Naziv takmičenja" #: application/views/contesting/edit.php:37 msgid "Contest ADIF Name" -msgstr "" +msgstr "Naziv ADIFa takmičenja" #: application/views/contesting/edit.php:52 msgid "Set to active if to be listed in Contest-list" -msgstr "" +msgstr "Postavite na aktivno ako želite da bude prikazano u listi takmičenja" #: application/views/contesting/index.php:2 msgid "Start new Contest Session" -msgstr "" +msgstr "Pokrenite novu takmičarsku sesiju" #: application/views/contesting/index.php:11 msgid "Exchange Type" -msgstr "" +msgstr "Vrsta razmene" #: application/views/contesting/index.php:16 msgid "Exchange" -msgstr "" +msgstr "Razmena" #: application/views/contesting/index.php:18 msgid "Serial" -msgstr "" +msgstr "Serijski broj" #: application/views/contesting/index.php:19 msgid "Serial + Exchange" -msgstr "" +msgstr "Serijski broj + razmena" #: application/views/contesting/index.php:20 msgid "Serial + Gridsquare" -msgstr "" +msgstr "Serijski broj + polje" #: application/views/contesting/index.php:34 #: application/views/operator/index.php:5 #: application/views/qso/edit_ajax.php:539 application/views/qso/index.php:352 msgid "Operator Callsign" -msgstr "" +msgstr "Pozivni znak operatora" #: application/views/contesting/index.php:116 #: application/views/contesting/index.php:208 #: application/views/qso/edit_ajax.php:571 msgid "Serial (S)" -msgstr "" +msgstr "Serijski broj (brojevi)" #: application/views/contesting/index.php:121 #: application/views/contesting/index.php:206 msgid "Exch (S)" -msgstr "" +msgstr "Exch (S)" #: application/views/contesting/index.php:126 msgid "Gridsquare (S)" -msgstr "" +msgstr "Polje (S)" #: application/views/contesting/index.php:136 #: application/views/contesting/index.php:209 #: application/views/qso/edit_ajax.php:566 msgid "Serial (R)" -msgstr "" +msgstr "Serijski (R)" #: application/views/contesting/index.php:141 #: application/views/contesting/index.php:207 msgid "Exch (R)" -msgstr "" +msgstr "Exch (R)" #: application/views/contesting/index.php:146 msgid "Gridsquare (R)" -msgstr "" +msgstr "Polje (R)" #: application/views/contesting/index.php:163 msgid "Reset QSO" -msgstr "" +msgstr "Resetuj QSO" #: application/views/contesting/index.php:164 #: application/views/qso/index.php:607 msgid "Save QSO" -msgstr "" +msgstr "Sačuvaj QSO" #: application/views/contesting/index.php:166 msgid "Copy received exchange to" -msgstr "" +msgstr "Kopiraj primljenu razmenu u" #: application/views/contesting/index.php:168 msgid "Exchange is only copied if it is matching rules for the selected field!" msgstr "" +"Razmena je kopirana samo ako se poklapa sa pravilima za izabrano polje!" #: application/views/contesting/index.php:172 msgid "Age" -msgstr "" +msgstr "Starost" #: application/views/contesting/index.php:174 msgid "RX Power (W)" -msgstr "" +msgstr "RX snaga (W)" #: application/views/contesting/index.php:175 msgid "Locator" -msgstr "" +msgstr "Lokator" #: application/views/contesting/index.php:187 msgid "Callsign Suggestions" -msgstr "" +msgstr "Predlozi pozivnog znaka" #: application/views/contesting/index.php:194 msgid "Contest Logbook" -msgstr "" +msgstr "Takmičarski dnevnik" #: application/views/contesting/index.php:211 #: application/views/qso/edit_ajax.php:164 msgid "VUCC Gridsquare" -msgstr "" +msgstr "VUCC polje" #: application/views/continents/index.php:62 #: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 #: application/views/view_log/qso.php:242 msgid "Continent" -msgstr "" +msgstr "Kontinent" #: application/views/continents/index.php:63 #: application/views/statistics/index.php:19 #: application/views/statistics/index.php:113 msgid "# of QSO's worked" -msgstr "" +msgstr "Broj rađenih veza" #: application/views/cron/edit.php:11 msgid "Identifier" -msgstr "" +msgstr "Identifikator" #: application/views/cron/edit.php:22 #: application/views/options/appearance.php:56 @@ -5027,123 +5222,128 @@ msgstr "" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:261 -#: application/views/station_profile/edit.php:334 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 msgid "Enabled" -msgstr "" +msgstr "Omogućeno" #: application/views/cron/edit.php:36 application/views/cron/index.php:53 msgid "Intervall" -msgstr "" +msgstr "Interval" #: application/views/cron/edit.php:38 msgid "Choose a preset from the dropdown" -msgstr "" +msgstr "Izaberite preset iz padajuće liste" #: application/views/cron/edit.php:43 msgid "Every 5 Minutes" -msgstr "" +msgstr "Svakih 5 minuta" #: application/views/cron/edit.php:44 msgid "Every 15 Minutes" -msgstr "" +msgstr "Svakih 15 minuta" #: application/views/cron/edit.php:45 msgid "Every Hour" -msgstr "" +msgstr "Svakog sata" #: application/views/cron/edit.php:46 msgid "Every 2 Hours" -msgstr "" +msgstr "Svaka 2 sata" #: application/views/cron/edit.php:47 msgid "Every Day at Midnight" -msgstr "" +msgstr "Svaki dan u ponoć" #: application/views/cron/edit.php:48 msgid "Every Monday at 03:00" -msgstr "" +msgstr "Svakog ponedeljka u 03:00" #: application/views/cron/edit.php:49 msgid "First Day of Every Month at midnight" -msgstr "" +msgstr "Prvog dana svakog meseca u ponoć" #: application/views/cron/edit.php:50 msgid "Every 2 Months at 02:00" -msgstr "" +msgstr "Svaka 2 meseca u 02:00" #: application/views/cron/edit.php:62 msgid "OR" -msgstr "" +msgstr "ILI" #: application/views/cron/edit.php:63 msgid "Enter your own Cron Expression" -msgstr "" +msgstr "Unesite vaš vlastiti cron izraz" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" -msgstr "" +msgstr "Otkažite" #: application/views/cron/index.php:9 msgid "How it works" -msgstr "" +msgstr "Kako ovo radi" #: application/views/cron/index.php:15 msgid "" "The Cron Manager assists the administrator in managing cron jobs without " "requiring CLI access." msgstr "" +"Kron menaažer pomaže administratoru u upravljanju kron poslovima bez potrebe " +"za pristupom interfejsu sa komandnom linijom." #: application/views/cron/index.php:18 msgid "" "To execute cron jobs based on the data below, remove all old cron jobs and " "create a new one:" msgstr "" +"Za izvršenje kron posla baziranog na donjim podacima, uklonite sve stare " +"kron poslove i kreirajte novi:" #: application/views/cron/index.php:27 application/views/cron/index.php:31 msgid "Status Master-Cron" -msgstr "" +msgstr "Status Master-Cron" #: application/views/cron/index.php:31 msgctxt "PHP Version" msgid "Min. Version is" -msgstr "" +msgstr "Min. verzija je" #: application/views/cron/index.php:31 msgid "PHP Version not supported." -msgstr "" +msgstr "PHP verzija nije podržana." #: application/views/cron/index.php:41 msgid "Cron List" -msgstr "" +msgstr "Kron lista" #: application/views/cron/index.php:50 #: application/views/stationsetup/stationsetup.php:121 msgid "ID" -msgstr "" +msgstr "ID" #: application/views/cron/index.php:54 msgid "Last Run" -msgstr "" +msgstr "Poslednje pokretanje" #: application/views/cron/index.php:55 msgid "Next Run" -msgstr "" +msgstr "Sledeće pokretanje" #: application/views/cron/index.php:68 msgid "healthy" -msgstr "" +msgstr "zdravo" #: application/views/cron/index.php:70 msgid "failed" -msgstr "" +msgstr "neuspešno" #: application/views/cron/index.php:75 msgid "disabled" -msgstr "" +msgstr "onemogućeno" #: application/views/cron/index.php:79 application/views/cron/index.php:81 #: application/views/cron/index.php:83 application/views/debug/index.php:494 @@ -5151,23 +5351,27 @@ msgstr "" #: application/views/debug/index.php:510 application/views/debug/index.php:515 #: application/views/debug/index.php:520 application/views/debug/index.php:525 msgid "never" -msgstr "" +msgstr "nikada" #: application/views/cron/index.php:98 msgid "Your Mastercron isn't running." -msgstr "" +msgstr "Vaš Mastercron nije pokrenut." #: application/views/cron/index.php:99 msgid "" "Copy the cron above to a external cron service or into your server's cron to " "use this cron manager." msgstr "" +"Kopirajte gornji kron u spoljni kron servis ili u kron vašeg servara da " +"biste koristili ovaj kron menadžer." #: application/views/cron/index.php:100 msgid "" "On a basic linux server with shell access use this command to edit your " "crons:" msgstr "" +"Na osnovnom linux serveru koji ima shell pristup koristite ovu komandu za " +"uređivanje vaših kronova:" #: application/views/cron/index.php:107 #, php-format @@ -5175,21 +5379,23 @@ msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " "%s" msgstr "" +"Morate izvršiti nadogradnju PHP verzije. Minimalna verzija je %s. Vaša " +"verzija je %s" #: application/views/csv/index.php:7 msgid "Export your logbook for SOTA uploads." -msgstr "" +msgstr "Izvezite vaš dnevnik za SOTA učitavanje." #: application/views/csv/index.php:11 msgid "Only QSOs with SOTA information will be exported!" -msgstr "" +msgstr "Samo QSO sa SOTA informacijama će biti izvezeni!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 #: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:401 msgid "Propagation Mode" -msgstr "" +msgstr "Vrsta propagacija" #: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:44 application/views/kml/index.php:80 @@ -5197,7 +5403,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 msgctxt "Propagation Mode" msgid "Aircraft Scatter" -msgstr "" +msgstr "Aircraft Scatter" #: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:45 application/views/kml/index.php:81 @@ -5205,7 +5411,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 msgctxt "Propagation Mode" msgid "Aurora" -msgstr "" +msgstr "Aurora" #: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:46 application/views/kml/index.php:82 @@ -5213,7 +5419,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 msgctxt "Propagation Mode" msgid "Aurora-E" -msgstr "" +msgstr "Aurora-E" #: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:47 application/views/kml/index.php:83 @@ -5221,7 +5427,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 msgctxt "Propagation Mode" msgid "Back scatter" -msgstr "" +msgstr "Back scatter" #: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:48 application/views/kml/index.php:84 @@ -5229,7 +5435,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 msgctxt "Propagation Mode" msgid "EchoLink" -msgstr "" +msgstr "EchoLink" #: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:49 application/views/kml/index.php:85 @@ -5237,7 +5443,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" -msgstr "" +msgstr "Earth-Moon-Earth" #: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:50 application/views/kml/index.php:86 @@ -5245,7 +5451,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 msgctxt "Propagation Mode" msgid "Sporadic E" -msgstr "" +msgstr "Sporadic E" #: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:51 application/views/kml/index.php:87 @@ -5253,7 +5459,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" -msgstr "" +msgstr "Field Aligned Irregularities" #: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:52 application/views/kml/index.php:88 @@ -5261,7 +5467,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 msgctxt "Propagation Mode" msgid "F2 Reflection" -msgstr "" +msgstr "F2 Reflection" #: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:53 application/views/kml/index.php:89 @@ -5269,7 +5475,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 msgctxt "Propagation Mode" msgid "Internet-assisted" -msgstr "" +msgstr "Internet-assisted" #: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:54 application/views/kml/index.php:90 @@ -5277,7 +5483,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 msgctxt "Propagation Mode" msgid "Ionoscatter" -msgstr "" +msgstr "Ionoscatter" #: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:55 application/views/kml/index.php:91 @@ -5285,7 +5491,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 msgctxt "Propagation Mode" msgid "IRLP" -msgstr "" +msgstr "IRLP" #: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:56 application/views/kml/index.php:92 @@ -5293,7 +5499,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 msgctxt "Propagation Mode" msgid "Meteor scatter" -msgstr "" +msgstr "Meteor scatter" #: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:57 application/views/kml/index.php:93 @@ -5301,7 +5507,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" -msgstr "" +msgstr "Zemaljski ili atmosferski repetitor ili transponder" #: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:58 application/views/kml/index.php:94 @@ -5309,7 +5515,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 msgctxt "Propagation Mode" msgid "Rain scatter" -msgstr "" +msgstr "Rain scatter" #: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:59 application/views/kml/index.php:95 @@ -5317,7 +5523,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 msgctxt "Propagation Mode" msgid "Satellite" -msgstr "" +msgstr "Satellite" #: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:60 application/views/kml/index.php:96 @@ -5325,7 +5531,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 msgctxt "Propagation Mode" msgid "Trans-equatorial" -msgstr "" +msgstr "Trans-equatorial" #: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:61 application/views/kml/index.php:97 @@ -5333,83 +5539,86 @@ msgstr "" #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 msgctxt "Propagation Mode" msgid "Tropospheric ducting" -msgstr "" +msgstr "Tropospheric ducting" #: application/views/dashboard/index.php:5 msgid "RSTS" -msgstr "" +msgstr "RSTS" #: application/views/dashboard/index.php:6 msgid "RSTR" -msgstr "" +msgstr "RSTR" #: application/views/dashboard/index.php:56 msgid "" "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" msgstr "" +"Morate ažurirati vašu PHP verziju. Minimalna verzija je 7.4. Vaša verzija je" #: application/views/dashboard/index.php:63 #, php-format msgctxt "Dashboard Warning" msgid "You need to update country files! Click %s to do it." -msgstr "" +msgstr "Morate ažurirati datoteke okruga. Kliknite %s da to uradite." #: application/views/dashboard/index.php:72 #, php-format msgctxt "Dashboard Warning" msgid "You have no station locations. Click %s to do it:" -msgstr "" +msgstr "Nemate lokacije stanice. Kliknite %s da to uradite:" #: application/views/dashboard/index.php:81 #, php-format msgctxt "Dashboard Warning" msgid "You have no station logbook. Click %s to do it:" -msgstr "" +msgstr "Nemate dnevnike stanice. Kliknite %s da to uradite:" #: application/views/dashboard/index.php:91 #, php-format msgid "You have had %d QSO today" msgid_plural "You have had %d QSOs today" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Danas ste održali %d QSO" +msgstr[1] "Danas ste održali %d QSOa" +msgstr[2] "Danas ste održali %d QSOa" #: application/views/dashboard/index.php:97 msgid "You have made no QSOs today; time to turn on the radio!" -msgstr "" +msgstr "Danas niste održali nijednu vezu; vreme je da uključite radio!" #: application/views/dashboard/index.php:104 msgid "Attention: you need to set an active station location." -msgstr "" +msgstr "Pažnja: morate da odredite aktivnu lokaciju stanice." #: application/views/dashboard/index.php:110 msgid "" "You have themes without defined theme mode. Please ask the admin to edit the " "themes." msgstr "" +"Imate teme bez definisane vrste teme. Molimo da zatražite od administratora " +"da uredi teme." #: application/views/dashboard/index.php:118 msgid "At least one of your LoTW certificates is expired!" -msgstr "" +msgstr "Najmanje jedan od vaših LoTW sertifikata je istekao!" #: application/views/dashboard/index.php:124 msgid "At least one of your LoTW certificates is about to expire!" -msgstr "" +msgstr "Najmanje jedan od vaših LoTW sertifikata će uskoro isteći!" #: application/views/dashboard/index.php:214 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" -msgstr "" +msgstr "Prelom veza" #: application/views/dashboard/index.php:237 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" -msgstr "" +msgstr "Prelom zemalja" #: application/views/dashboard/index.php:254 #: application/views/visitor/index.php:275 msgid "Needed" -msgstr "" +msgstr "Potrebno" #: application/views/dashboard/index.php:267 #: application/views/dashboard/index.php:294 @@ -5442,7 +5651,7 @@ msgstr "" #: src/QSLManager/QSO.php:371 src/QSLManager/QSO.php:423 #: src/QSLManager/QSO.php:459 msgid "Sent" -msgstr "" +msgstr "Poslato" #: application/views/dashboard/index.php:273 #: application/views/dashboard/index.php:300 @@ -5472,7 +5681,7 @@ msgstr "" #: src/QSLManager/QSO.php:394 src/QSLManager/QSO.php:436 #: src/QSLManager/QSO.php:472 msgid "Received" -msgstr "" +msgstr "Primljeno" #: application/views/dashboard/index.php:279 #: application/views/logbookadvanced/index.php:307 @@ -5502,78 +5711,80 @@ msgstr "" #: src/QSLManager/QSO.php:319 src/QSLManager/QSO.php:379 #: src/QSLManager/QSO.php:402 msgid "Requested" -msgstr "" +msgstr "Zahtevano" #: application/views/dashboard/index.php:289 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" -msgstr "" +msgstr "Logbook of the World" #: application/views/dashboard/index.php:352 msgid "VUCC-Grids" -msgstr "" +msgstr "VUCC-polja" #: application/views/dayswithqso/index.php:2 #: application/views/interface_assets/header.php:146 msgid "Days with QSOs" -msgstr "" +msgstr "Dana sa QSO-ima" #: application/views/dayswithqso/index.php:25 msgid "Days" -msgstr "" +msgstr "Dani" #: application/views/dayswithqso/index.php:37 msgid "Longest streak with QSOs in the log" -msgstr "" +msgstr "Najduži niz sa QSO u dnevniku" #: application/views/dayswithqso/index.php:38 msgid "A maximum of the 10 longest streaks are shown!" -msgstr "" +msgstr "Prikazano je maksimalno 10 najdužih nizova!" #: application/views/dayswithqso/index.php:56 msgid "Streak (continuous days with QSOs)" -msgstr "" +msgstr "Niz (kontinuitet dana sa vezama)" #: application/views/dayswithqso/index.php:57 #: application/views/dayswithqso/index.php:85 #: application/views/dayswithqso/index.php:107 msgid "Start Date" -msgstr "" +msgstr "Početni datum" #: application/views/dayswithqso/index.php:58 #: application/views/dayswithqso/index.php:86 #: application/views/dayswithqso/index.php:108 #: application/views/timeline/index.php:120 msgid "End Date" -msgstr "" +msgstr "Krajnji datum" #: application/views/dayswithqso/index.php:74 msgctxt "Days with QSOs" msgid "No streak found!" -msgstr "" +msgstr "Nije pronađen niz!" #: application/views/dayswithqso/index.php:78 msgid "Current streak with QSOs in the log" -msgstr "" +msgstr "Trenutni niz sa vezama u dnevniku" #: application/views/dayswithqso/index.php:84 #: application/views/dayswithqso/index.php:106 msgid "Current streak (continuous days with QSOs)" -msgstr "" +msgstr "Trenutni niz (kontinuitet dana sa vezama)" #: application/views/dayswithqso/index.php:101 msgid "" "If you make a QSO today, you can continue to extend your streak... or else " "your current streak will be broken!" msgstr "" +"Ako održite vezu dana, možete nastaviti da produžujete vaš niz... ili će vaš " +"trenutni niz biti prekinut!" #: application/views/dayswithqso/index.php:122 msgid "No current streak found!" -msgstr "" +msgstr "Nije pronađen tekući niz!" #: application/views/debug/index.php:23 msgid "Wavelog Information" -msgstr "" +msgstr "Wavelog informacije" #: application/views/debug/index.php:27 msgid "Version" @@ -5585,19 +5796,19 @@ msgstr "Jezik" #: application/views/debug/index.php:35 msgid "Base URL" -msgstr "" +msgstr "Bazni URL" #: application/views/debug/index.php:39 msgid "Migration" -msgstr "" +msgstr "Migracija" #: application/views/debug/index.php:40 msgid "There is something wrong with your Migration in Database!" -msgstr "" +msgstr "Nešto nije u redu sa vašom Migracijom u bazi podataka!" #: application/views/debug/index.php:45 msgid "Migration is outdated and locked!" -msgstr "" +msgstr "Migracija je zastarela i zaključana!" #: application/views/debug/index.php:46 #, php-format @@ -5607,63 +5818,69 @@ msgid "" "locked due to a previously failed process. Delete the file %s to force the " "migration to run again." msgstr "" +"Trenutna migracija nije odgovarajuće verzije. Ponovo učitajte ovu stranicu " +"nakon %s sekundi. Ako i dalje vidite ovo upozorenje, najverovatnije da je " +"vaša migracija zaključena zbog prethodno neuspelog pokušaja. Izbrišite " +"datoteku %s da iznudite ponovni početak migracije." #: application/views/debug/index.php:47 #, php-format msgid "Check this wiki article %shere%s for more information." -msgstr "" +msgstr "Proverite ovaj wiki članak %sovde%s za više informacija." #: application/views/debug/index.php:48 #, php-format msgid "Current migration is %s" -msgstr "" +msgstr "Trenutna migracija je %s" #: application/views/debug/index.php:49 #, php-format msgid "Migration should be %s" -msgstr "" +msgstr "Migracija bi trebalo da je %s" #: application/views/debug/index.php:54 msgid "Environment" -msgstr "" +msgstr "Okruženje" #: application/views/debug/index.php:62 msgid "Total QSO on this instance" -msgstr "" +msgstr "Ukupno QSO u ovoj verziji" #: application/views/debug/index.php:70 msgid "Server Information" -msgstr "" +msgstr "Informacije o serveru" #: application/views/debug/index.php:74 msgid "Server Software" -msgstr "" +msgstr "Softver na serveru" #: application/views/debug/index.php:79 msgid "PHP Version" -msgstr "" +msgstr "PHP verzija" #: application/views/debug/index.php:85 msgid "Deprecated" -msgstr "" +msgstr "Zastarelo" #: application/views/debug/index.php:92 msgid "MySQL Version" -msgstr "" +msgstr "MySQL verzija" #: application/views/debug/index.php:96 msgid "Codeigniter Version" -msgstr "" +msgstr "Codeigniter verzija" #: application/views/debug/index.php:104 msgid "Folder Permissions" -msgstr "" +msgstr "Dozvole fascikle" #: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" +"Ovim potvrđujemo da fascikle koje koristi Wavelog imaju PHP dozvole za " +"iščitavanje i upisivanje." #: application/views/debug/index.php:112 application/views/debug/index.php:123 #: application/views/debug/index.php:134 application/views/debug/index.php:145 @@ -5679,43 +5896,46 @@ msgstr "Neuspešno" #: application/views/debug/index.php:169 msgid "Config Maintenance" -msgstr "" +msgstr "Održavanje konfiguracije" #: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" -msgstr "" +msgstr "Vaš način proveravanja je zastareo i verovatno nesiguran" #: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" -msgstr "" +msgstr "Molimo uredite vašu %s datoteku:" #: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" +"Idite u fasciklu application/config i uporedite datoteku config.sample.php " +"sa vašom config.php datotekom" #: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" -msgstr "" +msgstr "Promenite %s u vrednost %s (stogo preporučeno)" #: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" -msgstr "" +msgstr "Način proveravanja je postavljen ispravno" #: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" -msgstr "" +msgstr "Ok" #: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" +"Koristite podrazumevani ključ za enkripciju. Trebalo bi da ga promenite!" #: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." -msgstr "" +msgstr "Ovim ćete omogućiti i opcioju 'Drži me prijavljenog'." #: application/views/debug/index.php:196 #, php-format @@ -5723,24 +5943,29 @@ msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" +"Promenite vrednost %s u novi ključ za enkripciju različit od " +"'flossie1234555541'. Izaberite sigurnu i dugačku lozinku. (strogo " +"preporučeno)" #: application/views/debug/index.php:202 msgid "You do not use the default encryption key" -msgstr "" +msgstr "Ne koristite podrazumevani ključ za enkripciju" #: application/views/debug/index.php:209 msgid "Migrate Userdata" -msgstr "" +msgstr "Migrirajte Userdata" #: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" +"Ovde možete migrirati postojeće QSL karte i eQSL karte u novu userdata " +"fasciklu." #: application/views/debug/index.php:224 msgid "Modules" -msgstr "" +msgstr "Moduli" #: application/views/debug/index.php:230 application/views/debug/index.php:241 #: application/views/debug/index.php:252 application/views/debug/index.php:263 @@ -5754,133 +5979,135 @@ msgstr "Instalirano" msgid "Not Installed" msgstr "Nije instalirano" -#: application/views/debug/index.php:283 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:649 msgid "Settings" -msgstr "" +msgstr "Podešavanja" #: application/views/debug/index.php:412 msgid "Git Information" -msgstr "" +msgstr "Git informacije" #: application/views/debug/index.php:416 msgid "Branch" -msgstr "" +msgstr "Grana" #: application/views/debug/index.php:427 application/views/debug/index.php:438 #: application/views/debug/index.php:448 msgid "n/a" -msgstr "" +msgstr "n/a" #: application/views/debug/index.php:433 msgid "Commit" -msgstr "" +msgstr "Uradite" #: application/views/debug/index.php:443 msgid "Tag" -msgstr "" +msgstr "Tag" #: application/views/debug/index.php:453 msgid "Last Fetch" -msgstr "" +msgstr "Posljednje dobavljanje" #: application/views/debug/index.php:465 msgid "Check for new version" -msgstr "" +msgstr "Proverite da li postoji nova verzija" #: application/views/debug/index.php:466 msgid "Update now" -msgstr "" +msgstr "Ažurirajte sada" #: application/views/debug/index.php:484 msgid "File download date" -msgstr "" +msgstr "Datum preuzimanja datoteke" #: application/views/debug/index.php:488 msgid "File" -msgstr "" +msgstr "Datoteka" #: application/views/debug/index.php:489 msgid "Last update" -msgstr "" +msgstr "Poslednje ažuriranje" #: application/views/debug/index.php:493 msgid "DXCC update from Club Log" -msgstr "" +msgstr "DXCC ažuriranje sa ClubLoga" #: application/views/debug/index.php:495 application/views/debug/index.php:501 #: application/views/debug/index.php:506 application/views/debug/index.php:511 #: application/views/debug/index.php:516 application/views/debug/index.php:521 #: application/views/debug/index.php:526 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/edit.php:49 msgid "Update" -msgstr "" +msgstr "Ažuriranje" #: application/views/debug/index.php:499 msgid "DOK file download" -msgstr "" +msgstr "Preuzimanje DOK datoteke" #: application/views/debug/index.php:504 msgid "LoTW users download" -msgstr "" +msgstr "Preuzimanje LoTW korisnika" #: application/views/debug/index.php:509 msgid "POTA file download" -msgstr "" +msgstr "Preuzimanje POTA datoteke" #: application/views/debug/index.php:514 msgid "SCP file download" -msgstr "" +msgstr "Preuzimanje SCP datoteke" #: application/views/debug/index.php:519 msgid "SOTA file download" -msgstr "" +msgstr "Preuzimanje SOTA datoteke" #: application/views/debug/index.php:524 msgid "WWFF file download" -msgstr "" +msgstr "Preuzimanje WWFF datoteke" #: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" -msgstr "" +msgstr "Održavanje QSO-DB" #: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" "The Database contains %d QSOs without a station-profile (location)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Baza podataka sadrži%d QSO bez staničnog profila (lokacije)" +msgstr[1] "Baza podataka sadrži%d QSOa bez staničnog profila (lokacije)" +msgstr[2] "Baza podataka sadrži%d QSOa bez staničnog profila (lokacije)" #: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:57 -#: application/views/station_profile/edit.php:66 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" -msgstr "" +msgstr "Pozivni znak stanice" #: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" +"Molimo označite veze i ponovo ih dodelite postojećoj staničnoj lokaciji:" #: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" -msgstr "" +msgstr "Odredišna lokacija" #: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" -msgstr "" +msgstr "Ponovo doznači" #: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" +"Svaki QSO u vašoj bazi podataka doznačen je staničnom profilu (lokaciji)" #: application/views/debug/index.php:604 msgid "Everything ok" -msgstr "" +msgstr "Sve je u redu" #: application/views/debug/index.php:629 msgid "Albanian" @@ -5970,73 +6197,75 @@ msgstr "Turski" #: application/views/interface_assets/footer.php:30 #: application/views/simplefle/index.php:68 msgid "QSO Data" -msgstr "" +msgstr "QSO podaci" #: application/views/distances/index.php:9 #, php-format msgid "contacts were plotted.%s Your furthest contact was with" -msgstr "" +msgstr "kontakti su iscrtani. %s Vaš najdalji kontakt je bio sa" #: application/views/distances/index.php:10 msgid "in gridsquare" -msgstr "" +msgstr "u polju" #: application/views/distances/index.php:11 msgid "the distance was" -msgstr "" +msgstr "rastojanje je bilo" #: application/views/distances/index.php:14 msgid "Callsign(s) worked (max 5 shown)" -msgstr "" +msgstr "Urađeni pozivni znakovi (prikazuje se max 5)" #: application/views/distances/index.php:19 msgid "Band selection" -msgstr "" +msgstr "Izbor opsega" #: application/views/dxatlas/index.php:3 msgid "DX Atlas Export" -msgstr "" +msgstr "Izvoz za DX Atlas" #: application/views/dxatlas/index.php:7 msgid "" "Export your logbook for use in DX Atlas to display worked / confirmed " "gridsquares." msgstr "" +"Izvezite vaš dnevnik za upotrebu u DX Atlasu kako biste prikazali rađena / " +"potvrđena polja." #: application/views/dxatlas/index.php:11 application/views/kml/index.php:11 msgid "Only QSOs with a gridsquare defined will be exported!" -msgstr "" +msgstr "Biće izvezeni samo QSO sa definisanim poljem!" #: application/views/dxcalendar/index.php:9 msgid "Date from" -msgstr "" +msgstr "Od datuma" #: application/views/dxcalendar/index.php:10 msgid "Date to" -msgstr "" +msgstr "Do datuma" #: application/views/dxcalendar/index.php:13 #: application/views/view_log/qso.php:366 msgid "QSL Info" -msgstr "" +msgstr "QSL info" #: application/views/dxcalendar/index.php:14 msgid "Source" -msgstr "" +msgstr "Izvor" #: application/views/eqsl/analysis.php:11 application/views/eqsl/download.php:9 #: application/views/eqsl/export.php:8 application/views/eqsl/import.php:7 #: application/views/eqsl/result.php:11 application/views/eqsl/tools.php:7 #: application/views/qrz/export.php:14 msgid "Download QSOs" -msgstr "" +msgstr "Preuzimanje QSOa" #: application/views/eqsl/analysis.php:14 #: application/views/eqsl/download.php:13 application/views/eqsl/export.php:12 #: application/views/eqsl/import.php:11 application/views/eqsl/result.php:14 #: application/views/eqsl/tools.php:11 msgid "Upload QSOs" -msgstr "" +msgstr "Učitavanje QSOa" #: application/views/eqsl/analysis.php:17 #: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 @@ -6044,51 +6273,55 @@ msgstr "" #: application/views/eqsl/tools.php:15 #: application/views/interface_assets/header.php:243 msgid "Tools" -msgstr "" +msgstr "Alatke" #: application/views/eqsl/analysis.php:20 #: application/views/eqsl/download.php:20 application/views/eqsl/export.php:19 #: application/views/eqsl/import.php:18 application/views/eqsl/result.php:20 #: application/views/eqsl/tools.php:19 msgid "Download eQSL cards" -msgstr "" +msgstr "Preuzimanje eQSL karata" #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 msgid "Submode" -msgstr "" +msgstr "Podvrsta rada" #: application/views/eqsl/analysis.php:41 msgid "Log Status" -msgstr "" +msgstr "Status dnevnika" #: application/views/eqsl/analysis.php:42 application/views/eqsl/result.php:38 msgid "eQSL Status" -msgstr "" +msgstr "eQSL status" #: application/views/eqsl/analysis.php:62 msgid "There are no QSO confirmations waiting for you at eQSL.cc" -msgstr "" +msgstr "Nema QSO potvrda koje vas čekaju na eQSL.cc" #: application/views/eqsl/download.php:31 msgid "" "Below is a table of QSOs that have been confirmed on eQSL but QSL images " "have not been downloaded yet." msgstr "" +"Ispod je tabela QSOa koji su potvrđeni na eQSL ali slika QSL karte još uvek " +"nije preuzeta." #: application/views/eqsl/download.php:43 msgid "Action" -msgstr "" +msgstr "Akcija" #: application/views/eqsl/download.php:60 msgid "View/Download" -msgstr "" +msgstr "Pregledajte/Preuzmite" #: application/views/eqsl/download.php:71 application/views/eqsl/import.php:53 msgid "" "Wavelog will use the eQSL credentials from your Wavelog user profile to " "connect to eQSL and download confirmations." msgstr "" +"Wavelog će koristiti eQSL kredencijale iz vašeg Wavelog korisničkog profila " +"kako bi se povezao na eQSL i preuzeo potvrde." #: application/views/eqsl/download.php:73 msgid "" @@ -6097,44 +6330,55 @@ msgid "" "to call this function several times depending on the amount of outstanding " "cards. This may run into a script timeout depending on the PHP configuration." msgstr "" +"Zbog brzine preuzimanja od oko 10 sekundi po jednoj eQSL karti, izvršenje " +"ove funkcije će zahtevati dugačko vreme kompletiranja. Stoga je moguće da " +"ćete više puta morati pozvati ovu funkciju, u zavisnosti o broja karata. U " +"zavisnosti od PHP konfiguracije, moguće je da ćete ući u istek vremena za " +"izvršenje skripte." #: application/views/eqsl/download.php:81 msgid "" "There are no QSOs whose eQSL card images have not yet been downloaded. Go " "log some more QSOs!" msgstr "" +"Ne postoje QSOi čije eQSL karte već nisu preuzete. Logirajte neke veze u " +"dnevnik!" #: application/views/eqsl/export.php:31 msgid "Below is a table of QSOs that have not yet been sent to eQSL." -msgstr "" +msgstr "Ispod je tabela QSOa koji još nisu poslati na eQSL." #: application/views/eqsl/export.php:33 msgid "" "Please make sure the 'eQSL QTH Nickname' field is set in your station " "profile and that the value matches the QTH Nickname you set within eQSL." msgstr "" +"Molimo uverite se da je 'eQSL QTH Nickname' polje podešeno unutar vašeg " +"staničnog profila i da se ta vrednost poklapa sa QTH Nickname poljem koje " +"ste podesili u eQSL." #: application/views/eqsl/export.php:37 msgid "Clicking 'Upload QSOs' will send QSO information to eQSL.cc." -msgstr "" +msgstr "Klikom na 'Učitaj QSOe' ćete poslati QSO informacije na eQSL.cc." #: application/views/eqsl/export.php:46 msgid "The following QSOs were sent to eQSL." -msgstr "" +msgstr "Sledeći QSOi su poslati na eQSL." #: application/views/eqsl/export.php:51 msgid "" "There are no QSOs that need to be sent to eQSL at this time. Go log some " "more QSOs!" msgstr "" +"U ovom trenutku nema QSOova koji bi bili poslati na eQSL. Logujte neke veze!" #: application/views/eqsl/import.php:30 msgid "Import from file..." -msgstr "" +msgstr "Uvoz iz datoteke..." #: application/views/eqsl/import.php:33 msgid "Download Inbox" -msgstr "" +msgstr "Preuzmanje Inboksa" #: application/views/eqsl/import.php:33 #, php-format @@ -6142,54 +6386,58 @@ msgid "" "Upload the Exported ADIF file from eQSL from the %s page, to mark QSOs as " "confirmed on eQSL." msgstr "" +"Učitajte izvezenu ADIF datoteku iz eQSL-a sa stranice %s, kako biste QSOe " +"označili potvrđenim na eQSL." #: application/views/eqsl/import.php:34 msgid "Choose Station(location) eQSL File belongs to:" -msgstr "" +msgstr "Izaberite stanicu (lokaciju) kojoj pripada eQSL datoteka:" #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 msgid "Log files must have the file type .adi" -msgstr "" +msgstr "Datoteka dnevnika mora biti vrste .adi" #: application/views/eqsl/import.php:52 msgid "Import directly from eQSL" -msgstr "" +msgstr "Uvoz direktno sa eQSL" #: application/views/eqsl/tools.php:27 msgid "" "This does NOT upload any QSOs. It only marks QSOs as sent. If you use this " "button you need to upload them manually on the eQSL.cc website." msgstr "" +"Ovo NEĆE učitati nijedan QSO. Ovo samo označava QSO kao poslate. Ako " +"koristite ovo dugme treblo bi da ih učitate ručno na eQSL.cc web sajt." #: application/views/eqsl/tools.php:29 msgid "Mark All QSOs as Sent to eQSL" -msgstr "" +msgstr "Označite sve QSOe kao poslate na eQSL" #: application/views/eqsl/tools.php:29 msgid "" "Use this if you have lots of QSOs to upload to eQSL it will save the server " "timing out." -msgstr "" +msgstr "Koristite ovo ako ste ručno učitali sve vaše QSOe na eQSL." #: application/views/eqslcard/index.php:10 #, php-format msgid "You are using %s of disk space to store eQSL Card assets" -msgstr "" +msgstr "Koristite %s prostora na disku za smještanje eQSL karata" #: application/views/eqslcard/index.php:34 #: application/views/qslcard/index.php:33 msgid "QSL Date" -msgstr "" +msgstr "QSL datum" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2330 -#: application/views/interface_assets/footer.php:2348 -#: application/views/interface_assets/footer.php:2369 -#: application/views/interface_assets/footer.php:2387 +#: application/views/interface_assets/footer.php:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" -msgstr "" +msgstr "Pregledaj" #: application/views/gridmap/index.php:38 #: application/views/logbookadvanced/edit.php:14 @@ -6197,15 +6445,15 @@ msgstr "" #: application/views/logbookadvanced/index.php:609 #: application/views/logbookadvanced/useroptions.php:118 msgid "Propagation" -msgstr "" +msgstr "Propagacije" #: application/views/gridmap/index.php:42 msgid "None/Empty" -msgstr "" +msgstr "Ništa/Prazno" #: application/views/gridmap/index.php:43 msgid "All except SAT" -msgstr "" +msgstr "Sve osim SAT" #: application/views/hamsat/index.php:22 #, php-format @@ -6213,87 +6461,95 @@ msgid "" "Cannot filter workable passes only without private feed key. Please set the " "feed key in %s." msgstr "" +"Ne možemo napraviti filter samo mogućih preleta bez privatnog ključa za " +"snabdevanje. Molimo podesite ključ za snabdevanje u %s." #: application/views/hamsat/index.php:22 msgid "your profile" -msgstr "" +msgstr "vaš profil" #: application/views/hrdlog/export.php:10 application/views/qrz/export.php:10 #: application/views/webadif/export.php:10 msgid "Upload Logbook" -msgstr "" +msgstr "Učitavanje dnevnika" #: application/views/hrdlog/export.php:13 application/views/qrz/export.php:18 #: application/views/webadif/export.php:13 msgid "Mark QSOs" -msgstr "" +msgstr "Označi QSOe" #: application/views/hrdlog/export.php:22 msgid "" "Here you can see all QSOs which have not been previously uploaded to a " "HRDLog logbook." msgstr "" +"Ovde možete videti sve QSOe koji prethodno nisu bili učitani u HRDLog " +"Logbook." #: application/views/hrdlog/export.php:23 msgid "" "You need to set a HRDLog Logbook API Code in your station profile. Only " "station profiles with an API Key set are displayed." msgstr "" +"Morate podesiti HRDLog Loogbook API kod u profilu vaše stanice. Prikazani su " +"samo stanični profili sa API ključem." #: application/views/hrdlog/export.php:24 #, php-format msgid "The Code can be requested at %s" -msgstr "" +msgstr "Kod možete zahtevati na %s" #: application/views/hrdlog/export.php:25 #: application/views/webadif/export.php:34 msgid "This might take a while as QSO uploads are processed sequentially." -msgstr "" +msgstr "Ovo može potrajati jer se učitavanje QSOa vrši sekvencijalno." #: application/views/hrdlog/export.php:34 application/views/qrz/export.php:38 #: application/views/webadif/export.php:41 msgid "Profile name" -msgstr "" +msgstr "Naziv profila" #: application/views/hrdlog/export.php:35 #: application/views/oqrs/showrequests.php:86 #: application/views/qrz/export.php:39 application/views/webadif/export.php:42 msgid "Station callsign" -msgstr "" +msgstr "Pozivni znak stanice" #: application/views/hrdlog/export.php:36 application/views/qrz/export.php:40 msgid "Edited QSOs not uploaded" -msgstr "" +msgstr "Uređeni QSOi nisu učitani" #: application/views/hrdlog/export.php:37 application/views/qrz/export.php:41 #: application/views/webadif/export.php:43 msgid "Total QSOs not uploaded" -msgstr "" +msgstr "Ukupan broj neučitanih QSOa" #: application/views/hrdlog/export.php:38 application/views/qrz/export.php:42 #: application/views/webadif/export.php:44 msgid "Total QSOs uploaded" -msgstr "" +msgstr "Ukupan broj učitanih QSOa" #: application/views/hrdlog/export.php:60 msgid "" "No Station Locations with valid HRDlog-Settings found. Check the HRDlog " "Credentials in the Station Location Settings!" msgstr "" +"Nisu pronađene stanične lokacije sa validnim HRDlog podešavanjima. Proverite " +"HRDlog kredencijale u Podešavanjima staničnih lokacija!" #: application/views/hrdlog/export.php:87 msgid "Mark QSOs as exported to HRDLog Logbook" -msgstr "" +msgstr "Označite QSOe izvezenima u HRDlog Logbook" #: application/views/hrdlog/mark_hrdlog.php:15 #: application/views/qrz/mark_qrz.php:15 #: application/views/webadif/mark_webadif.php:15 msgid "Yay, it's done!" -msgstr "" +msgstr "Jeeej, urađeno je!" #: application/views/hrdlog/mark_hrdlog.php:16 msgid "The QSOs are marked as exported to HRDLog Logbook." -msgstr "" +msgstr "QSOi su označeni kao izvezeni u HRDlog Logbook." #: application/views/interface_assets/footer.php:31 #: application/views/search/search_result_ajax.php:404 @@ -6301,119 +6557,129 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:318 #: application/views/view_log/qso.php:434 msgid "Edit QSO" -msgstr "" +msgstr "Uredi QSO" #: application/views/interface_assets/footer.php:33 msgid "Attention" -msgstr "" +msgstr "Pažnja" #: application/views/interface_assets/footer.php:36 msgid "OK" -msgstr "" - -#: application/views/interface_assets/footer.php:37 -msgid "Warning! Are you sure you want delete QSO with " -msgstr "" +msgstr "OK" #: application/views/interface_assets/footer.php:38 +msgid "Warning! Are you sure you want delete QSO with " +msgstr "Upozorenje! Da li ste sigurni da želite obrisati QSO sa " + +#: application/views/interface_assets/footer.php:39 #: application/views/user/edit.php:493 msgid "Colors" -msgstr "" - -#: application/views/interface_assets/footer.php:40 -msgid "Worked not confirmed" -msgstr "" +msgstr "Boje" #: application/views/interface_assets/footer.php:41 -msgid "Not worked" -msgstr "" +msgid "Worked not confirmed" +msgstr "Rađene nepotvrđene" -#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:42 +msgid "Not worked" +msgstr "Ne rađene" + +#: application/views/interface_assets/footer.php:46 #: application/views/qso/index.php:601 #: application/views/visitor/layout/footer.php:245 msgid "Clear" -msgstr "" +msgstr "Obriši" -#: application/views/interface_assets/footer.php:46 +#: application/views/interface_assets/footer.php:47 #: application/views/qso/edit_ajax.php:211 #: application/views/qso/edit_ajax.php:512 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "" +"Vrsta propagacija nije podržana od strane LoTW. LoTW QSL polja su " +"onemogućena." -#: application/views/interface_assets/footer.php:47 +#: application/views/interface_assets/footer.php:48 msgid "No states for this DXCC available" +msgstr "Nema država dostupnih za ovu DXCC" + +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" msgstr "" -#: application/views/interface_assets/footer.php:129 +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "" + +#: application/views/interface_assets/footer.php:132 #: application/views/interface_assets/header.php:434 #: application/views/options/sidebar.php:11 msgid "Version Info" -msgstr "" - -#: application/views/interface_assets/footer.php:395 -msgid "Description:" -msgstr "" +msgstr "Informacija o verziji" #: application/views/interface_assets/footer.php:398 +msgid "Description:" +msgstr "Opis:" + +#: application/views/interface_assets/footer.php:401 msgid "Query description" -msgstr "" +msgstr "Opis upita" -#: application/views/interface_assets/footer.php:414 +#: application/views/interface_assets/footer.php:417 msgid "Your query has been saved!" -msgstr "" +msgstr "Vaš upit je sačuvan!" -#: application/views/interface_assets/footer.php:416 +#: application/views/interface_assets/footer.php:419 #: application/views/search/filter.php:46 msgid "Edit queries" -msgstr "" +msgstr "Uredi upite" -#: application/views/interface_assets/footer.php:418 +#: application/views/interface_assets/footer.php:421 msgid "Stored queries:" -msgstr "" +msgstr "Sačuvani upiti:" -#: application/views/interface_assets/footer.php:423 +#: application/views/interface_assets/footer.php:426 #: application/views/search/filter.php:60 msgid "Run Query" -msgstr "" +msgstr "Pokreni upit" -#: application/views/interface_assets/footer.php:435 -#: application/views/interface_assets/footer.php:564 -#: application/views/interface_assets/footer.php:628 +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 msgid "Stored Queries" -msgstr "" +msgstr "Sačuvani upiti" -#: application/views/interface_assets/footer.php:440 -#: application/views/interface_assets/footer.php:633 +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 msgid "You need to make a query before you search!" -msgstr "" +msgstr "Morate napraviti upit prije pretrage!" -#: application/views/interface_assets/footer.php:461 -#: application/views/interface_assets/footer.php:592 +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 #: application/views/search/filter.php:79 msgid "Export to ADIF" -msgstr "" +msgstr "Izvoz u ADIF" -#: application/views/interface_assets/footer.php:499 +#: application/views/interface_assets/footer.php:502 msgid "Warning! Are you sure you want delete this stored query?" -msgstr "" +msgstr "Upozorenje! Da li ste sigurni da želite obrisati ovaj sačuvani upit?" -#: application/views/interface_assets/footer.php:513 +#: application/views/interface_assets/footer.php:516 msgid "The stored query has been deleted!" -msgstr "" +msgstr "Sačuvani upit je obrisan!" -#: application/views/interface_assets/footer.php:522 +#: application/views/interface_assets/footer.php:525 msgid "The stored query could not be deleted. Please try again!" -msgstr "" +msgstr "Sačuvani upit ne može biti obrisan. Molim pokušajte ponovo!" -#: application/views/interface_assets/footer.php:548 +#: application/views/interface_assets/footer.php:551 msgid "The query description has been updated!" -msgstr "" +msgstr "Opis upita je ažuriran!" -#: application/views/interface_assets/footer.php:552 +#: application/views/interface_assets/footer.php:555 msgid "Something went wrong with the save. Please try again!" -msgstr "" +msgstr "Nešto je bilo pogrešno prilikom čuvanja. Molimo pokušajte ponovo!" -#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:678 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -6423,210 +6689,210 @@ msgstr "" "nije validna. Proverite koja DXCC je ispravna za ovu lokaciju. Ako ste " "sigurni da ste upisali tačne podatke, ignorišite ovo upozrenje." -#: application/views/interface_assets/footer.php:725 +#: application/views/interface_assets/footer.php:730 #: application/views/logbookadvanced/index.php:511 msgid "Callsign: " -msgstr "" +msgstr "Pozivni znak: " -#: application/views/interface_assets/footer.php:726 +#: application/views/interface_assets/footer.php:731 msgid "Count: " -msgstr "" +msgstr "Broj: " -#: application/views/interface_assets/footer.php:727 +#: application/views/interface_assets/footer.php:732 msgid "Grids: " -msgstr "" +msgstr "Polja: " -#: application/views/interface_assets/footer.php:1162 +#: application/views/interface_assets/footer.php:1167 #, php-format msgid "You're not logged in. Please %slogin%s" -msgstr "" +msgstr "Niste prijavljeni. Molimo %sprijavite se%s" -#: application/views/interface_assets/footer.php:1368 -#: application/views/interface_assets/footer.php:1372 -#: application/views/interface_assets/footer.php:1375 -#: application/views/interface_assets/footer.php:1512 -#: application/views/interface_assets/footer.php:1516 -#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 msgid "grid square" -msgstr "" +msgstr "polje" -#: application/views/interface_assets/footer.php:1375 -#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 msgid "Total count" -msgstr "" +msgstr "Ukupan broj" -#: application/views/interface_assets/footer.php:2106 +#: application/views/interface_assets/footer.php:2111 msgid "QSL Card for " -msgstr "" +msgstr "QSL karta za " -#: application/views/interface_assets/footer.php:2126 +#: application/views/interface_assets/footer.php:2131 msgid "Warning! Are you sure you want to delete this QSL card?" -msgstr "" +msgstr "Upozorenje! Da li ste sigurni da želite izbrisati ovu QSL kartu?" -#: application/views/interface_assets/footer.php:2166 +#: application/views/interface_assets/footer.php:2171 #: application/views/view_log/qso.php:42 msgid "eQSL Card" -msgstr "" +msgstr "eQSL karta" -#: application/views/interface_assets/footer.php:2168 +#: application/views/interface_assets/footer.php:2173 msgid "eQSL Card for " -msgstr "" +msgstr "eQSL karta za " -#: application/views/interface_assets/footer.php:2341 -#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 #: application/views/view_log/qso.php:604 msgid "QSL image file" -msgstr "" +msgstr "Datoteka slike QSL karte" -#: application/views/interface_assets/footer.php:2360 +#: application/views/interface_assets/footer.php:2365 msgid "Front QSL Card:" -msgstr "" +msgstr "Prednja strana QSL karte:" -#: application/views/interface_assets/footer.php:2398 +#: application/views/interface_assets/footer.php:2403 msgid "Back QSL Card:" -msgstr "" +msgstr "Zadnja strana QSL karte:" -#: application/views/interface_assets/footer.php:2409 -#: application/views/interface_assets/footer.php:2434 +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 msgid "Add additional QSOs to a QSL Card" -msgstr "" +msgstr "Dodajte dodatne QSOe na QSL kartu" -#: application/views/interface_assets/footer.php:2445 +#: application/views/interface_assets/footer.php:2450 msgid "Something went wrong. Please try again!" -msgstr "" +msgstr "Nešto je pošlo naopako. Molimo pokušajte ponovo!" #: application/views/interface_assets/header.php:86 msgid "Developer Mode" -msgstr "" +msgstr "Razvojni mod" #: application/views/interface_assets/header.php:89 msgid "Maintenance Mode" -msgstr "" +msgstr "Mod održavanja" #: application/views/interface_assets/header.php:99 msgid "Overview" -msgstr "" +msgstr "Pregled" #: application/views/interface_assets/header.php:101 msgid "Advanced" -msgstr "" +msgstr "Napredno" #: application/views/interface_assets/header.php:104 msgid "View QSL Cards" -msgstr "" +msgstr "Pregledaj QSL karte" #: application/views/interface_assets/header.php:107 msgid "View eQSL Cards" -msgstr "" +msgstr "Pregledaj eQSL karte" #: application/views/interface_assets/header.php:115 msgid "Live QSO" -msgstr "" +msgstr "QSO uživo" #: application/views/interface_assets/header.php:117 msgid "Post QSO" -msgstr "" +msgstr "Objavi QSO" #: application/views/interface_assets/header.php:119 msgid "Simple Fast Log Entry" -msgstr "" +msgstr "Jednostavni brzi unos u dnevnik" #: application/views/interface_assets/header.php:121 msgid "Live Contest Logging" -msgstr "" +msgstr "Takmičarski dnevnik uživo" #: application/views/interface_assets/header.php:123 msgid "Post Contest Logging" -msgstr "" +msgstr "Dodavanje u dnevnik nakon takmičenja" #: application/views/interface_assets/header.php:132 msgid "Analytics" -msgstr "" +msgstr "Analitika" #: application/views/interface_assets/header.php:140 msgid "Activated Gridsquares" -msgstr "" +msgstr "Aktivirana polja" #: application/views/interface_assets/header.php:160 msgid "International" -msgstr "" +msgstr "Međunarodno" #: application/views/interface_assets/header.php:166 msgid "ITU" -msgstr "" +msgstr "ITU" #: application/views/interface_assets/header.php:186 msgid "Canada" -msgstr "" +msgstr "Kanada" #: application/views/interface_assets/header.php:192 msgid "Germany" -msgstr "" +msgstr "Nemačka" #: application/views/interface_assets/header.php:196 msgid "DL Gridmaster" -msgstr "" +msgstr "DL Gridmaster" #: application/views/interface_assets/header.php:200 msgid "Great Britain" -msgstr "" +msgstr "Velika Britanija" #: application/views/interface_assets/header.php:202 msgid "WAB" -msgstr "" +msgstr "WAB" #: application/views/interface_assets/header.php:206 msgid "Japan" -msgstr "" +msgstr "Japan" #: application/views/interface_assets/header.php:212 msgid "JA Gridmaster" -msgstr "" +msgstr "JA Gridmaster" #: application/views/interface_assets/header.php:216 msgid "Luxemburg" -msgstr "" +msgstr "Luksemburg" #: application/views/interface_assets/header.php:218 msgid "LX Gridmaster" -msgstr "" +msgstr "LX Gridmaster" #: application/views/interface_assets/header.php:222 msgid "Switzerland" -msgstr "" +msgstr "Švajcarska" #: application/views/interface_assets/header.php:228 msgid "USA" -msgstr "" +msgstr "SAD" #: application/views/interface_assets/header.php:234 msgid "US Gridmaster" -msgstr "" +msgstr "US Gridmaster" #: application/views/interface_assets/header.php:251 msgid "Bandmap" -msgstr "" +msgstr "Mapa opsega" #: application/views/interface_assets/header.php:253 msgid "SAT Timers" -msgstr "" +msgstr "SAT vremena" #: application/views/interface_assets/header.php:256 msgid "Satellite Flightpath" -msgstr "" +msgstr "Putanja leta satelita" #: application/views/interface_assets/header.php:258 msgid "Satellite Pass" -msgstr "" +msgstr "Preleti satelita" #: application/views/interface_assets/header.php:265 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" -msgstr "" +msgstr "Admin" #: application/views/interface_assets/header.php:270 msgid "Global Options" -msgstr "" +msgstr "Globalne opcije" #: application/views/interface_assets/header.php:276 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 @@ -6637,432 +6903,441 @@ msgstr "" #: application/views/statistics/index.php:39 #: application/views/statistics/index.php:93 msgid "Satellites" -msgstr "" +msgstr "Sateliti" #: application/views/interface_assets/header.php:282 msgid "Update Country Files" -msgstr "" +msgstr "Ažuriranje datoteka okruga" #: application/views/interface_assets/header.php:286 msgid "Debug Information" -msgstr "" +msgstr "Informacije debaginga" #: application/views/interface_assets/header.php:333 msgid "Add/Search Callsign" -msgstr "" +msgstr "Dodaj/pretraži pozivni znak" #: application/views/interface_assets/header.php:335 msgid "Log" -msgstr "" +msgstr "Dnevnik" #: application/views/interface_assets/header.php:342 #: application/views/logbookadvanced/index.php:452 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 #: application/views/visitor/layout/header.php:97 msgid "Search Callsign" -msgstr "" +msgstr "Pretraga pozivnog znaka" #: application/views/interface_assets/header.php:371 #: application/views/user/edit.php:49 msgid "Account" -msgstr "" +msgstr "Nalog" #: application/views/interface_assets/header.php:386 msgid "Other Export Options" -msgstr "" +msgstr "Ostale opcije izvoza" #: application/views/interface_assets/header.php:394 msgid "Cabrillo Export" -msgstr "" +msgstr "Cabrilo izvoz" #: application/views/interface_assets/header.php:418 msgid "QSL Queue" -msgstr "" +msgstr "QSL karte u redu" #: application/views/interface_assets/header.php:419 msgid "Labels" -msgstr "" +msgstr "Oznake" #: application/views/interface_assets/header.php:421 msgid "Third-Party Services" -msgstr "" +msgstr "Treći servisi" #: application/views/interface_assets/header.php:424 msgid "eQSL Import / Export" -msgstr "" +msgstr "eQSL izvoz/uvoz" #: application/views/interface_assets/header.php:425 msgid "HRDLog Logbook" -msgstr "" +msgstr "HRDLog Logbook" #: application/views/interface_assets/header.php:435 msgid "Help" -msgstr "" +msgstr "Pomoć" #: application/views/interface_assets/header.php:436 msgid "Forum" -msgstr "" +msgstr "Forum" #: application/views/interface_assets/header.php:438 msgid "Logout" -msgstr "" +msgstr "Odjavite se" #: application/views/interface_assets/header.php:446 msgid "Select a Location" -msgstr "" +msgstr "Izaberite lokaciju" #: application/views/interface_assets/header.php:525 msgid "Extras" -msgstr "" +msgstr "Dodaci" #: application/views/kml/index.php:7 msgid "Export your logbook to a KML file for use in Google Earth." -msgstr "" +msgstr "Izvezite vaš dnevnik kao KML datoteku za korišćenje u Google Earth." #: application/views/labels/create.php:24 msgid "" "Label name used for display purposes, so pick something meaningful, perhaps " "the label style." msgstr "" +"Naziv etikete se koristi u svrhu prikaza etikete, izaberite nešto smisleno, " +"možda stil etikete." #: application/views/labels/create.php:39 #: application/views/labels/createpaper.php:41 #: application/views/labels/edit.php:41 #: application/views/labels/editpaper.php:41 msgid "Measurement used" -msgstr "" +msgstr "Korišćene mere" #: application/views/labels/create.php:42 #: application/views/labels/createpaper.php:44 #: application/views/labels/edit.php:44 #: application/views/labels/editpaper.php:44 msgid "Millimeters" -msgstr "" +msgstr "Milimetri" #: application/views/labels/create.php:43 #: application/views/labels/createpaper.php:45 #: application/views/labels/edit.php:45 #: application/views/labels/editpaper.php:45 msgid "Inches" -msgstr "" +msgstr "Inči" #: application/views/labels/create.php:49 application/views/labels/edit.php:51 msgid "Margin Top" -msgstr "" +msgstr "Gornja margina" #: application/views/labels/create.php:52 application/views/labels/edit.php:54 msgid "Top margin of labels" -msgstr "" +msgstr "Gornja margina etiketa" #: application/views/labels/create.php:55 application/views/labels/edit.php:57 msgid "Margin Left" -msgstr "" +msgstr "Leva margina" #: application/views/labels/create.php:58 application/views/labels/edit.php:60 msgid "Left margin of labels." -msgstr "" +msgstr "Leva margina etiketa." #: application/views/labels/create.php:63 application/views/labels/edit.php:65 msgid "Labels horizontally" -msgstr "" +msgstr "Horizontalno etiketa" #: application/views/labels/create.php:66 application/views/labels/edit.php:68 msgid "Number of labels horizontally across the page." -msgstr "" +msgstr "Broj etiketa u jednom redu, na stranici." #: application/views/labels/create.php:69 application/views/labels/edit.php:71 msgid "Labels vertically" -msgstr "" +msgstr "Vertikalno etiketa" #: application/views/labels/create.php:72 application/views/labels/edit.php:74 msgid "Number of labels vertically across the page." -msgstr "" +msgstr "Broj etiketa u jednoj koloni, na stranici." #: application/views/labels/create.php:77 application/views/labels/edit.php:79 msgid "Horizontal space" -msgstr "" +msgstr "Horizontalni razmak" #: application/views/labels/create.php:80 application/views/labels/edit.php:82 msgid "Horizontal space between 2 labels." -msgstr "" +msgstr "Horizontalni razmak između dve etikete." #: application/views/labels/create.php:83 application/views/labels/edit.php:85 msgid "Vertical space" -msgstr "" +msgstr "Vertikalni razmak" #: application/views/labels/create.php:86 application/views/labels/edit.php:88 msgid "Vertical space between 2 labels." -msgstr "" +msgstr "Vertikalni razmak između dve etikete." #: application/views/labels/create.php:91 application/views/labels/edit.php:93 msgid "Width of label" -msgstr "" +msgstr "Širina etikete" #: application/views/labels/create.php:94 application/views/labels/edit.php:96 msgid "Total width of one label." -msgstr "" +msgstr "Ukupna širina jedne etikete." #: application/views/labels/create.php:97 application/views/labels/edit.php:99 msgid "Height of label" -msgstr "" +msgstr "Visina etikete" #: application/views/labels/create.php:100 #: application/views/labels/edit.php:102 msgid "Total height of one label" -msgstr "" +msgstr "Ukupna visina jedne etikete" #: application/views/labels/create.php:105 #: application/views/labels/edit.php:107 application/views/labels/index.php:80 msgid "Font Size" -msgstr "" +msgstr "Veličina fonta" #: application/views/labels/create.php:108 #: application/views/labels/edit.php:110 msgid "Font size used on the label don't go too big." msgstr "" +"Veličina fonta koja se koristi na etiketama ne bi trebalo da bude velika." #: application/views/labels/create.php:111 #: application/views/labels/edit.php:113 msgid "QSOs on label" -msgstr "" +msgstr "QSOa na etiketi" #: application/views/labels/create.php:117 #: application/views/labels/edit.php:118 msgid "Save Label Type" -msgstr "" +msgstr "Sačuvajte vrstu etikete" #: application/views/labels/createpaper.php:36 #: application/views/labels/editpaper.php:36 msgid "Paper Type Name" -msgstr "" +msgstr "Naziv vrste papira" #: application/views/labels/createpaper.php:39 #: application/views/labels/editpaper.php:39 msgid "Paper name used for display purposes, so pick something meaningful." msgstr "" +"Naziv papira se koristi u svrhu prikazivanja izbora, izaberite nešto " +"smisleno." #: application/views/labels/createpaper.php:51 #: application/views/labels/editpaper.php:51 msgid "Width of paper" -msgstr "" +msgstr "Širina papira" #: application/views/labels/createpaper.php:54 #: application/views/labels/editpaper.php:54 #: application/views/labels/editpaper.php:60 msgid "Total width of paper." -msgstr "" +msgstr "Ukupna širina papira." #: application/views/labels/createpaper.php:57 #: application/views/labels/editpaper.php:57 msgid "Height of paper" -msgstr "" +msgstr "Visina papira" #: application/views/labels/createpaper.php:60 msgid "Total height of paper" -msgstr "" +msgstr "Ukupna visina papira" #: application/views/labels/createpaper.php:65 #: application/views/labels/createpaper.php:71 #: application/views/labels/editpaper.php:65 #: application/views/labels/editpaper.php:71 msgid "Orientation of paper" -msgstr "" +msgstr "Orjentacija papira" #: application/views/labels/createpaper.php:68 #: application/views/labels/editpaper.php:68 #: application/views/labels/index.php:60 msgctxt "Orientation" msgid "Landscape" -msgstr "" +msgstr "Horizontalno" #: application/views/labels/createpaper.php:69 #: application/views/labels/editpaper.php:69 #: application/views/labels/index.php:60 msgctxt "Orientation" msgid "Portrait" -msgstr "" +msgstr "Vertikalno" #: application/views/labels/createpaper.php:75 #: application/views/labels/editpaper.php:75 msgid "Save Paper Type" -msgstr "" +msgstr "Sačuvajte vrstu papira" #: application/views/labels/edit.php:24 msgid "" "Label name used for display purposes so pick something meaningful perhaps " "the label style." msgstr "" +"Naziv etikete se koristi u svrhu prikazivanja raspoloživih etiketa, tako da " +"biste trebali izabrati neko smisleno ime, možda stil etikete." #: application/views/labels/index.php:2 #: application/views/logbookadvanced/startatform.php:27 msgid "Mark QSL as printed" -msgstr "" +msgstr "Označite QSL kao odštampanu" #: application/views/labels/index.php:3 application/views/labels/index.php:128 msgid "Print" -msgstr "" +msgstr "Štampa" #: application/views/labels/index.php:33 msgid "Create New Label Type" -msgstr "" +msgstr "Kreirajte novu vrstu etikete" #: application/views/labels/index.php:34 msgid "Create New Paper Type" -msgstr "" +msgstr "Kreirajte novu vrstu papira" #: application/views/labels/index.php:37 msgid "Paper types" -msgstr "" +msgstr "Vrste papira" #: application/views/labels/index.php:43 application/views/labels/index.php:78 msgid "Width" -msgstr "" +msgstr "Širina" #: application/views/labels/index.php:44 application/views/labels/index.php:79 msgid "Height" -msgstr "" +msgstr "Visina" #: application/views/labels/index.php:45 msgid "Used by labels" -msgstr "" +msgstr "Koriste ga etikete" #: application/views/labels/index.php:46 msgid "Orientation" -msgstr "" +msgstr "Ojrentacija" #: application/views/labels/index.php:71 msgid "Label types" -msgstr "" +msgstr "Vrste etiketa" #: application/views/labels/index.php:81 #: application/views/statistics/index.php:59 #: application/views/statistics/index.php:96 #: application/views/widgets/qsos.php:3 msgid "QSOs" -msgstr "" +msgstr "QSOi" #: application/views/labels/index.php:82 msgid "Use For Print" -msgstr "" +msgstr "Koristi za štampu" #: application/views/labels/index.php:92 msgid "No paper assigned" -msgstr "" +msgstr "Papir nije doznačen" #: application/views/labels/index.php:117 msgid "QSL Card Labels Pending" -msgstr "" +msgstr "Etikete QSL karata na čekanju" #: application/views/labels/index.php:126 msgid "QSOs Waiting" -msgstr "" +msgstr "QSOi na čekanju" #: application/views/labels/index.php:127 msgid "View QSOs" -msgstr "" +msgstr "Pregledaj QSOe" #: application/views/labels/startatform.php:4 #: application/views/logbookadvanced/startatform.php:3 msgid "Include Grid?" -msgstr "" +msgstr "Uključujući i polje?" #: application/views/labels/startatform.php:10 #: application/views/logbookadvanced/startatform.php:9 msgid "" "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" msgstr "" +"Uključujući i reference (SIG, SOTA, POTA, IOTA, WWFF; ako su dostupne za " +"lokaciju)" #: application/views/labels/startatform.php:16 msgid "Include Via (if filled)?" -msgstr "" +msgstr "Uključujući i Via (ako je popunjeno)?" #: application/views/labels/startatform.php:22 #: application/views/logbookadvanced/startatform.php:21 msgid "Start printing at?" -msgstr "" +msgstr "Započeti štampu u?" #: application/views/logbookadvanced/edit.php:15 #: application/views/logbookadvanced/index.php:410 #: application/views/logbookadvanced/index.php:567 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" -msgstr "" +msgstr "QSL via" #: application/views/logbookadvanced/edit.php:22 msgid "LoTW Sent" -msgstr "" +msgstr "LoTW poslat" #: application/views/logbookadvanced/edit.php:23 msgid "LoTW Received" -msgstr "" +msgstr "LoTW primljen" #: application/views/logbookadvanced/edit.php:73 msgid "SAT Mode" -msgstr "" +msgstr "SAT vrsta rada" #: application/views/logbookadvanced/edit.php:87 msgid "Band RX" -msgstr "" +msgstr "RX opseg" #: application/views/logbookadvanced/index.php:11 #: application/views/logbookadvanced/useroptions.php:158 msgctxt "Map Options" msgid "Gridsquares" -msgstr "" +msgstr "Polja" #: application/views/logbookadvanced/index.php:14 #: application/views/logbookadvanced/useroptions.php:154 #: application/views/stationsetup/exportmapoptions.php:23 msgctxt "Map Options" msgid "Path lines" -msgstr "" +msgstr "Linije putanja" #: application/views/logbookadvanced/index.php:15 #: application/views/logbookadvanced/useroptions.php:162 msgctxt "Map Options" msgid "CQ Zones" -msgstr "" +msgstr "CQ Zone" #: application/views/logbookadvanced/index.php:16 #: application/views/logbookadvanced/useroptions.php:166 msgctxt "Map Options" msgid "ITU Zones" -msgstr "" +msgstr "ITU Zone" #: application/views/logbookadvanced/index.php:17 #: application/views/logbookadvanced/useroptions.php:170 msgctxt "Map Options" msgid "Night Shadow" -msgstr "" +msgstr "Senka noći" #: application/views/logbookadvanced/index.php:138 msgid "From" -msgstr "" +msgstr "Od" #: application/views/logbookadvanced/index.php:142 msgid "To" -msgstr "" +msgstr "Za" #: application/views/logbookadvanced/index.php:146 #: application/views/logbookadvanced/index.php:546 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" -msgstr "" +msgstr "Dx" #: application/views/logbookadvanced/index.php:153 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" -msgstr "" +msgstr "- NIJEDNA - (npr. /MM, /AM)" #: application/views/logbookadvanced/index.php:218 msgctxt "Propagation Mode" msgid "None/Empty" -msgstr "" +msgstr "Nema/Prazno" #: application/views/logbookadvanced/index.php:302 msgid "QSL sent" -msgstr "" +msgstr "QSL poslata" #: application/views/logbookadvanced/index.php:305 #: application/views/logbookadvanced/index.php:316 @@ -7081,18 +7356,18 @@ msgstr "" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:209 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:236 -#: application/views/station_profile/create.php:275 -#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 #: application/views/station_profile/create.php:293 -#: application/views/station_profile/edit.php:350 -#: application/views/station_profile/edit.php:358 -#: application/views/station_profile/edit.php:384 -#: application/views/station_profile/edit.php:405 -#: application/views/station_profile/edit.php:423 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 #: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 #: application/views/user/edit.php:347 application/views/user/edit.php:358 #: application/views/user/edit.php:369 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:399 @@ -7119,18 +7394,18 @@ msgstr "Da" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:210 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:237 -#: application/views/station_profile/create.php:276 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/create.php:292 -#: application/views/station_profile/edit.php:351 -#: application/views/station_profile/edit.php:359 -#: application/views/station_profile/edit.php:385 -#: application/views/station_profile/edit.php:406 -#: application/views/station_profile/edit.php:424 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 #: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 #: application/views/user/edit.php:348 application/views/user/edit.php:359 #: application/views/user/edit.php:370 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:400 @@ -7157,7 +7432,7 @@ msgstr "Ne" #: application/views/view_log/partial/log_ajax.php:181 #: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 msgid "Queued" -msgstr "" +msgstr "U nizu" #: application/views/logbookadvanced/index.php:309 #: application/views/logbookadvanced/index.php:319 @@ -7191,22 +7466,22 @@ msgstr "" #: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 #: src/QSLManager/QSO.php:375 src/QSLManager/QSO.php:398 msgid "Invalid (Ignore)" -msgstr "" +msgstr "Neispravno (ignorišite)" #: application/views/logbookadvanced/index.php:313 msgid "QSL received" -msgstr "" +msgstr "QSL primljena" #: application/views/logbookadvanced/index.php:320 #: application/views/logbookadvanced/index.php:362 #: application/views/logbookadvanced/index.php:384 #: application/views/logbookadvanced/index.php:406 msgid "Verified" -msgstr "" +msgstr "Verifikovano" #: application/views/logbookadvanced/index.php:324 msgid "QSL send. method" -msgstr "" +msgstr "Način slanja QSL" #: application/views/logbookadvanced/index.php:327 #: application/views/logbookadvanced/index.php:337 @@ -7226,7 +7501,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:200 #: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 msgid "Bureau" -msgstr "" +msgstr "Biro" #: application/views/logbookadvanced/index.php:328 #: application/views/logbookadvanced/index.php:338 @@ -7244,7 +7519,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:203 #: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 msgid "Direct" -msgstr "" +msgstr "Direktno" #: application/views/logbookadvanced/index.php:329 #: application/views/logbookadvanced/index.php:339 @@ -7262,7 +7537,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:209 #: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 msgid "Electronic" -msgstr "" +msgstr "Elektronski" #: application/views/logbookadvanced/index.php:330 #: application/views/logbookadvanced/index.php:340 @@ -7273,297 +7548,298 @@ msgstr "" #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:206 msgid "Manager" -msgstr "" +msgstr "Menadžer" #: application/views/logbookadvanced/index.php:334 msgid "QSL recv. method" -msgstr "" +msgstr "Način prijema QSL" #: application/views/logbookadvanced/index.php:344 msgid "LoTW sent" -msgstr "" +msgstr "LoTW poslat" #: application/views/logbookadvanced/index.php:355 msgid "LoTW received" -msgstr "" +msgstr "LoTW primljen" #: application/views/logbookadvanced/index.php:366 msgid "Clublog sent" -msgstr "" +msgstr "Clublog poslat" #: application/views/logbookadvanced/index.php:377 msgid "Clublog received" -msgstr "" +msgstr "Clublog primljen" #: application/views/logbookadvanced/index.php:388 msgid "eQSL sent" -msgstr "" +msgstr "eQSL poslata" #: application/views/logbookadvanced/index.php:399 msgid "eQSL received" -msgstr "" +msgstr "eQSL primljena" #: application/views/logbookadvanced/index.php:414 msgid "QSL Images" -msgstr "" +msgstr "Slike QSL" #: application/views/logbookadvanced/index.php:426 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" -msgstr "" +msgstr "Upozorenje! Da li ste sigurni da želite izbrisati označenu vezu/veze?" #: application/views/logbookadvanced/index.php:429 msgid "With selected: " -msgstr "" +msgstr "Sa izabranim: " #: application/views/logbookadvanced/index.php:430 #: application/views/qso/edit_ajax.php:595 msgid "Update from Callbook" -msgstr "" +msgstr "Ažurirajte iz Callbooka" #: application/views/logbookadvanced/index.php:431 msgid "Queue Bureau" -msgstr "" +msgstr "U nizu za biro" #: application/views/logbookadvanced/index.php:432 msgid "Queue Direct" -msgstr "" +msgstr "U nizu za direktno" #: application/views/logbookadvanced/index.php:433 msgid "Queue Electronic" -msgstr "" +msgstr "U nizu za elektronsko" #: application/views/logbookadvanced/index.php:434 msgid "Sent (Bureau)" -msgstr "" +msgstr "Poslato (preko biroa)" #: application/views/logbookadvanced/index.php:435 msgid "Sent (Direct)" -msgstr "" +msgstr "Poslato (direktno)" #: application/views/logbookadvanced/index.php:436 msgid "Sent (Electronic)" -msgstr "" +msgstr "Poslato (elektronski)" #: application/views/logbookadvanced/index.php:437 msgid "Not Sent" -msgstr "" +msgstr "Nije poslato" #: application/views/logbookadvanced/index.php:438 msgid "QSL Not Required" -msgstr "" +msgstr "QSL nije zahtevana" #: application/views/logbookadvanced/index.php:439 msgid "Not Received" -msgstr "" +msgstr "Nije primljena" #: application/views/logbookadvanced/index.php:440 msgid "Received (Bureau)" -msgstr "" +msgstr "Primljena (preko biroa)" #: application/views/logbookadvanced/index.php:441 msgid "Received (Direct)" -msgstr "" +msgstr "Primljena (direktno)" #: application/views/logbookadvanced/index.php:442 msgid "Received (Electronic)" -msgstr "" +msgstr "Primljena (elektronski)" #: application/views/logbookadvanced/index.php:443 msgid "Create ADIF" -msgstr "" +msgstr "Napravi ADIF" #: application/views/logbookadvanced/index.php:444 msgid "Print Label" -msgstr "" +msgstr "Štampa etiketa" #: application/views/logbookadvanced/index.php:445 msgid "QSL Slideshow" -msgstr "" +msgstr "Prikaz QSL karata" #: application/views/logbookadvanced/index.php:450 msgid "Quicksearch with selected: " -msgstr "" +msgstr "Brza pretraga sa izabranim: " #: application/views/logbookadvanced/index.php:455 msgid "Search DXCC" -msgstr "" +msgstr "Pretraži DXCC" #: application/views/logbookadvanced/index.php:458 msgid "Search State" -msgstr "" +msgstr "Pretraži državu" #: application/views/logbookadvanced/index.php:461 msgid "Search Gridsquare" -msgstr "" +msgstr "Pretraži polje" #: application/views/logbookadvanced/index.php:464 msgid "Search CQ Zone" -msgstr "" +msgstr "Pretraži CQ zonu" #: application/views/logbookadvanced/index.php:467 msgid "Search ITU Zone" -msgstr "" +msgstr "Pretraži ITU zonu" #: application/views/logbookadvanced/index.php:470 msgid "Search Mode" -msgstr "" +msgstr "Pretraži vrstu rada" #: application/views/logbookadvanced/index.php:473 msgid "Search Band" -msgstr "" +msgstr "Pretraži opseg" #: application/views/logbookadvanced/index.php:476 msgid "Search IOTA" -msgstr "" +msgstr "Pretraži IOTA" #: application/views/logbookadvanced/index.php:479 msgid "Search SOTA" -msgstr "" +msgstr "Pretraži SOTA" #: application/views/logbookadvanced/index.php:482 msgid "Search POTA" -msgstr "" +msgstr "Pretraži POTA" #: application/views/logbookadvanced/index.php:485 msgid "Search WWFF" -msgstr "" +msgstr "Pretraži WWFF" #: application/views/logbookadvanced/index.php:488 msgid "Search Operator" -msgstr "" +msgstr "Pretraži operatora" #: application/views/logbookadvanced/index.php:494 msgid "Quickfilters" -msgstr "" +msgstr "Brzi filteri" #: application/views/logbookadvanced/index.php:495 msgid "QSL Filters" -msgstr "" +msgstr "QSL filteri" #: application/views/logbookadvanced/index.php:496 #: application/views/mode/index.php:68 msgid "Filters" -msgstr "" +msgstr "Filteri" #: application/views/logbookadvanced/index.php:498 #: application/views/oqrs/showrequests.php:56 msgid "# Results" -msgstr "" +msgstr "# rezultata" #: application/views/logbookadvanced/index.php:505 #: application/views/qso/index.php:272 -#: application/views/station_profile/edit.php:85 +#: application/views/station_profile/edit.php:92 msgid "Location" -msgstr "" +msgstr "Lokacija" #: application/views/logbookadvanced/index.php:517 msgid "Dupes" -msgstr "" +msgstr "Duple" #: application/views/logbookadvanced/index.php:524 msgid "Globe map" -msgstr "" +msgstr "Karta sveta" #: application/views/logbookadvanced/index.php:543 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" -msgstr "" +msgstr "De" #: application/views/logbookadvanced/index.php:582 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" -msgstr "" +msgstr "QSL poruka" #: application/views/logbookadvanced/index.php:627 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" -msgstr "" +msgstr "Moje Refs" #: application/views/logbookadvanced/qslcarousel.php:59 #: application/views/qslcard/qslcarousel.php:25 msgid "QSL picture #" -msgstr "" +msgstr "QSL slika #" #: application/views/logbookadvanced/qslcarousel.php:67 #: application/views/qslcard/qslcarousel.php:32 msgid "Previous" -msgstr "" +msgstr "Prethodno" #: application/views/logbookadvanced/qslcarousel.php:71 #: application/views/qslcard/qslcarousel.php:36 msgid "Next" -msgstr "" +msgstr "Sledeće" #: application/views/logbookadvanced/startatform.php:15 msgid "Include Via" -msgstr "" +msgstr "Uključujući Via" #: application/views/logbookadvanced/useroptions.php:16 msgid "Column" -msgstr "" +msgstr "Kolona" #: application/views/logbookadvanced/useroptions.php:148 msgctxt "Map Options" msgid "Layer" -msgstr "" +msgstr "Sloj" #: application/views/logbookadvanced/useroptions.php:149 msgid "Default on" -msgstr "" +msgstr "Podrazumevano na" #: application/views/lookup/index.php:8 msgid "US State" -msgstr "" +msgstr "USA država" #: application/views/lookup/index.php:10 msgid "LoTW user" -msgstr "" +msgstr "LoTW korisnik" #: application/views/lookup/index.php:46 msgid "Choose a State" -msgstr "" +msgstr "Izaberite državu" #: application/views/lookup/lotwuser.php:2 #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:46 #: application/views/search/result.php:58 msgid "LoTW User" -msgstr "" +msgstr "LoTW korisnik" #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:58 #, php-format msgid "%d day ago" msgid_plural "%d days ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Pre %d dana" +msgstr[1] "Pre %d dana" +msgstr[2] "pre %d dana" #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:58 msgid "last upload" -msgstr "" +msgstr "poslednje učitavanje" #: application/views/lookup/lotwuser.php:14 msgid "No LoTW User" -msgstr "" +msgstr "Nije LoTW korisnik" #: application/views/lotw/analysis.php:8 application/views/qrz/analysis.php:8 msgid "No data imported. please check selected date. Must be in the past!" msgstr "" +"Podaci nisu uvezeni. Molimo proverite izabrani datum. Mora biti iz prošlosti!" #: application/views/lotw/import.php:12 msgid "Import Options" -msgstr "" +msgstr "Opcije uvoza" #: application/views/lotw/import.php:22 msgid "Upload a File" -msgstr "" +msgstr "Učitajte datoteku" #: application/views/lotw/import.php:24 msgid "Download Report" -msgstr "" +msgstr "Preuzmite izveštaj" #: application/views/lotw/import.php:24 #, php-format @@ -7571,18 +7847,20 @@ msgid "" "Upload the Exported ADIF file from LoTW from the %s Area, to mark QSOs as " "confirmed on LoTW." msgstr "" +"Učitajte ADIF datoteku koju ste izvezli sa LoTW sajta sa %s, kako biste " +"označili veze potvrđenima preko LoTW." #: application/views/lotw/import.php:27 msgid "Choose file" -msgstr "" +msgstr "Izbor datoteke" #: application/views/lotw/import.php:36 msgid "Pull LoTW data for me" -msgstr "" +msgstr "Povucite LoTW podatke za mene" #: application/views/lotw/import.php:47 msgid "Select callsign to pull LoTW confirmations for." -msgstr "" +msgstr "Izaberite pozivni znak za koji želite da povučete LoTW potvrde." #: application/views/lotw/import.php:61 msgid "" @@ -7591,183 +7869,197 @@ msgid "" "have all confirmations since chosen date, or since your last LoTW " "confirmation (fetched from your log), up until now." msgstr "" +"Wavelog će koristiti LoTW korisničko ime i lozinku koje ste ostavili u vašem " +"korisničkom profilu kako bi za vas preuzeo izveštaj sa LoTW. Izveštaj koji " +"će Wavelog preuzeti imaće sve povrde veza od izabranog datuma na dalje, ili " +"od vaše posljednje LoTW potvrde (dobavljeno iz vašeg dnevnika), do ovog " +"trenutka." #: application/views/lotw/import.php:64 msgid "Import LoTW Matches" -msgstr "" +msgstr "Uvezi LoTW poklapanja" #: application/views/lotw_views/index.php:4 msgid "Upload folder is not writable. Please contact your admin." msgstr "" +"Fascikla za učitavanje je zaštićena od zapisivanja. Molim kontaktirajte " +"vašeg administratora." #: application/views/lotw_views/index.php:10 msgid "LoTW Import" -msgstr "" +msgstr "LoTW uvoz" #: application/views/lotw_views/index.php:17 msgid "Available Certificates" -msgstr "" +msgstr "Dostupni sertifikati" #: application/views/lotw_views/index.php:17 msgid "Upload Certificate" -msgstr "" +msgstr "Učitajte sertifikat" -#: application/views/lotw_views/index.php:41 +#: application/views/lotw_views/index.php:37 msgid "QSO Start Date" -msgstr "" +msgstr "Početni datum veza" + +#: application/views/lotw_views/index.php:38 +msgid "QSO End Date" +msgstr "Krajnji datum veza" + +#: application/views/lotw_views/index.php:39 +msgid "Date Created" +msgstr "Datum kreiranja" + +#: application/views/lotw_views/index.php:40 +msgid "Date Expires" +msgstr "Datum isteka" #: application/views/lotw_views/index.php:42 -msgid "QSO End Date" -msgstr "" - -#: application/views/lotw_views/index.php:43 -msgid "Date Created" -msgstr "" - -#: application/views/lotw_views/index.php:44 -msgid "Date Expires" -msgstr "" - -#: application/views/lotw_views/index.php:46 #: application/views/view_log/qso.php:404 msgid "Last Upload" -msgstr "" +msgstr "Poslednje učitavanje" -#: application/views/lotw_views/index.php:91 +#: application/views/lotw_views/index.php:87 msgid "Expired" -msgstr "" +msgstr "Isteklo" -#: application/views/lotw_views/index.php:93 +#: application/views/lotw_views/index.php:89 msgid "Expiring" -msgstr "" +msgstr "Ističe" -#: application/views/lotw_views/index.php:105 +#: application/views/lotw_views/index.php:101 #, php-format msgid "Last success: %s" -msgstr "" +msgstr "Poslednji put uspešno: %s" -#: application/views/lotw_views/index.php:108 +#: application/views/lotw_views/index.php:104 #, php-format msgid "Last fail: %s" -msgstr "" +msgstr "Poslednji put neuspešno: %s" -#: application/views/lotw_views/index.php:114 +#: application/views/lotw_views/index.php:110 msgid "Not Synced" -msgstr "" +msgstr "Nije sinhronizovano" -#: application/views/lotw_views/index.php:129 +#: application/views/lotw_views/index.php:125 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" +"Trebalo bi da učitate neke LoTW p12 sertifikate kako biste koristili ove " +"mogućnosti." -#: application/views/lotw_views/index.php:144 +#: application/views/lotw_views/index.php:140 msgid "Information" -msgstr "" +msgstr "Informacije" -#: application/views/lotw_views/index.php:149 +#: application/views/lotw_views/index.php:145 msgid "Manual Sync" -msgstr "" +msgstr "Ručna sinhronizacija" #: application/views/lotw_views/upload_cert.php:8 #: application/views/lotw_views/upload_cert.php:31 msgid "Upload Logbook of the World .p12 Certificate" -msgstr "" +msgstr "Učitavanje LoTW .p12 sertifikata" #: application/views/lotw_views/upload_cert.php:19 msgid "Export .p12 File Instructions" -msgstr "" +msgstr "Izvoz .p12 instrukcija" #: application/views/lotw_views/upload_cert.php:22 msgid "Open TQSL and go to the Callsign Certificates Tab" -msgstr "" +msgstr "Otvorite TQSL i idite na karticu Callsign Certificates" #: application/views/lotw_views/upload_cert.php:23 msgid "Right click on desired Callsign" -msgstr "" +msgstr "Desni klik na željeni pozivni znak" #: application/views/lotw_views/upload_cert.php:24 msgid "Click 'Save Callsign Certificate File' and do not add a password" msgstr "" +"Kliknite na 'Save Callsign Certificate File' i nemojte dodavati lozinku" #: application/views/lotw_views/upload_cert.php:25 msgid "Upload File below." -msgstr "" +msgstr "Učitajte dole datoteku." #: application/views/lotw_views/upload_cert.php:35 msgid "Upload File" -msgstr "" +msgstr "Učitavanje datoteke" #: application/views/mode/create.php:24 application/views/mode/edit.php:33 msgctxt "Name of mode in ADIF-specification" msgid "ADIF Mode" -msgstr "" +msgstr "ADIF vrsta rada" #: application/views/mode/create.php:26 application/views/mode/edit.php:35 msgid "Name of mode in ADIF-specification" -msgstr "" +msgstr "Naziv vrste rada prema ADIF specifikaciji" #: application/views/mode/create.php:30 application/views/mode/edit.php:39 msgctxt "Name of sub-mode in ADIF-specification" msgid "ADIF Sub-Mode" -msgstr "" +msgstr "ADIF podvrsta rada" #: application/views/mode/create.php:32 application/views/mode/edit.php:41 msgid "Name of sub-mode in ADIF-specification" -msgstr "" +msgstr "Naziv podvrste rada prema ADIF specifikaciji" #: application/views/mode/create.php:42 application/views/mode/edit.php:53 msgid "Defines the QRG-segment in bandplan." -msgstr "" +msgstr "Definiše QRG segment u planu opsega." #: application/views/mode/create.php:49 application/views/mode/edit.php:61 #: application/views/mode/index.php:43 msgid "Not active" -msgstr "" +msgstr "Nije aktivno" #: application/views/mode/create.php:51 application/views/mode/edit.php:64 msgid "Set to active if to be listed in Modes-list" -msgstr "" +msgstr "Postavite kao aktivno kako bi bilo prikazano na listi vrsta rada" #: application/views/mode/create.php:54 msgid "Create mode" -msgstr "" +msgstr "Kreiraj vrstu rada" #: application/views/mode/edit.php:67 msgid "Update mode" -msgstr "" +msgstr "Ažuriraj vrstu rada" #: application/views/mode/index.php:19 msgid "" "Using the modes list you can control which modes are shown when creating a " "new QSO." msgstr "" +"Korišćenjem liste vrste rada možete kontrolisati koje vrste će biti " +"prikazane kada kreirate novi QSO." #: application/views/mode/index.php:22 msgid "" "Active modes will be shown in the QSO 'Mode' drop-down, while inactive modes " "will be hidden and cannot be selected." msgstr "" +"Aktivne vrste rada će biti prikazane u padajućoj listi Vrsta rada, dok će " +"neaktivne vrste biti skrivene i nećete ih moći izabrati." #: application/views/mode/index.php:29 msgid "Sub-Mode" -msgstr "" +msgstr "Pod-vrsta" #: application/views/mode/index.php:76 msgid "Create a Mode" -msgstr "" +msgstr "Kreiraj vrstu rada" #: application/views/notes/add.php:6 application/views/notes/add.php:12 #: application/views/notes/edit.php:13 application/views/notes/main.php:11 #: application/views/notes/view.php:12 msgid "Create Note" -msgstr "" +msgstr "Kreiraj napomenu" #: application/views/notes/add.php:29 application/views/notes/edit.php:30 msgid "Title" -msgstr "" +msgstr "Naslov" #: application/views/notes/add.php:34 application/views/notes/edit.php:35 msgid "Category" -msgstr "" +msgstr "Kategorija" #: application/views/notes/add.php:36 application/views/notes/edit.php:37 #: application/views/qso/index.php:28 @@ -7776,23 +8068,23 @@ msgstr "" #: application/views/statistics/index.php:35 #: application/views/user/edit.php:154 msgid "General" -msgstr "" +msgstr "Opšte" #: application/views/notes/add.php:37 application/views/notes/edit.php:38 msgid "Antennas" -msgstr "" +msgstr "Antene" #: application/views/notes/add.php:43 application/views/notes/edit.php:44 msgid "Note Contents" -msgstr "" +msgstr "Sadržaj napomene" #: application/views/notes/add.php:48 application/views/notes/edit.php:50 msgid "Save Note" -msgstr "" +msgstr "Sačuvaj napomenu" #: application/views/notes/main.php:22 msgid "Your Notes" -msgstr "" +msgstr "Vaše napomene" #: application/views/notes/main.php:32 msgid "" @@ -7800,88 +8092,98 @@ msgid "" "data like ATU settings, beacons and general station notes and its better " "than paper as you can't lose them!" msgstr "" +"Trenutno nemate napomena, one su fantastičan način čuvanja podataka kao što " +"su ATU podešavnja, radio-farovi i opšte napomene o radio-stanici, bolje su " +"od papira kojeg možete zaturiti!" #: application/views/notes/view.php:21 msgid "Delete Note" -msgstr "" +msgstr "Izbriši napomenu" #: application/views/operator/index.php:9 msgid "" "Please provide your personal call sign. This makes sure that QSOs are logged " "and exported with correct operator information." msgstr "" +"Molimo upišite vaš lični pozivni znak. Ovo garantuje da će veze biti upisane " +"i izvezene sa tačnom informacijom o operatoru." #: application/views/operator/index.php:13 msgid "Your personal Callsign:" -msgstr "" +msgstr "Vaš lični pozivni znak:" #: application/views/operator/index.php:16 msgid "You have to provide your personal callsign." -msgstr "" +msgstr "Morate upisati vaš lični pozivni znak." #: application/views/options/appearance.php:39 #: application/views/user/edit.php:157 msgid "Theme" -msgstr "" +msgstr "Teme" #: application/views/options/appearance.php:51 msgid "Global Theme Choice, this is used when users arent logged in." msgstr "" +"Globalni izbor teme, ova će biti korišćena kada korisnici nisu prijavljeni." #: application/views/options/appearance.php:61 msgid "Dashboard Notification Banner" -msgstr "" +msgstr "Polje napomene na kontrolnoj tabli" #: application/views/options/appearance.php:66 msgid "This allows to disable the global notification banner on the dashboard." -msgstr "" +msgstr "Ovim ćete onemogućiti prikaz napomena na vrhu kontrolne table." #: application/views/options/appearance.php:70 msgid "Dashboard Map" -msgstr "" +msgstr "Karta na kontrolnoj tabli" #: application/views/options/appearance.php:74 msgid "Map at right" -msgstr "" +msgstr "Mapa u desno" #: application/views/options/appearance.php:76 msgid "" "This allows the map on the dashboard to be disabled or placed on the right." msgstr "" +"Ovo omogućava da karta na kontrolnoj tabli bude onemogućena ili postavljena " +"uz desnu ivicu." #: application/views/options/appearance.php:80 msgid "Logbook Map" -msgstr "" +msgstr "Karta dnevnika" #: application/views/options/appearance.php:85 msgid "This allows to disable the map in the logbook." -msgstr "" +msgstr "Ovim ćete onemogućiti prikaz karte u dnevniku." #: application/views/options/appearance.php:89 msgid "Public Maps" -msgstr "" +msgstr "Javne karte" #: application/views/options/appearance.php:94 msgid "" "This allows to disable all maps in the public view. This affects the main " "map and the gridsquares map." msgstr "" +"Ovim ćete onemogućiti prikaz karata u javnom pregledu. Ovo se odnosi na " +"glavnu kartu i na kartu polja." #: application/views/options/appearance.php:98 msgid "Public Github Button" -msgstr "" +msgstr "Javno Github dugme" #: application/views/options/appearance.php:103 msgid "This enables the button to Wavelog's Github page in the public view" -msgstr "" +msgstr "Ovo omogućava prikaz dugmeta za Wavelog Github stranicu" #: application/views/options/dxcluster.php:38 msgid "Provider of DXClusterCache" -msgstr "" +msgstr "Davatelj usluga DX Klastera" #: application/views/options/dxcluster.php:39 msgid "DXClusterAPI" -msgstr "" +msgstr "DXCluster API" #: application/views/options/dxcluster.php:39 #, php-format @@ -7889,208 +8191,225 @@ msgid "" "The Provider of the DXCluster-Cache. You can set up your own Cache with %s " "or use a public one" msgstr "" +"Davatelj usluga DX Klaster privremene memorije. Možete podesiti vašu " +"vlastitu privremenu memoriju sa %s ili koristiti javnu" #: application/views/options/dxcluster.php:41 #, php-format msgid "URL of the DXCluster-Cache. e.g. %s" -msgstr "" +msgstr "URL DX klastera npr. %s" #: application/views/options/dxcluster.php:44 msgid "Maximum Age of spots taken care of" -msgstr "" +msgstr "Maksimalna starost spotova za prikaz" #: application/views/options/dxcluster.php:46 msgid "2 Hours" -msgstr "" +msgstr "2 sata" #: application/views/options/dxcluster.php:47 msgid "60 Minutes" -msgstr "" +msgstr "60 minuta" #: application/views/options/dxcluster.php:48 msgid "30 Minutes" -msgstr "" +msgstr "30 minuta" #: application/views/options/dxcluster.php:50 msgid "The Age in Minutes of spots, that will be taken care at bandplan/lookup" -msgstr "" +msgstr "Vreme u minutima, koje će biti uzeti u obzir za prikaz na mapi opsega" #: application/views/options/dxcluster.php:53 msgid "Show spots which are spotted from following continent" -msgstr "" +msgstr "Prikaži spotove koji su spotovani sa sledećih kontinenata" #: application/views/options/dxcluster.php:63 msgid "Only spots by spotters from this continent are shown" -msgstr "" +msgstr "Samo spotovi spotera sa ovih kontinenata će biti prikazani" #: application/views/options/email.php:45 msgid "Outgoing Protocol" -msgstr "" +msgstr "Odlazni protokol" #: application/views/options/email.php:50 msgid "The protocol that will be used to send out emails." -msgstr "" +msgstr "Protokol koji će biti korišćen za slanje emailova." #: application/views/options/email.php:54 msgid "SMTP Encryption" -msgstr "" +msgstr "SMTP enkripcija" #: application/views/options/email.php:56 msgid "No Encryption" -msgstr "" +msgstr "Bez enkripcije" #: application/views/options/email.php:60 msgid "Choose whether emails should be sent with TLS or SSL." -msgstr "" +msgstr "Izaberite da li će mailovi biti poslati sa TLS ili SSL." #: application/views/options/email.php:64 msgid "Email Sender Name" -msgstr "" +msgstr "Ima pošiljaoca emaila" #: application/views/options/email.php:67 msgid "The email sender name, e.g. 'Wavelog'" -msgstr "" +msgstr "Ime pošiljaoca emaila, npr. 'Wavelog'" #: application/views/options/email.php:72 application/views/user/edit.php:58 #: application/views/user/forgot_password.php:47 msgid "Email Address" -msgstr "" +msgstr "Email adresa" #: application/views/options/email.php:75 msgid "" "The email address from which the emails are sent, e.g. 'wavelog@example.com'" -msgstr "" +msgstr "Email adresa sa koje će mail biti poslat, npr. 'wavelog@primer.com'" #: application/views/options/email.php:80 msgid "SMTP Host" -msgstr "" +msgstr "SMTP Host" #: application/views/options/email.php:83 msgid "" "The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' " "or 'tls://')" msgstr "" +"Hostname mail servera, npr. 'mail.primer.com' (bez 'ssl://' ili 'tls://')" #: application/views/options/email.php:88 msgid "SMTP Port" -msgstr "" +msgstr "SMTP port" #: application/views/options/email.php:91 msgid "" "The SMTP port of the mail server, e.g. if TLS is used -> '587', if SSL is " "used -> '465'" msgstr "" +"SMTP port mail servera, npr. ako se koristi TLS -> '587', ako se koristi SSL " +"-> '465'" #: application/views/options/email.php:96 msgid "SMTP Username" -msgstr "" +msgstr "SMTP korisničko ime" #: application/views/options/email.php:99 msgid "" "The username to log in to the mail server, usually this is the email address " "that is used." msgstr "" +"Korisničko ime za prijavu nam ail server, obično je u obliku email adrese " +"koja se koristi." #: application/views/options/email.php:104 msgid "SMTP Password" -msgstr "" +msgstr "SMTP lozinka" #: application/views/options/email.php:107 msgid "The password to log in to the mail server." -msgstr "" +msgstr "Lozinka za prijavu na mail server." #: application/views/options/email.php:116 msgid "Send Test-Mail" -msgstr "" +msgstr "Pošaljite testni email" #: application/views/options/email.php:117 msgid "The email will be sent to the address defined in your account settings." msgstr "" +"Email će biti poslat na adresu definisanu u podešavanjima vašeg naloga." #: application/views/options/index.php:13 msgid "" "Wavelog Options are global settings used for all users of the installation, " "which are overridden if there's a setting on a user level." msgstr "" +"Wavelog opcije su globalna podešavanja za sve korisnike ove instalaicje, " +"koja mogu biti i pregažena ako postoje podešavanja na korisničkom nivou." #: application/views/options/oqrs.php:39 msgid "Global text" -msgstr "" +msgstr "Globalni tekst" #: application/views/options/oqrs.php:41 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" +"Ovaj tekst je opcioni tekst koji će biti prikazan na vrhu OQRS stranice." #: application/views/options/oqrs.php:45 msgid "Grouped search" -msgstr "" +msgstr "Grupisana pretraga" #: application/views/options/oqrs.php:47 application/views/options/oqrs.php:56 msgid "Off" -msgstr "" +msgstr "Isključeno" #: application/views/options/oqrs.php:48 application/views/options/oqrs.php:57 msgid "On" -msgstr "" +msgstr "Uključeno" #: application/views/options/oqrs.php:50 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" +"Kada je ovo uključeno, sve stanične lokacije sa aktivnim OQRS će odjednom " +"biti uključene u pretragu." #: application/views/options/oqrs.php:54 msgid "Show station location name in grouped search results" -msgstr "" +msgstr "Prikaži ime stanične lokacije u grunim rezultatima pretrage" #: application/views/options/oqrs.php:59 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" +"Ako je grupna pretraga uključena, možete odlučiti da li će naziv stanične " +"lokacije biti prikazan u tabeli sa rezultatima." #: application/views/options/radios.php:38 msgid "Radio Timeout Warning" -msgstr "" +msgstr "Upozorenje na istek vremena aktivnosti radija" #: application/views/options/radios.php:39 msgid "" "The Radio Timeout Warning is used on the QSO entry panel to alert you to " "radio interface disconnects." msgstr "" +"Upozorenje na istek vremena aktivnosti radija u panelu za unos veze će vas " +"upozoriti na prekid veze sa interfejsom vašeg radija." #: application/views/options/radios.php:41 msgid "This number is in seconds." -msgstr "" +msgstr "Ovo je broj u sekundama." #: application/views/options/sidebar.php:5 msgid "Radios" -msgstr "" +msgstr "Radio-uređaji" #: application/views/options/version_dialog.php:47 msgid "Version Info Header" -msgstr "" +msgstr "Zaglavlje informacije o verziji" #: application/views/options/version_dialog.php:49 msgid "You can change the header of the version info dialog." -msgstr "" +msgstr "Možete promeniti zaglavlje informacije o verziji u dijalog boksu." #: application/views/options/version_dialog.php:53 msgid "Version Info Mode" -msgstr "" +msgstr "Vrsta informacije o verziji" #: application/views/options/version_dialog.php:57 msgid "Only Release Notes" -msgstr "" +msgstr "Samo napomene vezane za trenutnu verziju" #: application/views/options/version_dialog.php:60 msgid "Only Custom Text" -msgstr "" +msgstr "Samo podešeni tekst" #: application/views/options/version_dialog.php:63 msgid "Release Notes and Custom Text" -msgstr "" +msgstr "Napomene o trenutnoj verziji i podešeni tekst" #: application/views/options/version_dialog.php:68 msgid "" @@ -8098,93 +8417,103 @@ msgid "" "the dialog after he read it. Select if you want to show only release notes " "(fetched from github), only custom text or both." msgstr "" +"Informacija o verziji će biti prikazana svim korisnicima. Korisnik ima " +"mogućost da odbaci dijalog nakon što ga pročita. Izaberite ako želite da " +"prikažete samo napomene vezane za ovu verziju (povučene sa GitHuba), samo " +"podešeni tekst ili oboje." #: application/views/options/version_dialog.php:72 msgid "Version Info Custom Text" -msgstr "" +msgstr "Podešeni tekst o informaciji verzije" #: application/views/options/version_dialog.php:74 msgid "This is the custom text which is shown in the dialog." -msgstr "" +msgstr "Ovo je podešeni tekst koji će biti prikazan u dijalogu." #: application/views/options/version_dialog.php:84 msgid "Show/Hide Version Info Dialog for all Users" -msgstr "" +msgstr "Prikaz/Skrivanje dijaloga o informaciji o verziji za sve korisnike" #: application/views/options/version_dialog.php:97 msgid "Show for all Users" -msgstr "" +msgstr "Prikaži za sve korisnike" #: application/views/options/version_dialog.php:99 msgid "" "This will show the version dialog automatically to all users on their next " "page reload." msgstr "" +"Ovo će automatski prikazati dijalog za sve korisnike nakon što urade ponovo " +"učitavanje njihove stranice." #: application/views/options/version_dialog.php:104 msgid "Hide for all Users" -msgstr "" +msgstr "Sakrij za sve korisnike" #: application/views/options/version_dialog.php:106 msgid "" "This will deactivate the automatic popup of the version dialog for all users." msgstr "" +"Ovo će deaktivirati za sve korisnike automatski iskačući prozor sa " +"informacijom o verziji." #: application/views/oqrs/index.php:9 msgid "Request a QSL card" -msgstr "" +msgstr "Zahtev za QSL kartu" #: application/views/oqrs/index.php:26 msgid "Enter your callsign" -msgstr "" +msgstr "Unesite vaš pozivni znak" #: application/views/oqrs/index.php:26 msgid "This search will search in all station locations where OQRS is active." -msgstr "" +msgstr "Ova pretraga će ići kroz sve stanične lokacije gde je OQRS aktivan." #: application/views/oqrs/index.php:53 msgid "Select station" -msgstr "" +msgstr "Izaberite stanicu" #: application/views/oqrs/notinlogform.php:2 msgid "" "If you can't find your QSO in the log, please fill out the form below. You " "will be contacted after the log has been checked." msgstr "" +"Ako ne možete pronaći vezu u dnevniku, molimo popunite donji formular. Nakon " +"provere loga bićete kontaktirani." #: application/views/oqrs/notinlogform.php:9 #: application/views/oqrs/request.php:16 #: application/views/oqrs/request_grouped.php:9 msgid "Time (UTC)" -msgstr "" +msgstr "Vreme (UTC)" #: application/views/oqrs/notinlogform.php:24 msgid "Add line" -msgstr "" +msgstr "Dodajte liniju" #: application/views/oqrs/notinlogform.php:30 #: application/views/oqrs/request.php:56 #: application/views/oqrs/request_grouped.php:60 msgid "Any extra information we need to know about?" -msgstr "" +msgstr "Da li postoje neke dodatne informacije koje bismo trebali znati?" #: application/views/oqrs/notinlogform.php:34 #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:64 #: application/views/oqrs/showrequests.php:87 -#: application/views/user/main.php:48 application/views/user/profile.php:24 +#: application/views/user/index.php:48 application/views/user/profile.php:24 msgid "E-mail" -msgstr "" +msgstr "E-mail" #: application/views/oqrs/notinlogform.php:36 #: application/views/oqrs/request.php:62 #: application/views/oqrs/request_grouped.php:66 msgid "Your e-mail address where we can contact you" -msgstr "" +msgstr "Vaša e-mail adresa na koju vas možemo kontaktirati" #: application/views/oqrs/notinlogform.php:40 msgid "Send not in log request" -msgstr "" +msgstr "Pošaljite zahtev za proveru veze u logu" #: application/views/oqrs/qsolist.php:11 #: application/views/qslprint/qslprint.php:29 @@ -8211,7 +8540,7 @@ msgstr "" #: application/views/view_log/qso.php:577 #: application/views/view_log/qso.php:582 msgid "Station" -msgstr "" +msgstr "Stanica" #: application/views/oqrs/qsolist.php:75 #: application/views/qslprint/qslprint.php:28 @@ -8222,16 +8551,16 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:168 #: src/QSLManager/QSO.php:300 msgid "Via" -msgstr "" +msgstr "Via" #: application/views/oqrs/qsolist.php:188 #: application/views/qslprint/qsolist.php:196 msgid "Add to print queue" -msgstr "" +msgstr "Dodajte u niz za štampu" #: application/views/oqrs/qsolist.php:197 msgid "No QSO's were found. It seems you were not active at this time." -msgstr "" +msgstr "Veze nisu pronađene. Izgleda da niste bili aktivni u ovo vreme." #: application/views/oqrs/request.php:9 #: application/views/oqrs/request_grouped.php:3 @@ -8239,560 +8568,563 @@ msgid "" "The following QSO(s) were found. Please fill out the date and time and " "submit your request." msgstr "" +"Pronađene su sledeće veze. Molimo popunite datum i vreme i pošaljite vaš " +"zahtev." #: application/views/oqrs/request.php:40 #: application/views/oqrs/request_grouped.php:44 msgid "QSL Route" -msgstr "" +msgstr "QSL ruta" #: application/views/oqrs/request.php:50 #: application/views/oqrs/request_grouped.php:54 msgid "Direct (write address in message below)" -msgstr "" +msgstr "Direktno (napišite adresu u donjoj poruci)" #: application/views/oqrs/request.php:66 #: application/views/oqrs/request_grouped.php:70 msgid "Submit request" -msgstr "" +msgstr "Pošaljite zahtev" #: application/views/oqrs/request_grouped.php:16 msgid "Station Name" -msgstr "" +msgstr "Naziv stanice" #: application/views/oqrs/request_grouped.php:73 #: application/views/oqrs/result.php:40 msgid "No QSOs found in the log." -msgstr "" +msgstr "Nisu pronađene veze u dnevniku." #: application/views/oqrs/result.php:5 #, php-format msgid "Log search result for %s" -msgstr "" +msgstr "Rezultati pretrage dnevnika za %s" #: application/views/oqrs/result.php:30 #, php-format msgid "has %d band slot" msgid_plural "has %d band slots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Ima %d band slot" +msgstr[1] "Ima %d band slotova" +msgstr[2] "ima %d band slotova" #: application/views/oqrs/result.php:33 #, php-format msgid "and has %d QSO in the log" msgid_plural "and has %d QSOs in the log" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "i ima %d QSO u logu" +msgstr[1] "i ima %d QSOa u logu" +msgstr[2] "i ima %d QSOova u logu" #: application/views/oqrs/result.php:37 msgid "Request QSL" -msgstr "" +msgstr "Zahtevajte QSL" #: application/views/oqrs/result.php:44 msgid "Not in log?" -msgstr "" +msgstr "Niste u dnevniku?" #: application/views/oqrs/showrequests.php:5 #: application/views/oqrs/showrequests.php:50 msgid "Open request" -msgstr "" +msgstr "Otvorite zahtev" #: application/views/oqrs/showrequests.php:6 #: application/views/oqrs/showrequests.php:51 msgid "Not in log request" -msgstr "" +msgstr "Zahtev zbog nepostojanja veze u logu" #: application/views/oqrs/showrequests.php:7 #: application/views/oqrs/showrequests.php:52 msgid "Request done" -msgstr "" +msgstr "Zahtev je završen" #: application/views/oqrs/showrequests.php:47 msgid "OQRS Status" -msgstr "" +msgstr "OQRS status" #: application/views/oqrs/showrequests.php:69 msgid "With selected" -msgstr "" +msgstr "Sa izabranim" #: application/views/oqrs/showrequests.php:70 msgid "Mark as done" -msgstr "" +msgstr "Označite kao završeno" #: application/views/oqrs/showrequests.php:80 msgid "Time of request" -msgstr "" +msgstr "Vreme zahteva" #: application/views/oqrs/showrequests.php:81 #: application/views/simplefle/index.php:74 msgid "QSO Date" -msgstr "" +msgstr "Datum veze" #: application/views/oqrs/showrequests.php:82 msgid "QSO Time" -msgstr "" +msgstr "Vreme veze" #: application/views/oqrs/showrequests.php:85 msgid "Request callsign" -msgstr "" +msgstr "Zahtevani pozivni znak" #: application/views/oqrs/showrequests.php:89 msgid "QSL route" -msgstr "" +msgstr "QSL ruta" #: application/views/oqrs/showrequests.php:90 msgid "Check log" -msgstr "" +msgstr "Provera dnevnika" #: application/views/public_search/empty.php:2 #: application/views/public_search/result.php:2 msgid "Searching for" -msgstr "" +msgstr "Pretraga za" #: application/views/qrbcalc/index.php:3 msgid "Locator 1" -msgstr "" +msgstr "Lokator 1" #: application/views/qrbcalc/index.php:10 msgid "Locator 2" -msgstr "" +msgstr "Lokator 2" #: application/views/qrbcalc/index.php:20 msgid "Calculate" -msgstr "" +msgstr "Računajte" #: application/views/qrz/export.php:27 msgid "" "Here you can see all QSOs which have not been previously uploaded to a QRZ " "logbook." -msgstr "" +msgstr "Ovde možete videti sve veze koje pre nisu učitane na QRZ dnevnik." #: application/views/qrz/export.php:28 msgid "" "You need to set a QRZ Logbook API key in your station profile. Only station " "profiles with an API Key set are displayed." msgstr "" +"Morate podesiti odgovarajući QRZ Logbook API ključ, u profilu vaše stanice. " +"Biće prikazani samo stanični profili sa podešenim API ključem." #: application/views/qrz/export.php:73 msgid "" "If no startdate is given then all QSOs after last confirmation will be " "downloaded/updated!" msgstr "" +"Ako nije zadat početni datum, sve veze nakon poslednje povrde će biti " +"preuzete/ažurirane!" #: application/views/qrz/export.php:81 msgid "Download from QRZ Logbook" -msgstr "" +msgstr "Preuzmite sa QRZ Logbook" #: application/views/qrz/export.php:107 msgid "Mark QSOs as exported to QRZ Logbook" -msgstr "" +msgstr "Označite veze kao izvezene u QRZ Logbook" #: application/views/qrz/mark_qrz.php:16 msgid "The QSOs are marked as exported to QRZ Logbook." -msgstr "" +msgstr "Veze su označene kao izvezene u QRZ Logbook." #: application/views/qslcard/index.php:10 #, php-format msgid "You are using %s of disk space to store QSL Card assets" -msgstr "" +msgstr "Koristite %s od prostora na disku za smeštaj QSL karata" #: application/views/qslcard/index.php:67 msgid "Add Qsos" -msgstr "" +msgstr "Dodajte veze" #: application/views/qslcard/searchresult.php:193 msgid "Add to QSL" -msgstr "" +msgstr "Dodajte u QSL" #: application/views/qslmanagement/index.php:13 msgid "Incoming QSL Cards" -msgstr "" +msgstr "Dolazne QSL karte" #: application/views/qslmanagement/index.php:25 msgid "Report" -msgstr "" +msgstr "Raport" #: application/views/qslmanagement/index.php:26 msgid "Option" -msgstr "" +msgstr "Opcije" #: application/views/qslmanagement/index.php:46 msgid "Outgoing QSL Cards" -msgstr "" +msgstr "Odlazne QSL karte" #: application/views/qslprint/index.php:16 msgid "Export Requested QSLs for Printing" -msgstr "" +msgstr "Izvoz zahtevanih QSL karata za štampu" #: application/views/qslprint/index.php:29 msgid "" "Here you can export requested QSLs as CSV or ADIF files for printing and, " "optionally, mark them as sent." msgstr "" +"Ovde možete izvesti zahtevane QSL karte kao CSV ili ADIF datoteke za štampu " +"i, opciono, označiti ih kao poslate." #: application/views/qslprint/index.php:30 msgid "" "Requested QSLs are any QSOs with a value of 'Requested' or 'Queued' in their " "'QSL Sent' field." msgstr "" +"Zahtevane QSL karte su svi QSOovi sa vrednošću 'Zahtevane' ili 'U nizu' u " +"njihovom 'Poslata QSL' polju." #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:15 msgid "Send Method" -msgstr "" +msgstr "Način slanja" #: application/views/qslprint/qslprint.php:31 msgid "Mark as sent" -msgstr "" +msgstr "Označi poslatom" #: application/views/qslprint/qslprint.php:32 msgid "Remove" -msgstr "" +msgstr "Uklonite" #: application/views/qslprint/qslprint.php:33 #: application/views/simplefle/index.php:133 msgid "QSO List" -msgstr "" +msgstr "Lista veza" #: application/views/qslprint/qslprint.php:67 msgid "Mark selected QSOs as printed" -msgstr "" +msgstr "Označite izabrane veze kao štampane" #: application/views/qslprint/qslprint.php:69 msgid "Remove selected QSOs from the queue" -msgstr "" +msgstr "Uklonite izabrane veze iz niza" #: application/views/qslprint/qslprint.php:71 msgid "Export CSV-file" -msgstr "" +msgstr "Izvoz CSV datoteke" #: application/views/qslprint/qslprint.php:71 msgid "Export requested QSLs to CSV-file" -msgstr "" +msgstr "Izvoz zahtevanih QSL u CSV datoteku" #: application/views/qslprint/qslprint.php:73 msgid "Export ADIF" -msgstr "" +msgstr "Izvoz ADIF" #: application/views/qslprint/qslprint.php:73 msgid "Export requested QSLs to ADIF-file" -msgstr "" +msgstr "Izvoz zahtevanih QSL karata u ADIF datoteku" #: application/views/qslprint/qslprint.php:75 msgid "Mark QSLs as printed" -msgstr "" +msgstr "Označi QSL kao štampane" #: application/views/qslprint/qslprint.php:75 msgid "Mark requested QSLs as sent" -msgstr "" +msgstr "Označi zahtevane QSL kao poslate" #: application/views/qslprint/qslprint.php:79 msgid "No QSLs to print were found!" -msgstr "" +msgstr "Nisu pronađene QSL za štampu!" #: application/views/qslprint/qsolist.php:205 msgid "" "No additional QSO's were found. That means they are probably already in the " "queue." -msgstr "" - -#: application/views/qso/components/winkeysettings.php:7 -#: application/views/qso/components/winkeysettings_results.php:7 -msgid "Winkey Macros" -msgstr "" - -#: application/views/qso/components/winkeysettings.php:12 -#: application/views/qso/components/winkeysettings.php:28 -#: application/views/qso/components/winkeysettings.php:44 -#: application/views/qso/components/winkeysettings.php:60 -#: application/views/qso/components/winkeysettings.php:76 -#: application/views/qso/components/winkeysettings_results.php:12 -#: application/views/qso/components/winkeysettings_results.php:28 -#: application/views/qso/components/winkeysettings_results.php:44 -#: application/views/qso/components/winkeysettings_results.php:60 -#: application/views/qso/components/winkeysettings_results.php:76 -#, php-format -msgid "Function %d - Name" -msgstr "" +msgstr "Nisu pronađene dodatne vze. To znači da su vereovatno već u nizu." +#: application/views/qso/components/winkeysettings.php:3 #: application/views/qso/components/winkeysettings.php:19 #: application/views/qso/components/winkeysettings.php:35 #: application/views/qso/components/winkeysettings.php:51 #: application/views/qso/components/winkeysettings.php:67 -#: application/views/qso/components/winkeysettings.php:83 -#: application/views/qso/components/winkeysettings_results.php:19 -#: application/views/qso/components/winkeysettings_results.php:35 -#: application/views/qso/components/winkeysettings_results.php:51 -#: application/views/qso/components/winkeysettings_results.php:67 -#: application/views/qso/components/winkeysettings_results.php:83 +#, php-format +msgid "Function %d - Name" +msgstr "Fukncija %d - Ime" + +#: application/views/qso/components/winkeysettings.php:10 +#: application/views/qso/components/winkeysettings.php:26 +#: application/views/qso/components/winkeysettings.php:42 +#: application/views/qso/components/winkeysettings.php:58 +#: application/views/qso/components/winkeysettings.php:74 #, php-format msgid "Function %d - Macro" -msgstr "" +msgstr "Funkcija %d - Makro" #: application/views/qso/edit_ajax.php:34 msgid "Sats" -msgstr "" +msgstr "Sateliti" #: application/views/qso/edit_ajax.php:51 msgid "Start Date/Time" -msgstr "" +msgstr "Datum/vreme početka" #: application/views/qso/edit_ajax.php:56 msgid "End Date/Time" -msgstr "" +msgstr "Datum/vreme završetka" #: application/views/qso/edit_ajax.php:76 msgid "RX Frequency" -msgstr "" +msgstr "RX frekvencija" #: application/views/qso/edit_ajax.php:99 msgid "RX Band" -msgstr "" +msgstr "RX opseg" #: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:346 #: application/views/view_log/qso.php:542 msgid "Transmit Power (W)" -msgstr "" +msgstr "Snaga predajnika (W)" #: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:348 msgid "Give power value in Watts. Include only numbers in the input." -msgstr "" +msgstr "Dajte vrednost snage u W. Unesite samo brojčanu vrednost." #: application/views/qso/edit_ajax.php:166 msgid "Used for VUCC MultiGrids" -msgstr "" +msgstr "Koristi se za VUCC MultiGrids" #: application/views/qso/edit_ajax.php:177 msgid "QTH" -msgstr "" +msgstr "QTH" #: application/views/qso/edit_ajax.php:258 msgid "Sat Name" -msgstr "" +msgstr "Ime satelita" #: application/views/qso/edit_ajax.php:263 msgid "Sat Mode" -msgstr "" +msgstr "Vrsta rada preko satelita" #: application/views/qso/edit_ajax.php:356 application/views/qso/index.php:255 #: application/views/qso/index.php:500 application/views/user/edit.php:599 #: application/views/view_log/qso.php:332 #: application/views/view_log/qso.php:582 msgid "Sig Info" -msgstr "" +msgstr "SIG info" #: application/views/qso/edit_ajax.php:369 msgid "Notes (for internal usage only)" -msgstr "" +msgstr "Napomene (samo za unutrašnju upotrebu)" #: application/views/qso/edit_ajax.php:403 msgid "Sent Method" -msgstr "" +msgstr "Način slanja" #: application/views/qso/edit_ajax.php:406 #: application/views/qso/edit_ajax.php:439 application/views/qso/index.php:563 #: application/views/qso/index.php:566 msgid "Method" -msgstr "" +msgstr "Način" #: application/views/qso/edit_ajax.php:416 msgid "Sent Via" -msgstr "" +msgstr "Poslato preko" #: application/views/qso/edit_ajax.php:430 #: application/views/qso/edit_ajax.php:471 #: application/views/qso/edit_ajax.php:510 msgid "Verified (Match)" -msgstr "" +msgstr "Verifikovano (preklapa se)" #: application/views/qso/edit_ajax.php:436 msgid "Received Method" -msgstr "" +msgstr "Način primanja" #: application/views/qso/edit_ajax.php:477 application/views/qso/index.php:583 msgid "This note content is exported to QSL services like eqsl.cc." -msgstr "" +msgstr "Sadržina ove napomene izvezena je u QSL servis kao što je eqsl.cc." #: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:586 msgid "Get the default message for eQSL, for this station." -msgstr "" +msgstr "Dodajte podrazumevanu poruku za eQSL, za ovu stanicu." #: application/views/qso/edit_ajax.php:530 msgid "Change Station Profile" -msgstr "" +msgstr "Promenite stanični profil" #: application/views/qso/edit_ajax.php:576 msgid "Exchange (R)" -msgstr "" +msgstr "Razmena (R)" #: application/views/qso/edit_ajax.php:581 msgid "Exchange (S)" -msgstr "" +msgstr "Razmena (S)" #: application/views/qso/edit_ajax.php:593 #: application/views/search/search_result_ajax.php:432 #: application/views/view_log/partial/log.php:156 #: application/views/view_log/partial/log_ajax.php:346 msgid "Delete QSO" -msgstr "" +msgstr "Izbrišite QSO" #: application/views/qso/edit_ajax.php:596 msgid "Save changes" -msgstr "" +msgstr "Sačuvajte izmene" #: application/views/qso/index.php:4 msgid "TimeOff is less than TimeOn" -msgstr "" +msgstr "Vreme završetka je manje nego vreme početka" -#: application/views/qso/index.php:5 application/views/qso/index.php:694 +#: application/views/qso/index.php:5 application/views/qso/index.php:690 msgid "Previous Contacts" -msgstr "" +msgstr "Prethodni kontakti" #: application/views/qso/index.php:6 msgid "times worked before" -msgstr "" +msgstr "vremena prethodno rađenih" #: application/views/qso/index.php:7 msgid "Not worked before" -msgstr "" +msgstr "Nije rađen prethodno" #: application/views/qso/index.php:20 msgid "LIVE" -msgstr "" +msgstr "UŽIVO" #: application/views/qso/index.php:20 msgid "POST" -msgstr "" +msgstr "OBJAVI" #: application/views/qso/index.php:33 msgid "Sat" -msgstr "" +msgstr "Satelit" #: application/views/qso/index.php:48 msgid "Add Band/Mode to Favs" -msgstr "" +msgstr "Dodaj opseg/vrstu rada u omiljene" #: application/views/qso/index.php:69 msgid "Time on" -msgstr "" +msgstr "Vreme početka" #: application/views/qso/index.php:81 msgid "Time off" -msgstr "" +msgstr "Vreme završetka" #: application/views/qso/index.php:124 msgid "Search DXCluster for latest Spot" -msgstr "" +msgstr "Pretražite najnovije spotove na DX Klasteru" #: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:149 -#: application/views/station_profile/edit.php:211 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 #: application/views/user/edit.php:583 application/views/view_log/qso.php:282 #: application/views/view_log/qso.php:549 msgid "IOTA Reference" -msgstr "" +msgstr "IOTA Referenca" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:165 -#: application/views/station_profile/edit.php:239 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 #: application/views/user/edit.php:587 application/views/view_log/qso.php:289 #: application/views/view_log/qso.php:556 msgid "SOTA Reference" -msgstr "" +msgstr "SOTA referenca" #: application/views/qso/index.php:322 application/views/view_log/qso.php:98 msgid "Frequency (RX)" -msgstr "" +msgstr "Frekvencija (RX)" #: application/views/qso/index.php:327 msgid "Band (RX)" -msgstr "" +msgstr "Opseg (RX)" #: application/views/qso/index.php:458 msgid "For example: GM/NS-001." -msgstr "" +msgstr "Na primer: YU/ZS-001." #: application/views/qso/index.php:471 msgid "For example: DLFF-0069." -msgstr "" +msgstr "Na primer: YUFF-0024." #: application/views/qso/index.php:484 msgid "For example: PA-0150. Multiple values allowed." -msgstr "" +msgstr "Na primer: PA-0150. Dozvoljeno je uneti višestruke unose." #: application/views/qso/index.php:496 msgid "For example: GMA" -msgstr "" +msgstr "Na primer: GMA" #: application/views/qso/index.php:502 msgid "For example: DA/NW-357" -msgstr "" +msgstr "Na primer: DA/NW-357" #: application/views/qso/index.php:510 msgid "For example: Q03" -msgstr "" +msgstr "Na primer: Q03" #: application/views/qso/index.php:519 application/views/view_log/qso.php:207 msgid "Satellite Name" -msgstr "" +msgstr "Ime satelita" #: application/views/qso/index.php:527 application/views/view_log/qso.php:214 msgid "Satellite Mode" -msgstr "" +msgstr "Vrsta rada satelita" #: application/views/qso/index.php:538 msgid "" "Note content is used within Wavelog only and is not exported to other " "services." msgstr "" +"Sadržaj napomene koristi se samo unutar Waveloga i neće biti izvezen ka " +"drugim servisima." #: application/views/qso/index.php:604 msgid "Reset to Default" -msgstr "" +msgstr "Reset na podrazumevano" #: application/views/qso/index.php:645 msgid "Winkey" -msgstr "" +msgstr "Winkey" #: application/views/qso/index.php:647 msgid "Connect" +msgstr "Povežite" + +#: application/views/qso/index.php:663 +msgid "Send" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:673 msgid "Suggestions" -msgstr "" +msgstr "Predlozi" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:680 msgid "Profile Picture" -msgstr "" +msgstr "Profilna slika" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:704 msgid "Max. 5 previous contacts are shown" -msgstr "" +msgstr "Prikazano je maksimalno 5 veza" #: application/views/radio/index.php:16 msgid "Active Radios" -msgstr "" +msgstr "Aktivni radio-uređaji" #: application/views/radio/index.php:19 msgid "Below is a list of active radios that are connected to Wavelog." -msgstr "" +msgstr "Ispod je lista aktivnih radio-uređaja koji su povezani na Wavelog." #: application/views/radio/index.php:20 msgid "" "If you haven't connected any radios yet, see the API page to generate API " "keys." msgstr "" +"Ako do sada niste spojili nijedan radio, pogledajte API stranicu za " +"generaisanje API ključeva." #: application/views/radio/index.php:22 application/views/search/filter.php:69 #, php-format msgid "You can find out how to use the %s in the wiki." -msgstr "" +msgstr "Možete naći kako se ovo koristi %s na wikiju." #: application/views/radio/index.php:22 msgid "radio functions" -msgstr "" +msgstr "funkcije radija" #: application/views/radio/index.php:27 msgid "Please wait..." @@ -8801,107 +9133,107 @@ msgstr "Molimo sačekajte..." #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" -msgstr "" +msgstr "Ime satelita" #: application/views/satellite/create.php:25 msgid "The name of the Satellite" -msgstr "" +msgstr "Ime satelita" #: application/views/satellite/create.php:28 #: application/views/satellite/edit.php:12 #: application/views/satellite/index.php:22 msgid "Export Name" -msgstr "" +msgstr "Ime datoteke za izvoz" #: application/views/satellite/create.php:30 #: application/views/satellite/edit.php:14 msgid "If external services uses another name for the satellite, like LoTW" -msgstr "" +msgstr "Ako spoljni servis, poput LoTW, koristi drugo ime za satelite" #: application/views/satellite/create.php:37 #: application/views/satellite/edit.php:21 msgid "Enter which orbit the satellite has (LEO, MEO, GEO)" -msgstr "" +msgstr "Unesite koju orbitu ima satelit (LEO, MEO, GEO)" #: application/views/satellite/create.php:40 msgid "Satellite mode name" -msgstr "" +msgstr "Naziv satelitskog moda" #: application/views/satellite/create.php:42 msgid "Enter satellite mode" -msgstr "" +msgstr "Unesite satelitski mod" #: application/views/satellite/create.php:47 #: application/views/satellite/edit.php:35 msgid "Uplink mode" -msgstr "" +msgstr "Mod uplinka" #: application/views/satellite/create.php:49 msgid "Enter modulation used for uplink" -msgstr "" +msgstr "Unesite vrstu modulacije korišćenu za uplink" #: application/views/satellite/create.php:52 #: application/views/satellite/edit.php:36 msgid "Uplink frequency" -msgstr "" +msgstr "Uplink frekvencija" #: application/views/satellite/create.php:54 msgid "Enter frequency (in Hz) used for uplink" -msgstr "" +msgstr "Unesite frekvenciju (u Hz) koja se koristi za uplink" #: application/views/satellite/create.php:59 #: application/views/satellite/edit.php:37 msgid "Downlink mode" -msgstr "" +msgstr "Downlink mod" #: application/views/satellite/create.php:61 msgid "Enter modulation used for downlink" -msgstr "" +msgstr "Unesite vrstu modulacije korišćenu za downlink" #: application/views/satellite/create.php:64 #: application/views/satellite/edit.php:38 msgid "Downlink frequency" -msgstr "" +msgstr "Frekvencija downlinka" #: application/views/satellite/create.php:66 msgid "Enter frequency (in Hz) used for downlink" -msgstr "" +msgstr "Unesite frekvenciju (u Hz) koja se koristi za downlink" #: application/views/satellite/edit.php:9 msgid "Name of the Satellite" -msgstr "" +msgstr "Ime satelita" #: application/views/satellite/edit.php:25 msgid "Save satellite" -msgstr "" +msgstr "Sačuvajte satelit" #: application/views/satellite/edit.php:59 msgid "Add satellite mode" -msgstr "" +msgstr "Dodajte satelitski mod" #: application/views/satellite/index.php:15 msgid "Add a satellite" -msgstr "" +msgstr "Dodajte satelit" #: application/views/satellite/pass.php:2 msgid "Satellite passes" -msgstr "" +msgstr "Preleti satelita" #: application/views/satellite/pass.php:8 msgid "Min. Satellite Elevation" -msgstr "" +msgstr "Min. elevacija satelita" #: application/views/satellite/pass.php:12 msgid "Min. Azimuth" -msgstr "" +msgstr "Min. azimut" #: application/views/satellite/pass.php:20 msgid "Max. Azimuth" -msgstr "" +msgstr "Maks. azimut" #: application/views/satellite/pass.php:32 msgid "Altitude (meters)" -msgstr "" +msgstr "Visina (metri)" #: application/views/satellite/pass.php:36 application/views/user/edit.php:179 msgid "Timezone" @@ -8909,48 +9241,48 @@ msgstr "Vremenska zona" #: application/views/satellite/pass.php:479 msgid "Min. time" -msgstr "" +msgstr "Min. vreme" #: application/views/satellite/pass.php:487 msgid "Max. time" -msgstr "" +msgstr "Max. vreme" #: application/views/satellite/pass.php:504 msgid "Load predictions" -msgstr "" +msgstr "Učitaj predviđanja" #: application/views/satellite/passtable.php:6 msgid "AOS Time" -msgstr "" +msgstr "Vreme AOS" #: application/views/satellite/passtable.php:7 #: application/views/sattimers/index.php:46 msgid "Duration" -msgstr "" +msgstr "Trajanje" #: application/views/satellite/passtable.php:8 msgid "AOS Az" -msgstr "" +msgstr "AOS Az" #: application/views/satellite/passtable.php:9 msgid "AOS El" -msgstr "" +msgstr "AOS El" #: application/views/satellite/passtable.php:10 msgid "Max El" -msgstr "" +msgstr "Max El" #: application/views/satellite/passtable.php:11 msgid "LOS Time" -msgstr "" +msgstr "Vreme LOS" #: application/views/satellite/passtable.php:12 msgid "LOS Az" -msgstr "" +msgstr "LOS Az" #: application/views/satellite/passtable.php:13 msgid "LOS El" -msgstr "" +msgstr "LOS El" #: application/views/sattimers/index.php:15 #, php-format @@ -8958,167 +9290,173 @@ msgid "" "This data comes from %s and is calculated for the current stationlocation " "grid %s." msgstr "" +"Ovi podaci dolaze od %s i srečunati su za polje trenutne stanične lokacije " +"%s." #: application/views/sattimers/index.php:40 msgid "Time(d)-Out" -msgstr "" +msgstr "Vreme-Isteklo" #: application/views/sattimers/index.php:43 #: application/views/sattimers/index.php:44 msgid "Azimuth" -msgstr "" +msgstr "Azimut" #: application/views/sattimers/index.php:45 msgid "Max Elevation" -msgstr "" +msgstr "Max Elevacija" #: application/views/search/cqzones.php:5 #: application/views/search/lotw_unconfirmed.php:5 #: application/views/search/main.php:5 msgid "Ready to find a QSO?" -msgstr "" +msgstr "Da li ste spremni da pronađete QSO?" #: application/views/search/cqzones.php:15 #: application/views/search/filter.php:4 application/views/search/filter.php:23 #: application/views/search/lotw_unconfirmed.php:15 #: application/views/search/main.php:15 msgid "Advanced Search" -msgstr "" +msgstr "Napredna pretraga" #: application/views/search/cqzones.php:18 #: application/views/search/filter.php:26 #: application/views/search/lotw_unconfirmed.php:18 #: application/views/search/main.php:18 msgid "Incorrect CQ Zones" -msgstr "" +msgstr "Netačna CQ zona" #: application/views/search/cqzones.php:21 #: application/views/search/filter.php:29 #: application/views/search/lotw_unconfirmed.php:21 #: application/views/search/main.php:21 msgid "QSOs unconfirmed on LoTW" -msgstr "" +msgstr "QSOi nepotvrđeni na LoTW" #: application/views/search/cqzones.php:28 msgid "Station location:" -msgstr "" +msgstr "Stanična lokacija:" #: application/views/search/cqzones_result.php:3 msgid "" "The following QSOs were found to have an incorrect CQ zone that this DXCC " "normally has:" msgstr "" +"Za sledeće veze ustanovljeno je da imaju netačno unešenu CQ zonu u kojoj se " +"ova DXCC nalazi:" #: application/views/search/cqzones_result.php:14 msgid "DXCC CQ Zone" -msgstr "" +msgstr "DXCC CQ zona" #: application/views/search/cqzones_result.php:51 msgid "No incorrect CQ Zones were found." -msgstr "" +msgstr "Nisu pronađene netačne CQ zone." #: application/views/search/filter.php:43 msgid "Save query" -msgstr "" +msgstr "Sačuvajte upit" #: application/views/search/filter.php:50 msgid "Stored queries" -msgstr "" +msgstr "Sačuvani upiti" #: application/views/search/filter.php:69 msgid "search filter functions" -msgstr "" +msgstr "funkcije filtera za pretragu" #: application/views/search/filter.php:79 msgid "Search Results" -msgstr "" +msgstr "Rezultati pretrage" #: application/views/search/lotw_unconfirmed.php:26 msgid "" "The search displays QSOs which are unconfirmed on LoTW, but the callsign " "worked has uploaded to LoTW after your QSO date." msgstr "" +"Pretraga prikazuje veze koje su nepotvrđene na LoTW, a ovi pozivni znakovi " +"su bili aktivni na LoTW nakon datuma vaše veze." #: application/views/search/lotw_unconfirmed.php:29 msgid "Station location" -msgstr "" +msgstr "Stanična lokacija" #: application/views/search/lotw_unconfirmed_result.php:10 msgid "Last LoTW upload" -msgstr "" +msgstr "Poslednje LoTW učitavanje" #: application/views/search/lotw_unconfirmed_result.php:41 msgid "No QSOs with outstanding LoTW upload were found." -msgstr "" +msgstr "No QSOs with outstanding LoTW upload were found." #: application/views/search/main.php:28 msgid "Callsign / Gridsquare" -msgstr "" +msgstr "Pozivni znak / polje" #: application/views/search/result.php:2 #, php-format msgid "Results for %s" -msgstr "" +msgstr "Rezultati za %s" #: application/views/search/result.php:4 #, php-format msgid "Sorry, but we didn't find any past QSOs with %s" -msgstr "" +msgstr "Žao nam je, nismo pronašli veze sa %s" #: application/views/search/result.php:6 #, php-format msgid "Callbook Search for %s" -msgstr "" +msgstr "Pretraga callbooka za %s" #: application/views/search/result_search.php:9 #: application/views/statistics/custom_result.php:90 #: application/views/widgets/qsos.php:31 msgid "Rcvd" -msgstr "" +msgstr "Rcvd" #: application/views/search/search_result_ajax.php:409 #: application/views/view_log/partial/log.php:140 #: application/views/view_log/partial/log_ajax.php:323 msgid "Mark QSL Sent (Bureau)" -msgstr "" +msgstr "Označi QSL kao poslatu (biro)" #: application/views/search/search_result_ajax.php:410 #: application/views/view_log/partial/log.php:141 #: application/views/view_log/partial/log_ajax.php:324 msgid "Mark QSL Sent (Direct)" -msgstr "" +msgstr "Označi QSL kao poslatu (direktno)" #: application/views/search/search_result_ajax.php:417 #: application/views/view_log/partial/log.php:148 #: application/views/view_log/partial/log_ajax.php:333 #: application/views/view_log/qso.php:652 msgid "Mark QSL Received (Bureau)" -msgstr "" +msgstr "Označi QSL kao primljenu (biro)" #: application/views/search/search_result_ajax.php:418 #: application/views/view_log/partial/log.php:149 #: application/views/view_log/partial/log_ajax.php:334 #: application/views/view_log/qso.php:654 msgid "Mark QSL Received (Direct)" -msgstr "" +msgstr "Označi QSL kao primljenu (direktno)" #: application/views/search/search_result_ajax.php:419 #: application/views/view_log/partial/log.php:150 #: application/views/view_log/partial/log_ajax.php:325 msgid "Mark QSL Card Requested" -msgstr "" +msgstr "Označi QSL kartu kao zahtevanu" #: application/views/search/search_result_ajax.php:420 #: application/views/view_log/partial/log.php:151 #: application/views/view_log/partial/log_ajax.php:326 #: application/views/view_log/qso.php:666 msgid "Mark QSL Card Not Required" -msgstr "" +msgstr "Označi QSL kartu kao nepotrebnu" #: application/views/search/search_result_ajax.php:426 #: application/views/view_log/partial/log_ajax.php:340 msgid "Lookup on QRZ.com" -msgstr "" +msgstr "Pogledajte na QRZ.com" #: application/views/search/search_result_ajax.php:428 #: application/views/view_log/partial/log_ajax.php:342 @@ -9345,116 +9683,116 @@ msgid "" "%sthis article%s of our Wiki." msgstr "" -#: application/views/station_profile/create.php:51 -#: application/views/station_profile/edit.php:60 +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:52 -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:62 +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:62 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:59 -#: application/views/station_profile/edit.php:68 +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 msgid "Station callsign. For example: 4W7EST/P" msgstr "" -#: application/views/station_profile/create.php:63 -#: application/views/station_profile/edit.php:72 +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 msgid "Station Power (W)" msgstr "" -#: application/views/station_profile/create.php:65 -#: application/views/station_profile/edit.php:74 +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" -#: application/views/station_profile/create.php:68 -#: application/views/station_profile/edit.php:89 +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 msgid "Station DXCC" msgstr "" -#: application/views/station_profile/create.php:71 -#: application/views/station_profile/edit.php:92 +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 msgctxt "DXCC selection" msgid "None" msgstr "" -#: application/views/station_profile/create.php:78 -#: application/views/station_profile/edit.php:105 +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:83 -#: application/views/station_profile/edit.php:111 +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 msgid "Station City" msgstr "" -#: application/views/station_profile/create.php:85 -#: application/views/station_profile/edit.php:113 +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:94 -#: application/views/station_profile/edit.php:125 -msgid "Station state. Applies to certain countries only." -msgstr "" - -#: application/views/station_profile/create.php:99 -#: application/views/station_profile/edit.php:130 -msgid "Station County" -msgstr "" - #: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:132 +msgid "Station state. Applies to certain countries only." +msgstr "" + +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 +msgid "Station County" +msgstr "" + +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/edit.php:158 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:158 -#: application/views/station_profile/edit.php:175 -#: application/views/station_profile/edit.php:199 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 msgid "click here" msgstr "" -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/edit.php:175 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:135 -#: application/views/station_profile/edit.php:187 -#: application/views/station_profile/edit.php:190 +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 msgid "Station Gridsquare" msgstr "" -#: application/views/station_profile/create.php:140 -#: application/views/station_profile/edit.php:195 +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 msgid "Get Gridsquare" msgstr "" -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:199 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 #, php-format msgctxt "uses 'click here'" msgid "" @@ -9462,247 +9800,247 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:145 -#: application/views/station_profile/edit.php:200 +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" -#: application/views/station_profile/create.php:160 -#: application/views/station_profile/edit.php:225 +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 msgid "Station IOTA reference. For example: EU-005" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:226 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:226 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:241 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:241 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:254 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:254 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:267 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:267 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 #, php-format msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:183 -#: application/views/station_profile/edit.php:280 +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 msgid "Signature Name" msgstr "" -#: application/views/station_profile/create.php:185 -#: application/views/station_profile/edit.php:282 +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 msgid "Station Signature (e.g. GMA).." msgstr "" -#: application/views/station_profile/create.php:189 -#: application/views/station_profile/edit.php:286 +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 msgid "Signature Information" msgstr "" -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/edit.php:288 +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "" -#: application/views/station_profile/create.php:195 -#: application/views/station_profile/edit.php:301 +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:197 -#: application/views/station_profile/edit.php:303 +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "" -#: application/views/station_profile/create.php:201 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 msgid "Default QSLMSG" msgstr "" -#: application/views/station_profile/create.php:204 -#: application/views/station_profile/edit.php:309 +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "" -#: application/views/station_profile/create.php:207 -#: application/views/station_profile/edit.php:348 +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:212 -#: application/views/station_profile/edit.php:353 +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " "Clublog. If this is deactivated on it's own please check if the Call is " "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:215 -#: application/views/station_profile/edit.php:356 +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 msgid "ClubLog Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:224 -#: application/views/station_profile/edit.php:372 -msgid "HRDLog.net Username" -msgstr "" - -#: application/views/station_profile/create.php:226 -#: application/views/station_profile/edit.php:374 -msgid "" -"The username you are registered with at HRDlog.net (usually your callsign)." -msgstr "" - -#: application/views/station_profile/create.php:229 -#: application/views/station_profile/edit.php:377 -msgid "HRDLog.net API Key" -msgstr "" - #: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:379 +msgid "HRDLog.net Username" +msgstr "" + +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 +msgid "" +"The username you are registered with at HRDlog.net (usually your callsign)." +msgstr "" + +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 +msgid "HRDLog.net API Key" +msgstr "" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:379 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:234 -#: application/views/station_profile/edit.php:382 +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 msgid "HRDLog.net Logbook Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:243 -#: application/views/station_profile/edit.php:317 +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 msgid "Subscription Required" msgstr "" -#: application/views/station_profile/create.php:248 +#: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:326 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:326 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/edit.php:330 +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 msgid "QRZ.com Logbook Upload" msgstr "" -#: application/views/station_profile/create.php:260 -#: application/views/station_profile/edit.php:333 +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:268 -#: application/views/station_profile/edit.php:398 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:400 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:400 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:273 -#: application/views/station_profile/edit.php:403 +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 msgid "QO-100 Dx Club Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:283 -#: application/views/station_profile/edit.php:421 -msgid "OQRS Enabled" -msgstr "" - #: application/views/station_profile/create.php:290 #: application/views/station_profile/edit.php:428 +msgid "OQRS Enabled" +msgstr "" + +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 msgid "OQRS Email alert" msgstr "" -#: application/views/station_profile/create.php:295 -#: application/views/station_profile/edit.php:433 +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 msgid "Make sure email is set up under admin and global options." msgstr "" -#: application/views/station_profile/create.php:298 -#: application/views/station_profile/edit.php:436 +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 msgid "OQRS Text" msgstr "" -#: application/views/station_profile/create.php:300 -#: application/views/station_profile/edit.php:438 +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 msgid "Some info you want to add regarding QSL'ing." msgstr "" -#: application/views/station_profile/edit.php:142 +#: application/views/station_profile/edit.php:149 msgid "Zones" msgstr "" -#: application/views/station_profile/edit.php:277 +#: application/views/station_profile/edit.php:284 msgid "Signature" msgstr "" @@ -10127,7 +10465,7 @@ msgstr "" msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:42 application/views/update/index.php:62 msgid "Re-check all QSOs in logbook" msgstr "" @@ -10153,6 +10491,13 @@ msgstr "" msgid "Update distance data" msgstr "" +#: application/views/update/index.php:61 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" + #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "" @@ -10564,6 +10909,122 @@ msgstr "" msgid "You can reset your password here." msgstr "" +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "" + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "" + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "" + #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" msgstr "" @@ -10589,84 +11050,6 @@ msgstr "" msgid "Keep me logged in" msgstr "" -#: application/views/user/main.php:2 -msgid "Do you really want to send this user a password-reset link?" -msgstr "" - -#: application/views/user/main.php:6 -msgid "Please Wait ..." -msgstr "" - -#: application/views/user/main.php:9 -msgid "Password-reset e-mail sent to user:" -msgstr "" - -#: application/views/user/main.php:30 -msgid "User List" -msgstr "" - -#: application/views/user/main.php:33 -msgid "Wavelog needs at least one user configured in order to operate." -msgstr "" - -#: application/views/user/main.php:34 -msgid "" -"Users can be assigned roles which give them different permissions, such as " -"adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "" - -#: application/views/user/main.php:35 -msgid "" -"The currently logged-in user is displayed at the upper-right of each page." -msgstr "" - -#: application/views/user/main.php:36 -msgid "" -"With the password reset button, you can send a user an email containing a " -"link to reset their password. To achieve this, ensure that the email " -"settings in the global options are configured correctly." -msgstr "" - -#: application/views/user/main.php:38 -msgid "Create user" -msgstr "" - -#: application/views/user/main.php:39 -msgid "Refresh List" -msgstr "" - -#: application/views/user/main.php:49 -msgid "Type" -msgstr "" - -#: application/views/user/main.php:50 -msgid "Last seen" -msgstr "" - -#: application/views/user/main.php:53 -msgid "Password Reset" -msgstr "" - -#: application/views/user/main.php:79 -msgid "Never" -msgstr "" - -#: application/views/user/main.php:83 -msgid "Locations" -msgstr "" - -#: application/views/user/main.php:85 -msgid "Logbooks" -msgstr "" - -#: application/views/user/main.php:87 -msgid "Last QSO:" -msgstr "" - -#: application/views/user/main.php:89 -msgid "No QSOs in Log" -msgstr "" - #: application/views/user/profile.php:19 msgid "Level" msgstr "" @@ -10916,6 +11299,9 @@ msgstr "" msgid "Submit Request" msgstr "" +#~ msgid "Winkey Macros" +#~ msgstr "Winkey makroi" + #~ msgid "User logged in" #~ msgstr "Korisnik je prijavljen" diff --git a/application/locale/sv_SE/LC_MESSAGES/messages.po b/application/locale/sv_SE/LC_MESSAGES/messages.po index 4c153a8e4..332a7783b 100644 --- a/application/locale/sv_SE/LC_MESSAGES/messages.po +++ b/application/locale/sv_SE/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-17 17:16+0000\n" +"POT-Creation-Date: 2024-08-21 15:06+0000\n" "PO-Revision-Date: 2024-08-17 10:48+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Swedish \n" "Language-Team: Turkish \n" +"POT-Creation-Date: 2024-08-21 15:06+0000\n" +"PO-Revision-Date: 2024-08-20 05:18+0000\n" +"Last-Translator: Karuru \n" "Language-Team: Chinese (Simplified) \n" "Language: zh_CN\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 5.6.2\n" +"X-Generator: Weblate 5.7\n" #: application/controllers/Accumulated.php:13 #: application/controllers/Activators.php:13 @@ -49,8 +49,8 @@ msgstr "" #: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 #: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 #: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:348 -#: application/controllers/Eqsl.php:411 application/controllers/Eqsl.php:427 -#: application/controllers/Eqsl.php:487 application/controllers/Hamsat.php:13 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 application/controllers/Hamsat.php:13 #: application/controllers/Kmlexport.php:18 #: application/controllers/Kmlexport.php:33 #: application/controllers/Labels.php:26 @@ -58,17 +58,17 @@ msgstr "" #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 #: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 #: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 -#: application/controllers/Lotw.php:712 application/controllers/Lotw.php:820 -#: application/controllers/Lotw.php:828 application/controllers/Mode.php:15 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 #: application/controllers/Notes.php:10 application/controllers/Options.php:15 #: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 #: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 #: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 #: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 #: application/controllers/Qso.php:9 application/controllers/Qso.php:19 -#: application/controllers/Qso.php:176 application/controllers/Qso.php:279 -#: application/controllers/Qso.php:299 application/controllers/Qso.php:308 -#: application/controllers/Qso.php:603 application/controllers/Radio.php:259 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:599 application/controllers/Radio.php:259 #: application/controllers/Radio.php:285 application/controllers/Radio.php:301 #: application/controllers/Satellite.php:15 #: application/controllers/Sattimers.php:9 @@ -82,13 +82,14 @@ msgstr "" #: application/controllers/Update.php:24 application/controllers/Update.php:273 #: application/controllers/Update.php:284 #: application/controllers/Update.php:295 -#: application/controllers/Update.php:306 application/controllers/User.php:8 -#: application/controllers/User.php:21 application/controllers/User.php:206 -#: application/controllers/User.php:207 application/controllers/User.php:719 -#: application/controllers/User.php:738 application/controllers/User.php:1021 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 #: application/controllers/User_options.php:9 msgid "You're not allowed to do that!" -msgstr "" +msgstr "不能这么做!" #: application/controllers/Accumulated.php:21 #: application/views/interface_assets/header.php:150 @@ -106,7 +107,7 @@ msgstr "激活的网格" #: application/controllers/Gridmap.php:31 #: application/controllers/Visitor.php:374 #: application/views/activators/index.php:100 -#: application/views/interface_assets/footer.php:42 +#: application/views/interface_assets/footer.php:43 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "网格" @@ -220,7 +221,7 @@ msgid "Key Invalid - either not found or disabled" msgstr "Key 无效(未找到或已禁用)" #: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 +#: application/views/lotw_views/index.php:91 msgid "Valid" msgstr "有效" @@ -275,7 +276,7 @@ msgstr "DOK" #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 -#: application/views/lotw_views/index.php:40 +#: application/views/lotw_views/index.php:36 #: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 #: application/views/search/cqzones_result.php:15 #: application/views/search/result.php:27 @@ -315,7 +316,7 @@ msgstr "日志视图" #: application/controllers/Awards.php:454 msgid " and band " -msgstr "" +msgstr " 并且波段为 " #: application/controllers/Awards.php:457 msgid " and sat " @@ -354,7 +355,7 @@ msgstr " 并且 " #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:336 #: application/views/search/search_result_ajax.php:9 -#: application/views/station_profile/edit.php:236 +#: application/views/station_profile/edit.php:243 #: application/views/user/edit.php:234 application/views/user/edit.php:256 #: application/views/user/edit.php:278 application/views/user/edit.php:300 #: application/views/user/edit.php:323 @@ -375,7 +376,7 @@ msgstr "SOTA" #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:341 #: application/views/search/search_result_ajax.php:10 -#: application/views/station_profile/edit.php:249 +#: application/views/station_profile/edit.php:256 #: application/views/user/edit.php:235 application/views/user/edit.php:257 #: application/views/user/edit.php:279 application/views/user/edit.php:301 #: application/views/user/edit.php:324 @@ -395,7 +396,7 @@ msgstr "WWFF" #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:346 #: application/views/search/search_result_ajax.php:11 -#: application/views/station_profile/edit.php:262 +#: application/views/station_profile/edit.php:269 #: application/views/user/edit.php:236 application/views/user/edit.php:258 #: application/views/user/edit.php:280 application/views/user/edit.php:302 #: application/views/user/edit.php:325 @@ -667,19 +668,19 @@ msgstr "eQSL 导入信息" msgid "eQSL QSO Upload" msgstr "eQSL QSO 上传" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:416 msgid "eQSL Tools" msgstr "eQSL 工具" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid " / Errors: " msgstr " / 错误: " -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid "Successfully downloaded: " msgstr "下载成功: " -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:472 msgid "eQSL Card Image Download" msgstr "eQSL 卡片图像下载" @@ -946,7 +947,7 @@ msgstr "LoTW" #: application/views/search/result_search.php:16 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:273 -#: application/views/station_profile/edit.php:298 +#: application/views/station_profile/edit.php:305 #: application/views/timeline/index.php:64 application/views/user/edit.php:564 #: application/views/user/edit.php:667 application/views/user/edit.php:731 msgid "eQSL" @@ -960,7 +961,7 @@ msgstr "eQSL" #: application/views/awards/waja/index.php:71 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 -#: application/views/station_profile/edit.php:345 +#: application/views/station_profile/edit.php:352 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 #: application/views/view_log/partial/log_ajax.php:83 @@ -1135,7 +1136,7 @@ msgstr "DXCC 实体" #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:318 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:208 +#: application/views/station_profile/edit.php:215 #: application/views/timeline/index.php:202 application/views/user/edit.php:233 #: application/views/user/edit.php:255 application/views/user/edit.php:277 #: application/views/user/edit.php:299 application/views/user/edit.php:322 @@ -1359,15 +1360,15 @@ msgstr "操作员" #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:675 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:159 #: application/views/lookup/index.php:31 -#: application/views/lotw_views/index.php:56 +#: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 #: 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:98 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 #: application/views/stationsetup/stationsetup.php:150 @@ -1397,23 +1398,50 @@ msgstr "快速查找" msgid "Logbook of the World" msgstr "Logbook of the World(LoTW)" -#: application/controllers/Lotw.php:610 +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "" + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "" + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "" + +#: application/controllers/Lotw.php:413 +#, php-format +msgid "" +"Found no certificate in file %s. If the filename contains 'key-only' this is " +"typically a certificate request which has not been processed by LoTW yet." +msgstr "" + +#: application/controllers/Lotw.php:617 msgid "LoTW ADIF Information" msgstr "LoTW ADIF 信息" -#: application/controllers/Lotw.php:718 +#: application/controllers/Lotw.php:725 msgid "LoTW ADIF Import" msgstr "LoTW ADIF 导入" -#: application/controllers/Lotw.php:830 +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "" + +#: application/controllers/Lotw.php:837 msgid "LoTW .TQ8 Upload" msgstr "LoTW .TQ8 导入" -#: application/controllers/Lotw.php:927 application/controllers/Lotw.php:932 +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "" + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 msgid "LoTW .TQ8 Sent" msgstr "LoTW .TQ8 已发送" -#: application/controllers/Lotw.php:939 +#: application/controllers/Lotw.php:946 msgid "LoTW .TQ8 Not Sent" msgstr "LoTW .TQ8 未发送" @@ -1578,6 +1606,41 @@ msgstr "OQRS" msgid "QRB Calculator" msgstr "QRB 计算器" +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "" + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "" + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "" + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "" + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" + #: application/controllers/Qrz.php:173 #: application/views/interface_assets/header.php:426 msgid "QRZ Logbook" @@ -1632,7 +1695,7 @@ msgstr "时间戳" #: application/controllers/Radio.php:52 #: application/views/logbookadvanced/index.php:527 -#: application/views/lotw_views/index.php:47 +#: application/views/lotw_views/index.php:43 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:171 #: application/views/stationsetup/exportmapoptions.php:5 @@ -1658,13 +1721,13 @@ msgstr "默认(点击释放)" #: application/controllers/Radio.php:105 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2329 -#: application/views/interface_assets/footer.php:2347 -#: application/views/interface_assets/footer.php:2368 -#: application/views/interface_assets/footer.php:2386 +#: application/views/interface_assets/footer.php:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:519 -#: application/views/lotw_views/index.php:118 +#: application/views/lotw_views/index.php:114 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 #: application/views/qslcard/index.php:65 @@ -1674,7 +1737,7 @@ msgstr "默认(点击释放)" #: application/views/stationsetup/stationsetup.php:33 #: application/views/stationsetup/stationsetup.php:137 #: application/views/stationsetup/stationsetup.php:192 -#: application/views/themes/index.php:107 application/views/user/main.php:54 +#: application/views/themes/index.php:107 application/views/user/index.php:57 #: application/views/view_log/qso.php:613 msgid "Delete" msgstr "删除" @@ -1715,6 +1778,7 @@ msgstr "卫星时钟" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 +#: application/views/interface_assets/footer.php:37 #: application/views/interface_assets/header.php:336 #: application/views/interface_assets/header.php:343 #: application/views/logbookadvanced/index.php:516 @@ -1765,8 +1829,8 @@ msgstr "修改台站地址: " #: application/views/logbookadvanced/edit.php:18 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:447 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 @@ -1831,8 +1895,8 @@ msgstr "错误,链接已正在使用!" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:259 -#: application/views/station_profile/edit.php:332 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 msgid "Disabled" @@ -1887,15 +1951,15 @@ msgstr "启用" #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:28 #: application/views/stationsetup/stationsetup.php:161 -#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/user/index.php:90 application/views/user/index.php:92 msgid "QSO" msgstr "QSO" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 -#: application/views/interface_assets/footer.php:538 -#: application/views/interface_assets/footer.php:547 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 #: application/views/labels/index.php:47 application/views/labels/index.php:83 #: application/views/logbookadvanced/index.php:518 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 @@ -1903,7 +1967,7 @@ msgstr "QSO" #: application/views/search/stored_queries.php:21 #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 -#: application/views/themes/index.php:104 application/views/user/main.php:52 +#: application/views/themes/index.php:104 application/views/user/index.php:52 msgid "Edit" msgstr "编辑" @@ -2017,54 +2081,54 @@ msgstr "DXCC 例外:" msgid "Dxcc Prefixes:" msgstr "DXCC 前缀:" -#: application/controllers/User.php:12 +#: application/controllers/User.php:36 #: application/views/interface_assets/header.php:268 msgid "User Accounts" msgstr "用户账户" -#: application/controllers/User.php:52 +#: application/controllers/User.php:76 msgid "Add User" msgstr "添加用户" -#: application/controllers/User.php:166 +#: application/controllers/User.php:190 msgid "Users" msgstr "用户" -#: application/controllers/User.php:240 application/controllers/User.php:673 +#: application/controllers/User.php:264 application/controllers/User.php:697 msgid "Edit User" msgstr "编辑用户" -#: application/controllers/User.php:665 application/controllers/User.php:668 -#: application/views/user/main.php:3 application/views/user/main.php:46 +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 msgid "User" msgstr "用户" -#: application/controllers/User.php:665 application/controllers/User.php:668 +#: application/controllers/User.php:689 application/controllers/User.php:692 msgid "edited" msgstr "已编辑" -#: application/controllers/User.php:722 +#: application/controllers/User.php:746 msgid "Profile" msgstr "个人资料" -#: application/controllers/User.php:779 +#: application/controllers/User.php:803 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." msgstr "恭喜您,Wavelog 已成功安装,您可以登录并开始通联了。" -#: application/controllers/User.php:843 application/controllers/User.php:853 +#: application/controllers/User.php:867 application/controllers/User.php:877 msgid "Login failed. Try again." msgstr "登录失败,请重试。" -#: application/controllers/User.php:860 +#: application/controllers/User.php:884 #: application/views/interface_assets/header.php:356 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:88 msgid "Login" msgstr "登录" -#: application/controllers/User.php:898 +#: application/controllers/User.php:922 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " @@ -2073,38 +2137,66 @@ msgstr "" "抱歉,本站正处于维护模式。如果本消息持续显示,请联系本站管理员。当前只允许管" "理员登入。" -#: application/controllers/User.php:901 +#: application/controllers/User.php:925 msgid "Incorrect username or password!" msgstr "用户名或密码错误!" -#: application/controllers/User.php:918 +#: application/controllers/User.php:942 #, php-format msgid "User %s logged out." msgstr "用户 '%s' 已登出。" -#: application/controllers/User.php:932 +#: application/controllers/User.php:956 msgid "Password Reset is disabled on the Demo!" msgstr "在测试实例上,密码重置已禁用!" -#: application/controllers/User.php:945 +#: application/controllers/User.php:969 msgid "Forgot Password" msgstr "忘记密码" -#: application/controllers/User.php:995 application/views/user/main.php:8 +#: application/controllers/User.php:1019 application/views/user/index.php:8 msgid "Email settings are incorrect." msgstr "邮件配置有误。" -#: application/controllers/User.php:999 application/controllers/User.php:1004 +#: application/controllers/User.php:1023 application/controllers/User.php:1028 msgid "Password Reset Processed." msgstr "密码重置已处理。" -#: application/controllers/User.php:1106 +#: application/controllers/User.php:1129 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "重置密码" +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "" + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "" + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "" + #: application/controllers/Visitor.php:50 #: application/controllers/Visitor.php:79 #: application/controllers/Visitor.php:142 @@ -2153,80 +2245,80 @@ msgstr "未找到启用 OQRS 的台站。" #: application/libraries/Subdivisions.php:31 msgctxt "Division Name (States in various countries)." msgid "Province" -msgstr "" +msgstr "省份" #: application/libraries/Subdivisions.php:39 msgctxt "Division Name (States in various countries)." msgid "Oblast" -msgstr "" +msgstr "自治州" #: application/libraries/Subdivisions.php:41 #: application/libraries/Subdivisions.php:47 msgctxt "Division Name (States in various countries)." msgid "Region" -msgstr "" +msgstr "区" #: application/libraries/Subdivisions.php:45 msgctxt "Division Name (States in various countries)." msgid "Department" -msgstr "" +msgstr "省" #: application/libraries/Subdivisions.php:49 msgctxt "Division Name (States in various countries)." msgid "Municipality" -msgstr "" +msgstr "市" #: application/libraries/Subdivisions.php:51 msgctxt "Division Name (States in various countries)." msgid "Federal State" -msgstr "" +msgstr "联邦州" #: application/libraries/Subdivisions.php:56 #: application/libraries/Subdivisions.php:94 msgctxt "Division Name (States in various countries)." msgid "County" -msgstr "" +msgstr "县" #: application/libraries/Subdivisions.php:60 #: application/libraries/Subdivisions.php:85 msgctxt "Division Name (States in various countries)." msgid "District" -msgstr "" +msgstr "区" #: application/libraries/Subdivisions.php:62 msgctxt "Division Name (States in various countries)." msgid "Canton" -msgstr "" +msgstr "州" #: application/libraries/Subdivisions.php:64 msgctxt "Division Name (States in various countries)." msgid "US State" -msgstr "" +msgstr "美国州" #: application/libraries/Subdivisions.php:67 msgctxt "Division Name (States in various countries)." msgid "Prefecture" -msgstr "" +msgstr "县" #: application/libraries/Subdivisions.php:69 msgctxt "Division Name (States in various countries)." msgid "State" -msgstr "" +msgstr "州" #: application/libraries/Subdivisions.php:78 msgctxt "Division Name (States in various countries)." msgid "US County" -msgstr "" +msgstr "美国州" #: application/libraries/Subdivisions.php:90 msgctxt "Division Name (States in various countries)." msgid "DME" -msgstr "" +msgstr "DME" #: application/libraries/Subdivisions.php:92 msgctxt "Division Name (States in various countries)." msgid "City / Ku / Gun" -msgstr "" +msgstr "郡" #: application/models/Eqslmethods_model.php:281 msgid "Your eQSL username and/or password is incorrect." @@ -2390,8 +2482,8 @@ msgstr "差异" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1441 -#: application/views/interface_assets/footer.php:1580 +#: application/views/interface_assets/footer.php:1446 +#: application/views/interface_assets/footer.php:1585 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 @@ -2623,7 +2715,7 @@ msgstr "未找到!" #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 -#: application/views/lotw_views/index.php:39 +#: application/views/lotw_views/index.php:35 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 #: application/views/qslcard/index.php:28 @@ -2638,10 +2730,10 @@ msgstr "未找到!" #: application/views/search/lotw_unconfirmed_result.php:6 #: application/views/search/result.php:11 #: application/views/simplefle/index.php:142 -#: application/views/station_profile/edit.php:56 +#: application/views/station_profile/edit.php:63 #: application/views/stationsetup/linkedlocations.php:17 -#: application/views/user/edit.php:123 application/views/user/main.php:4 -#: application/views/user/main.php:47 application/views/user/profile.php:29 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 #: application/views/view_log/qso.php:82 application/views/view_log/qso.php:507 msgid "Callsign" msgstr "呼号" @@ -2897,8 +2989,8 @@ msgstr "总是在导入时使用登录的呼号作为操作者名称" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 -#: application/views/interface_assets/footer.php:498 -#: application/views/interface_assets/footer.php:2125 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 msgid "DANGER" msgstr "警告" @@ -2912,6 +3004,7 @@ msgid "" "If selected, Wavelog will try to import %sall%s QSO's of the ADIF, " "regardless if they match to the chosen station-location." msgstr "" +"如果选中,Wavelog 会从 ADIF 中尝试导入 %s全部的%s QSO,忽略是否匹配台站地址。" #: application/views/adif/import.php:158 application/views/adif/import.php:273 #: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 @@ -3073,8 +3166,8 @@ msgstr "如用于描述用途的名字。" #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 -#: application/views/interface_assets/footer.php:44 -#: application/views/interface_assets/footer.php:533 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -3082,8 +3175,6 @@ msgstr "如用于描述用途的名字。" #: application/views/options/oqrs.php:63 #: application/views/options/radios.php:45 #: application/views/options/version_dialog.php:78 -#: application/views/qso/components/winkeysettings.php:90 -#: application/views/qso/components/winkeysettings_results.php:90 #: application/views/satellite/create.php:70 #: application/views/simplefle/index.php:22 msgid "Save" @@ -3164,7 +3255,7 @@ msgid "Permissions" msgstr "权限" #: application/views/api/help.php:31 application/views/cron/index.php:52 -#: application/views/lotw_views/index.php:45 +#: application/views/lotw_views/index.php:41 #: application/views/mode/index.php:31 #: application/views/oqrs/showrequests.php:91 #: application/views/sattimers/index.php:39 @@ -3331,8 +3422,8 @@ msgstr "总计" #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:106 -#: application/views/station_profile/edit.php:146 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 #: application/views/timeline/index.php:231 #: application/views/timeplotter/index.php:44 msgid "CQ Zone" @@ -3341,7 +3432,7 @@ msgstr "CQ 分区" #: application/views/awards/cq/index.php:4 #: application/views/awards/itu/index.php:4 msgid "Hover over a zone" -msgstr "" +msgstr "鼠标停留到一个分区" #: application/views/awards/cq/index.php:20 msgid "CQ Magazine WAZ Award" @@ -3379,7 +3470,7 @@ msgstr "CQ 杂志 WAZ 奖状" #: application/views/bandmap/list.php:73 #: application/views/dashboard/index.php:245 #: application/views/dashboard/index.php:363 -#: application/views/interface_assets/footer.php:39 +#: application/views/interface_assets/footer.php:40 #: application/views/visitor/index.php:266 msgid "Confirmed" msgstr "已确认" @@ -3445,7 +3536,7 @@ msgstr "显示 QSL 分类下的 QSO" #: application/views/awards/cq/index.php:56 #: application/views/awards/itu/index.php:56 -#: application/views/interface_assets/footer.php:2104 +#: application/views/interface_assets/footer.php:2109 #: application/views/qso/edit_ajax.php:378 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -3801,11 +3892,11 @@ msgstr "该地图仅显示了 SAT 上有效的 QSO。" #: application/views/awards/helvetia/index.php:3 msgctxt "Switzerland Canton" msgid "Canton" -msgstr "" +msgstr "州" #: application/views/awards/helvetia/index.php:4 msgid "Hover over a canton" -msgstr "" +msgstr "鼠标停留到一个州" #: application/views/awards/helvetia/index.php:20 msgid "HELVETIA 26 | SWITZERLAND AWARD" @@ -3939,8 +4030,8 @@ msgstr "已删除" #: application/views/logbookadvanced/index.php:251 #: application/views/logbookadvanced/index.php:594 #: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:120 -#: application/views/station_profile/edit.php:163 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 msgid "ITU Zone" msgstr "ITU 分区" @@ -4054,8 +4145,8 @@ msgstr "欲了解更多关于可用奖项和类别的信息,请访问%s。" #: application/views/awards/pota/index.php:31 #: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:177 -#: application/views/station_profile/edit.php:265 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 #: application/views/user/edit.php:595 application/views/view_log/qso.php:303 #: application/views/view_log/qso.php:570 msgid "POTA Reference(s)" @@ -4064,11 +4155,11 @@ msgstr "POTA 编号" #: application/views/awards/rac/index.php:3 msgctxt "Canada Province" msgid "Province" -msgstr "" +msgstr "省" #: application/views/awards/rac/index.php:4 msgid "Hover over a province" -msgstr "" +msgstr "鼠标停留到一个省" #: application/views/awards/rac/index.php:106 msgid "Show RAC Map" @@ -4232,11 +4323,11 @@ msgstr "WAB分区" #: application/views/awards/waja/index.php:3 msgctxt "Japan Prefecture" msgid "Prefecture" -msgstr "" +msgstr "县" #: application/views/awards/waja/index.php:4 msgid "Hover over a prefecture" -msgstr "" +msgstr "鼠标停留到一个县" #: application/views/awards/waja/index.php:19 msgid "WAJA - Worked All Japan prefectures Award" @@ -4272,11 +4363,11 @@ msgstr "县" #: application/views/awards/was/index.php:3 msgctxt "USA State" msgid "State" -msgstr "" +msgstr "州" #: application/views/awards/was/index.php:4 msgid "Hover over a state" -msgstr "" +msgstr "鼠标停留到一个州" #: application/views/awards/was/index.php:20 msgid "WAS Award" @@ -4339,8 +4430,8 @@ msgstr "" #: application/views/awards/wwff/index.php:31 #: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:171 -#: application/views/station_profile/edit.php:252 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 #: application/views/user/edit.php:591 application/views/view_log/qso.php:296 #: application/views/view_log/qso.php:563 msgid "WWFF Reference" @@ -4529,9 +4620,7 @@ msgstr "创建波段" #: application/views/bands/index.php:152 #: application/views/contesting/add.php:74 -#: application/views/interface_assets/footer.php:43 -#: application/views/qso/components/winkeysettings.php:91 -#: application/views/qso/components/winkeysettings_results.php:91 +#: application/views/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4855,8 +4944,8 @@ msgid "Name of Contest in ADIF-specification" msgstr "竞赛 在 ADIF 中的名称" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:48 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "创建" @@ -5000,8 +5089,8 @@ msgstr "标识符" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:261 -#: application/views/station_profile/edit.php:334 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 msgid "Enabled" @@ -5057,6 +5146,7 @@ msgstr "输入自定义的 Cron 语句" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "取消" @@ -5584,7 +5674,7 @@ msgstr "" #: application/views/debug/index.php:47 #, php-format msgid "Check this wiki article %shere%s for more information." -msgstr "" +msgstr "请查看 %swiki%s 以获得帮助。" #: application/views/debug/index.php:48 #, php-format @@ -5730,7 +5820,7 @@ msgstr "已安装" msgid "Not Installed" msgstr "未安装" -#: application/views/debug/index.php:283 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:649 msgid "Settings" msgstr "设置" @@ -5787,7 +5877,7 @@ msgstr "DXCC 更新(ClubLog)" #: application/views/debug/index.php:506 application/views/debug/index.php:511 #: application/views/debug/index.php:516 application/views/debug/index.php:521 #: application/views/debug/index.php:526 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/edit.php:49 msgid "Update" msgstr "更新" @@ -5828,8 +5918,8 @@ msgstr[0] "数据库中共有%d个没有台站信息(位置)的QSO" #: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:57 -#: application/views/station_profile/edit.php:66 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" @@ -5949,7 +6039,7 @@ msgstr "QSO 数据" #: application/views/distances/index.php:9 #, php-format msgid "contacts were plotted.%s Your furthest contact was with" -msgstr "" +msgstr "个通联已绘制。 %s 您最远的通联是和" #: application/views/distances/index.php:10 msgid "in gridsquare" @@ -6166,10 +6256,10 @@ msgid "QSL Date" msgstr "QSL 日期" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2330 -#: application/views/interface_assets/footer.php:2348 -#: application/views/interface_assets/footer.php:2369 -#: application/views/interface_assets/footer.php:2387 +#: application/views/interface_assets/footer.php:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -6297,109 +6387,117 @@ msgstr "注意" msgid "OK" msgstr "确认" -#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/footer.php:38 msgid "Warning! Are you sure you want delete QSO with " msgstr "警告!您确定要删除 QSO 和 " -#: application/views/interface_assets/footer.php:38 +#: application/views/interface_assets/footer.php:39 #: application/views/user/edit.php:493 msgid "Colors" msgstr "颜色" -#: application/views/interface_assets/footer.php:40 +#: application/views/interface_assets/footer.php:41 msgid "Worked not confirmed" msgstr "已通联未确认" -#: application/views/interface_assets/footer.php:41 +#: application/views/interface_assets/footer.php:42 msgid "Not worked" msgstr "未通联" -#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:46 #: application/views/qso/index.php:601 #: application/views/visitor/layout/footer.php:245 msgid "Clear" msgstr "清除" -#: application/views/interface_assets/footer.php:46 +#: application/views/interface_assets/footer.php:47 #: application/views/qso/edit_ajax.php:211 #: application/views/qso/edit_ajax.php:512 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "传播方式不被 LoTW 支持,LoTW 字段已禁用。" -#: application/views/interface_assets/footer.php:47 +#: application/views/interface_assets/footer.php:48 msgid "No states for this DXCC available" +msgstr "该 DXCC 无满足的州" + +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" msgstr "" -#: application/views/interface_assets/footer.php:129 +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "" + +#: application/views/interface_assets/footer.php:132 #: application/views/interface_assets/header.php:434 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "版本信息" -#: application/views/interface_assets/footer.php:395 +#: application/views/interface_assets/footer.php:398 msgid "Description:" msgstr "说明:" -#: application/views/interface_assets/footer.php:398 +#: application/views/interface_assets/footer.php:401 msgid "Query description" msgstr "查询说明" -#: application/views/interface_assets/footer.php:414 +#: application/views/interface_assets/footer.php:417 msgid "Your query has been saved!" msgstr "查询已储存!" -#: application/views/interface_assets/footer.php:416 +#: application/views/interface_assets/footer.php:419 #: application/views/search/filter.php:46 msgid "Edit queries" msgstr "编辑查询" -#: application/views/interface_assets/footer.php:418 +#: application/views/interface_assets/footer.php:421 msgid "Stored queries:" msgstr "存储的查询:" -#: application/views/interface_assets/footer.php:423 +#: application/views/interface_assets/footer.php:426 #: application/views/search/filter.php:60 msgid "Run Query" msgstr "执行查询" -#: application/views/interface_assets/footer.php:435 -#: application/views/interface_assets/footer.php:564 -#: application/views/interface_assets/footer.php:628 +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 msgid "Stored Queries" msgstr "存储的查询" -#: application/views/interface_assets/footer.php:440 -#: application/views/interface_assets/footer.php:633 +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 msgid "You need to make a query before you search!" msgstr "您需要创建查询来进行搜索!" -#: application/views/interface_assets/footer.php:461 -#: application/views/interface_assets/footer.php:592 +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 #: application/views/search/filter.php:79 msgid "Export to ADIF" msgstr "导出 ADIF" -#: application/views/interface_assets/footer.php:499 +#: application/views/interface_assets/footer.php:502 msgid "Warning! Are you sure you want delete this stored query?" msgstr "警告!确定要删除存储的查询?" -#: application/views/interface_assets/footer.php:513 +#: application/views/interface_assets/footer.php:516 msgid "The stored query has been deleted!" msgstr "存储的查询已删除!" -#: application/views/interface_assets/footer.php:522 +#: application/views/interface_assets/footer.php:525 msgid "The stored query could not be deleted. Please try again!" msgstr "无法删除存储的查询,请重试!" -#: application/views/interface_assets/footer.php:548 +#: application/views/interface_assets/footer.php:551 msgid "The query description has been updated!" msgstr "查询说明已更新!" -#: application/views/interface_assets/footer.php:552 +#: application/views/interface_assets/footer.php:555 msgid "Something went wrong with the save. Please try again!" msgstr "存储出错,请重试!" -#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:678 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -6408,75 +6506,75 @@ msgstr "" "请稍等,您选择的 DXCC 已经失效,请确认最新的 DXCC 实体,如果您十分确认,请忽" "略该警告。" -#: application/views/interface_assets/footer.php:725 +#: application/views/interface_assets/footer.php:730 #: application/views/logbookadvanced/index.php:511 msgid "Callsign: " msgstr "呼号: " -#: application/views/interface_assets/footer.php:726 +#: application/views/interface_assets/footer.php:731 msgid "Count: " -msgstr "" +msgstr "总数: " -#: application/views/interface_assets/footer.php:727 +#: application/views/interface_assets/footer.php:732 msgid "Grids: " -msgstr "" +msgstr "网格: " -#: application/views/interface_assets/footer.php:1162 +#: application/views/interface_assets/footer.php:1167 #, php-format msgid "You're not logged in. Please %slogin%s" -msgstr "" +msgstr "请前往 %s这里%s 登录" -#: application/views/interface_assets/footer.php:1368 -#: application/views/interface_assets/footer.php:1372 -#: application/views/interface_assets/footer.php:1375 -#: application/views/interface_assets/footer.php:1512 -#: application/views/interface_assets/footer.php:1516 -#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 msgid "grid square" msgstr "网格" -#: application/views/interface_assets/footer.php:1375 -#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 msgid "Total count" msgstr "总数" -#: application/views/interface_assets/footer.php:2106 +#: application/views/interface_assets/footer.php:2111 msgid "QSL Card for " msgstr "QSL 卡片至 " -#: application/views/interface_assets/footer.php:2126 +#: application/views/interface_assets/footer.php:2131 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "警告!确定要删除这个 QSL 卡片吗?" -#: application/views/interface_assets/footer.php:2166 +#: application/views/interface_assets/footer.php:2171 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "电子 QSL 卡片" -#: application/views/interface_assets/footer.php:2168 +#: application/views/interface_assets/footer.php:2173 msgid "eQSL Card for " msgstr "eQSL 卡片至 " -#: application/views/interface_assets/footer.php:2341 -#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 #: application/views/view_log/qso.php:604 msgid "QSL image file" msgstr "QSL 图片文件" -#: application/views/interface_assets/footer.php:2360 +#: application/views/interface_assets/footer.php:2365 msgid "Front QSL Card:" msgstr "QSL 卡片正面:" -#: application/views/interface_assets/footer.php:2398 +#: application/views/interface_assets/footer.php:2403 msgid "Back QSL Card:" msgstr "QSL 卡片背面:" -#: application/views/interface_assets/footer.php:2409 -#: application/views/interface_assets/footer.php:2434 +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 msgid "Add additional QSOs to a QSL Card" msgstr "向一张卡片添加额外的 QSO" -#: application/views/interface_assets/footer.php:2445 +#: application/views/interface_assets/footer.php:2450 msgid "Something went wrong. Please try again!" msgstr "出现了错误,请重试!" @@ -7066,18 +7164,18 @@ msgstr "QSL 发送" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:209 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:236 -#: application/views/station_profile/create.php:275 -#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 #: application/views/station_profile/create.php:293 -#: application/views/station_profile/edit.php:350 -#: application/views/station_profile/edit.php:358 -#: application/views/station_profile/edit.php:384 -#: application/views/station_profile/edit.php:405 -#: application/views/station_profile/edit.php:423 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 #: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 #: application/views/user/edit.php:347 application/views/user/edit.php:358 #: application/views/user/edit.php:369 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:399 @@ -7104,18 +7202,18 @@ msgstr "是" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:210 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:237 -#: application/views/station_profile/create.php:276 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/create.php:292 -#: application/views/station_profile/edit.php:351 -#: application/views/station_profile/edit.php:359 -#: application/views/station_profile/edit.php:385 -#: application/views/station_profile/edit.php:406 -#: application/views/station_profile/edit.php:424 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 #: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 #: application/views/user/edit.php:348 application/views/user/edit.php:359 #: application/views/user/edit.php:370 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:400 @@ -7437,7 +7535,7 @@ msgstr "每页结果数" #: application/views/logbookadvanced/index.php:505 #: application/views/qso/index.php:272 -#: application/views/station_profile/edit.php:85 +#: application/views/station_profile/edit.php:92 msgid "Location" msgstr "位置" @@ -7598,58 +7696,58 @@ msgstr "可用证书" msgid "Upload Certificate" msgstr "上传证书" -#: application/views/lotw_views/index.php:41 +#: application/views/lotw_views/index.php:37 msgid "QSO Start Date" msgstr "QSO 起始日期" -#: application/views/lotw_views/index.php:42 +#: application/views/lotw_views/index.php:38 msgid "QSO End Date" msgstr "QSO 结束日期" -#: application/views/lotw_views/index.php:43 +#: application/views/lotw_views/index.php:39 msgid "Date Created" msgstr "创建日期" -#: application/views/lotw_views/index.php:44 +#: application/views/lotw_views/index.php:40 msgid "Date Expires" msgstr "过期日期" -#: application/views/lotw_views/index.php:46 +#: application/views/lotw_views/index.php:42 #: application/views/view_log/qso.php:404 msgid "Last Upload" msgstr "最后一次上传是" -#: application/views/lotw_views/index.php:91 +#: application/views/lotw_views/index.php:87 msgid "Expired" msgstr "过期" -#: application/views/lotw_views/index.php:93 +#: application/views/lotw_views/index.php:89 msgid "Expiring" msgstr "即将到期" -#: application/views/lotw_views/index.php:105 +#: application/views/lotw_views/index.php:101 #, php-format msgid "Last success: %s" msgstr "上次成功:%s" -#: application/views/lotw_views/index.php:108 +#: application/views/lotw_views/index.php:104 #, php-format msgid "Last fail: %s" msgstr "上次失败:%s" -#: application/views/lotw_views/index.php:114 +#: application/views/lotw_views/index.php:110 msgid "Not Synced" msgstr "未同步" -#: application/views/lotw_views/index.php:129 +#: application/views/lotw_views/index.php:125 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "你需要上传 LoTW p12 证书以使用该功能。" -#: application/views/lotw_views/index.php:144 +#: application/views/lotw_views/index.php:140 msgid "Information" msgstr "信息" -#: application/views/lotw_views/index.php:149 +#: application/views/lotw_views/index.php:145 msgid "Manual Sync" msgstr "手动同步" @@ -8164,7 +8262,7 @@ msgstr "有额外的信息需要记录吗?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:64 #: application/views/oqrs/showrequests.php:87 -#: application/views/user/main.php:48 application/views/user/profile.php:24 +#: application/views/user/index.php:48 application/views/user/profile.php:24 msgid "E-mail" msgstr "电子邮件" @@ -8489,35 +8587,20 @@ msgid "" "queue." msgstr "没有找到附加的 QSL 信息,可能它们已经被添加到打印队列中。" -#: application/views/qso/components/winkeysettings.php:7 -#: application/views/qso/components/winkeysettings_results.php:7 -msgid "Winkey Macros" -msgstr "Winkey 宏" - -#: application/views/qso/components/winkeysettings.php:12 -#: application/views/qso/components/winkeysettings.php:28 -#: application/views/qso/components/winkeysettings.php:44 -#: application/views/qso/components/winkeysettings.php:60 -#: application/views/qso/components/winkeysettings.php:76 -#: application/views/qso/components/winkeysettings_results.php:12 -#: application/views/qso/components/winkeysettings_results.php:28 -#: application/views/qso/components/winkeysettings_results.php:44 -#: application/views/qso/components/winkeysettings_results.php:60 -#: application/views/qso/components/winkeysettings_results.php:76 -#, php-format -msgid "Function %d - Name" -msgstr "Function %d - Name" - +#: application/views/qso/components/winkeysettings.php:3 #: application/views/qso/components/winkeysettings.php:19 #: application/views/qso/components/winkeysettings.php:35 #: application/views/qso/components/winkeysettings.php:51 #: application/views/qso/components/winkeysettings.php:67 -#: application/views/qso/components/winkeysettings.php:83 -#: application/views/qso/components/winkeysettings_results.php:19 -#: application/views/qso/components/winkeysettings_results.php:35 -#: application/views/qso/components/winkeysettings_results.php:51 -#: application/views/qso/components/winkeysettings_results.php:67 -#: application/views/qso/components/winkeysettings_results.php:83 +#, php-format +msgid "Function %d - Name" +msgstr "Function %d - Name" + +#: application/views/qso/components/winkeysettings.php:10 +#: application/views/qso/components/winkeysettings.php:26 +#: application/views/qso/components/winkeysettings.php:42 +#: application/views/qso/components/winkeysettings.php:58 +#: application/views/qso/components/winkeysettings.php:74 #, php-format msgid "Function %d - Macro" msgstr "Function %d - Macro" @@ -8637,7 +8720,7 @@ msgstr "保存" msgid "TimeOff is less than TimeOn" msgstr "结束时间小于开始时间" -#: application/views/qso/index.php:5 application/views/qso/index.php:694 +#: application/views/qso/index.php:5 application/views/qso/index.php:690 msgid "Previous Contacts" msgstr "先前通联" @@ -8678,16 +8761,16 @@ msgid "Search DXCluster for latest Spot" msgstr "在 DXCluster 搜索最新 Spot" #: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:149 -#: application/views/station_profile/edit.php:211 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 #: application/views/user/edit.php:583 application/views/view_log/qso.php:282 #: application/views/view_log/qso.php:549 msgid "IOTA Reference" msgstr "IOTA 编号" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:165 -#: application/views/station_profile/edit.php:239 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 #: application/views/user/edit.php:587 application/views/view_log/qso.php:289 #: application/views/view_log/qso.php:556 msgid "SOTA Reference" @@ -8751,15 +8834,19 @@ msgstr "Winkey" msgid "Connect" msgstr "连接" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:673 msgid "Suggestions" msgstr "建议" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:680 msgid "Profile Picture" msgstr "操作员照片" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:704 msgid "Max. 5 previous contacts are shown" msgstr "最多五次先前通联将会被显示" @@ -9253,7 +9340,7 @@ msgstr "位置" msgid "" "If you did operate from a new location, first create a new %sStation " "Location%s" -msgstr "" +msgstr "如果您确实在一个新地址通联,请在 %s台站地址%s 创建一个新的" #: application/views/simplefle/index.php:112 msgid "e.g. OK2CQR" @@ -9274,7 +9361,7 @@ msgstr "对方网格" #: application/views/simplefle/index.php:160 #, php-format msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" -msgstr "" +msgstr "标识符可为其中任意:%sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" #: application/views/simplefle/index.php:167 msgid "Reload QSO List" @@ -9359,118 +9446,118 @@ msgstr "" msgid "" "A full summary of all commands and the necessary syntax can be found in " "%sthis article%s of our Wiki." -msgstr "" +msgstr "所有可用的指令或语法可在 %sWiki%s 查看。" -#: application/views/station_profile/create.php:51 -#: application/views/station_profile/edit.php:60 +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 msgid "Location Name" msgstr "地址名称" -#: application/views/station_profile/create.php:52 -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:62 +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "基地台 QTH" -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:62 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "台站的地址简写,例如 %s" -#: application/views/station_profile/create.php:59 -#: application/views/station_profile/edit.php:68 +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 msgid "Station callsign. For example: 4W7EST/P" msgstr "电台呼号,例如:4W7EST/P" -#: application/views/station_profile/create.php:63 -#: application/views/station_profile/edit.php:72 +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 msgid "Station Power (W)" msgstr "电台功率 (W)" -#: application/views/station_profile/create.php:65 -#: application/views/station_profile/edit.php:74 +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 msgid "Default station power in Watt. Overwritten by CAT." msgstr "默认电台功率 (W),如有 CAT 信息会覆盖此设置。" -#: application/views/station_profile/create.php:68 -#: application/views/station_profile/edit.php:89 +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 msgid "Station DXCC" msgstr "台站 DXCC" -#: application/views/station_profile/create.php:71 -#: application/views/station_profile/edit.php:92 +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 msgctxt "DXCC selection" msgid "None" msgstr "无" -#: application/views/station_profile/create.php:78 -#: application/views/station_profile/edit.php:105 +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 msgid "Station DXCC entity. For example: Bolivia" msgstr "台站的 DXCC 实体名称,如 China" -#: application/views/station_profile/create.php:83 -#: application/views/station_profile/edit.php:111 +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 msgid "Station City" msgstr "台站城市" -#: application/views/station_profile/create.php:85 -#: application/views/station_profile/edit.php:113 +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 msgid "Station city. For example: Oslo" msgstr "台站坐落城市,如 Beijing" -#: application/views/station_profile/create.php:94 -#: application/views/station_profile/edit.php:125 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:132 msgid "Station state. Applies to certain countries only." msgstr "台站州(特定国家可用)。" -#: application/views/station_profile/create.php:99 -#: application/views/station_profile/edit.php:130 +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 msgid "Station County" msgstr "台站县" -#: application/views/station_profile/create.php:101 -#: application/views/station_profile/edit.php:132 +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "台站的县 (仅用于 美国本土/阿拉斯加/夏威夷)。" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/edit.php:158 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "如果您不清楚自己的 CQ 分区,在这里查看 %s!" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:158 -#: application/views/station_profile/edit.php:175 -#: application/views/station_profile/edit.php:199 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 msgid "click here" msgstr "点击此处" -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/edit.php:175 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "如果您不清楚自己的 ITU 分区,在这里查看 %s!" -#: application/views/station_profile/create.php:135 -#: application/views/station_profile/edit.php:187 -#: application/views/station_profile/edit.php:190 +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 msgid "Station Gridsquare" msgstr "台站网格地址" -#: application/views/station_profile/create.php:140 -#: application/views/station_profile/edit.php:195 +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 msgid "Get Gridsquare" msgstr "获取网格座标" -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:199 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 #, php-format msgctxt "uses 'click here'" msgid "" @@ -9478,59 +9565,59 @@ msgid "" "then %s!" msgstr "台站的网格,如 HM54AP,如果不知道自己的网格,在这里查询 %s!" -#: application/views/station_profile/create.php:145 -#: application/views/station_profile/edit.php:200 +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" "如果处在网格线上,请输入逗号分隔的多个网格,例如:IO77,IO78,IO87,IO88。" -#: application/views/station_profile/create.php:160 -#: application/views/station_profile/edit.php:225 +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 msgid "Station IOTA reference. For example: EU-005" msgstr "台站 IOTA 标识代码,例如 EU-005" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:226 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 msgid "IOTA World website" msgstr "IOTA World 网站" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:226 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 #, php-format msgid "You can look up IOTA references at the %s." msgstr "您可以在 %s 查看 IOTA 目录。" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:241 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 msgid "SOTA Maps website" msgstr "SOTA Maps 网站" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:241 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "台站的 SOTA 标识符,您可在这里 %s 查看 SOTA 标识符。" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:254 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 msgid "GMA Map website" msgstr "GMA Map 网站" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:254 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "台站的 WWFF 标识符,您可在这里 %s 查看 WWFF 标识符。" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:267 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 msgid "POTA Map website" msgstr "POTA Map 网站" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:267 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 #, php-format msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " @@ -9538,56 +9625,56 @@ msgid "" msgstr "" "台站的 POTA 标识符,可以使用多个值(逗号分隔),可在 %s 查看 POTA 目录。" -#: application/views/station_profile/create.php:183 -#: application/views/station_profile/edit.php:280 +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 msgid "Signature Name" msgstr "签名名称" -#: application/views/station_profile/create.php:185 -#: application/views/station_profile/edit.php:282 +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 msgid "Station Signature (e.g. GMA).." msgstr "台站签名 (例如 TU 73)。" -#: application/views/station_profile/create.php:189 -#: application/views/station_profile/edit.php:286 +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 msgid "Signature Information" msgstr "签名信息" -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/edit.php:288 +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "签名信息 (例如 DA/NW-357)." -#: application/views/station_profile/create.php:195 -#: application/views/station_profile/edit.php:301 +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "eQSL QTH Nickname" -#: application/views/station_profile/create.php:197 -#: application/views/station_profile/edit.php:303 +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "eQSL 中设置过的 QTH Nichname" -#: application/views/station_profile/create.php:201 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 msgid "Default QSLMSG" msgstr "默认 QSL 消息" -#: application/views/station_profile/create.php:204 -#: application/views/station_profile/edit.php:309 +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "定义一个发送给对方的 QSO 默认消息(适用于 eQSL 等)。" -#: application/views/station_profile/create.php:207 -#: application/views/station_profile/edit.php:348 +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 msgid "Ignore Clublog Upload" msgstr "忽略 Clublog 上传" -#: application/views/station_profile/create.php:212 -#: application/views/station_profile/edit.php:353 +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " "Clublog. If this is deactivated on it's own please check if the Call is " @@ -9596,133 +9683,133 @@ msgstr "" "如启用,台站下的 QSO 不会上传至 Clublog。如这个选项自动关闭了,请查看 " "Clublog 上的呼号是否配置正确" -#: application/views/station_profile/create.php:215 -#: application/views/station_profile/edit.php:356 +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 msgid "ClubLog Realtime Upload" msgstr "ClubLog 实时上传" -#: application/views/station_profile/create.php:224 -#: application/views/station_profile/edit.php:372 +#: application/views/station_profile/create.php:231 +#: application/views/station_profile/edit.php:379 msgid "HRDLog.net Username" msgstr "HRDLog.net 用户名" -#: application/views/station_profile/create.php:226 -#: application/views/station_profile/edit.php:374 +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "HRDlog.net 注册用户名,通常为呼号。" -#: application/views/station_profile/create.php:229 -#: application/views/station_profile/edit.php:377 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 msgid "HRDLog.net API Key" msgstr "HRDLog.net API Key" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:379 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "为 %s 创建 API Code" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:379 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 msgid "HRDLog.net Userprofile page" msgstr "HRDLog.net 个人页面" -#: application/views/station_profile/create.php:234 -#: application/views/station_profile/edit.php:382 +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 msgid "HRDLog.net Logbook Realtime Upload" msgstr "HRDLog.net Logbook 实时上传" -#: application/views/station_profile/create.php:243 -#: application/views/station_profile/edit.php:317 +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 msgid "Subscription Required" msgstr "需要付费订阅" -#: application/views/station_profile/create.php:248 +#: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "QRZ.com Logbook API Key" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "Test API-Key" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:326 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "在 %s 这里查看 API Key" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:326 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 msgid "the QRZ.com Logbook settings page" msgstr "QRZ.com Logbook 设置页面" -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/edit.php:330 +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 msgid "QRZ.com Logbook Upload" msgstr "QRZ.com Logbook 上传" -#: application/views/station_profile/create.php:260 -#: application/views/station_profile/edit.php:333 +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 msgid "Realtime" msgstr "实时" -#: application/views/station_profile/create.php:268 -#: application/views/station_profile/edit.php:398 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "QO-100 Dx Club API Key" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:400 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "为 %s 创建 API Key" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:400 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 msgid "QO-100 Dx Club's profile page" msgstr "QO-100 Dx Club 个人页面" -#: application/views/station_profile/create.php:273 -#: application/views/station_profile/edit.php:403 +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 msgid "QO-100 Dx Club Realtime Upload" msgstr "QO-100 Dx Club 实时上传" -#: application/views/station_profile/create.php:283 -#: application/views/station_profile/edit.php:421 +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 msgid "OQRS Enabled" msgstr "OQRS 已启用" -#: application/views/station_profile/create.php:290 -#: application/views/station_profile/edit.php:428 +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 msgid "OQRS Email alert" msgstr "OQRS 邮件提醒" -#: application/views/station_profile/create.php:295 -#: application/views/station_profile/edit.php:433 +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 msgid "Make sure email is set up under admin and global options." msgstr "确认邮件功能在站点设置中已配置。" -#: application/views/station_profile/create.php:298 -#: application/views/station_profile/edit.php:436 +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 msgid "OQRS Text" msgstr "OQRS 文本" -#: application/views/station_profile/create.php:300 -#: application/views/station_profile/edit.php:438 +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 msgid "Some info you want to add regarding QSL'ing." msgstr "QSL 的额外信息。" -#: application/views/station_profile/edit.php:142 +#: application/views/station_profile/edit.php:149 msgid "Zones" msgstr "分区" -#: application/views/station_profile/edit.php:277 +#: application/views/station_profile/edit.php:284 msgid "Signature" msgstr "签名" @@ -10078,6 +10165,8 @@ msgid "" "Click here on 'Add a Theme' and type in the necessary data. Type in the " "filenames for the logos %swithout%s the file extension '.png'" msgstr "" +"在这里添加主题,Logo 文件请输入 png 文件的文件名部分( %s不带有%s 后缀 '." +"png')" #: application/views/themes/index.php:83 msgid "Foldername" @@ -10161,7 +10250,7 @@ msgstr "" msgid "Check QSOs missing DXCC data" msgstr "检查缺失 DXCC 数据的 QSO" -#: application/views/update/index.php:42 +#: application/views/update/index.php:42 application/views/update/index.php:62 msgid "Re-check all QSOs in logbook" msgstr "重新检查所有 QSO" @@ -10187,6 +10276,15 @@ msgstr "您可在此更新缺失距离信息的 QSO。" msgid "Update distance data" msgstr "更新距离数据" +#: application/views/update/index.php:61 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" +"使用如下按钮更新全部 QSO 的距离信息,如果 QSO 数量过多这将会花费一些时间,请" +"耐心等待。" + #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "删除用户账户" @@ -10604,6 +10702,126 @@ msgstr "忘记密码?" msgid "You can reset your password here." msgstr "在此处重置密码。" +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "确认发送重置密码链接?" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "请稍等…" + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "密码重置邮件已发送至:" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "用户列表" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "Wavelog 至少需要配置一个用户才能运行。" + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" +"用户可以被分配不同的角色,这些角色赋予他们不同的权限,例如向日志簿添加 QSO 和" +"访问 Wavelog API。" + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "页面右上方显示当前登录的用户。" + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" +"通过'重置密码'按钮,你可以向用户发送一封带有重置密码链接的邮件。您需要确保全" +"局设定中的邮件设置配置正确。" + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "创建用户" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "刷新列表" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "用户类型" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "上次出现" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "重置密码" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "从不" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "地点" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "日志簿" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "上个 QSO:" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "日志为空" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "" + #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" msgstr "维护模式" @@ -10619,7 +10837,7 @@ msgstr "本 Demo 每日 UTC 02:00 重置。" #: application/views/user/login.php:60 #, php-format msgid "More Information about Wavelog on %sGithub%s." -msgstr "" +msgstr "更多信息请访问 Wavelog 官方 %sGithub%s 地址。" #: application/views/user/login.php:79 msgid "Forgot your password?" @@ -10629,88 +10847,6 @@ msgstr "忘记密码?" msgid "Keep me logged in" msgstr "保持登录" -#: application/views/user/main.php:2 -msgid "Do you really want to send this user a password-reset link?" -msgstr "确认发送重置密码链接?" - -#: application/views/user/main.php:6 -msgid "Please Wait ..." -msgstr "请稍等…" - -#: application/views/user/main.php:9 -msgid "Password-reset e-mail sent to user:" -msgstr "密码重置邮件已发送至:" - -#: application/views/user/main.php:30 -msgid "User List" -msgstr "用户列表" - -#: application/views/user/main.php:33 -msgid "Wavelog needs at least one user configured in order to operate." -msgstr "Wavelog 至少需要配置一个用户才能运行。" - -#: application/views/user/main.php:34 -msgid "" -"Users can be assigned roles which give them different permissions, such as " -"adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "" -"用户可以被分配不同的角色,这些角色赋予他们不同的权限,例如向日志簿添加 QSO 和" -"访问 Wavelog API。" - -#: application/views/user/main.php:35 -msgid "" -"The currently logged-in user is displayed at the upper-right of each page." -msgstr "页面右上方显示当前登录的用户。" - -#: application/views/user/main.php:36 -msgid "" -"With the password reset button, you can send a user an email containing a " -"link to reset their password. To achieve this, ensure that the email " -"settings in the global options are configured correctly." -msgstr "" -"通过'重置密码'按钮,你可以向用户发送一封带有重置密码链接的邮件。您需要确保全" -"局设定中的邮件设置配置正确。" - -#: application/views/user/main.php:38 -msgid "Create user" -msgstr "创建用户" - -#: application/views/user/main.php:39 -msgid "Refresh List" -msgstr "刷新列表" - -#: application/views/user/main.php:49 -msgid "Type" -msgstr "用户类型" - -#: application/views/user/main.php:50 -msgid "Last seen" -msgstr "上次出现" - -#: application/views/user/main.php:53 -msgid "Password Reset" -msgstr "重置密码" - -#: application/views/user/main.php:79 -msgid "Never" -msgstr "从不" - -#: application/views/user/main.php:83 -msgid "Locations" -msgstr "地点" - -#: application/views/user/main.php:85 -msgid "Logbooks" -msgstr "日志簿" - -#: application/views/user/main.php:87 -msgid "Last QSO:" -msgstr "上个 QSO:" - -#: application/views/user/main.php:89 -msgid "No QSOs in Log" -msgstr "日志为空" - #: application/views/user/profile.php:19 msgid "Level" msgstr "等级" @@ -10962,6 +11098,9 @@ msgstr "您的呼号:" msgid "Submit Request" msgstr "提交请求" +#~ msgid "Winkey Macros" +#~ msgstr "Winkey 宏" + #~ msgid "User logged in" #~ msgstr "已登录用户" diff --git a/application/migrations/210_process_deprecated.php b/application/migrations/210_process_deprecated.php index d1e8c49ae..ae8926ed6 100644 --- a/application/migrations/210_process_deprecated.php +++ b/application/migrations/210_process_deprecated.php @@ -21,11 +21,11 @@ class Migration_process_deprecated extends CI_Migration } } catch (\Throwable $th) { - log_message("Error","Mig: Error at Mig 210 for txt files. Run manually a git reset."); + log_message("error","Mig: Error at Mig 210 for txt files. Run manually a git reset."); } } else { - log_message("Error","Mig: Error at Mig 210 for txt files. Function exec() not usable. Run manually a git reset."); + log_message("info","Mig 210: No .git found. Skipping processing of txt files."); } } diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index 34375019e..0aaff2c3c 100644 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -4670,14 +4670,17 @@ function lotw_last_qsl_date($user_id) { print("$count updated\n"); } - public function update_distances(){ + public function update_distances($all){ + ini_set('memory_limit', '-1'); // This consumes a much of Memory! + $this->db->trans_start(); // Transaction has to be started here, because otherwise we're trying to update rows which are locked by the select $this->db->select("COL_PRIMARY_KEY, COL_GRIDSQUARE, station_gridsquare"); $this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id'); - $this->db->where("((COL_DISTANCE is NULL) or (COL_DISTANCE = 0))"); + if (!$all) { + $this->db->where("((COL_DISTANCE is NULL) or (COL_DISTANCE = 0))"); + } $this->db->where("COL_GRIDSQUARE is NOT NULL"); $this->db->where("COL_GRIDSQUARE != ''"); $this->db->where("COL_GRIDSQUARE != station_gridsquare"); - $this->db->trans_start(); $query = $this->db->get($this->config->item('table_name')); $count = 0; diff --git a/application/models/User_model.php b/application/models/User_model.php index f847d1e35..8032a9f84 100644 --- a/application/models/User_model.php +++ b/application/models/User_model.php @@ -562,16 +562,6 @@ class User_Model extends CI_Model { } } - // FUNCTION: bool set($username, $data) - // Updates a user's record in the database - // TODO: This returns TRUE/1 no matter what at the moment - should - // TODO: return TRUE/FALSE or 0/1 depending on success/failure - function set($username, $data) { - $this->db->where('user_name', $username); - $this->db->update($this->config->item('auth_table', $data)); - return 1; - } - // FUNCTION: object users() // Returns a list of users with additional counts function users() { diff --git a/application/models/Winkey.php b/application/models/Winkey.php index 43938fd41..28a142388 100644 --- a/application/models/Winkey.php +++ b/application/models/Winkey.php @@ -20,13 +20,13 @@ class Winkey extends CI_Model $this->db->where('user_id', $user_id); $this->db->where('station_location_id', $station_location_id); $query = $this->db->get('cwmacros'); - + if ($query->num_rows() > 0) { // return $query->row() as json return json_encode($query->row()); } else { // return json with status not found - return json_encode(array('status' => 'not found')); + return json_encode(array('status' => 'not found')); } } @@ -46,4 +46,4 @@ class Winkey extends CI_Model } } -?> \ No newline at end of file +?> diff --git a/application/views/contestcalendar/index.php b/application/views/contestcalendar/index.php index 23c1a74e1..9eb631877 100644 --- a/application/views/contestcalendar/index.php +++ b/application/views/contestcalendar/index.php @@ -21,8 +21,8 @@ - format('d M - H:i'); ?> - format('d M - H:i'); ?> + format('d M - H:i'); ?> + format('d M - H:i'); ?> ' target='_blank'> @@ -63,4 +63,4 @@ - \ No newline at end of file + diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index efed1d934..aa76df56b 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -34,6 +34,7 @@ var lang_general_word_warning = ""; var lang_general_word_cancel = ""; var lang_general_word_ok = ""; + var lang_general_word_search = ""; var lang_qso_delete_warning = ""; var lang_general_word_colors = ""; var lang_general_word_confirmed = ""; @@ -44,7 +45,9 @@ var lang_admin_save = ""; var lang_admin_clear = ""; var lang_lotw_propmode_hint = ""; - var lang_no_states_for_dxcc_available = ""; + var lang_no_states_for_dxcc_available = ""; + var lang_qrbcalc_title = ''; + var lang_qrbcalc_errmsg = ''; @@ -690,7 +693,9 @@ $('#dxcc_id').on('change', function() { return dxcc.adif == dxccadif; }); $("#stationCQZoneInput").val(dxccinfo[0].cq); - // $("#stationITUZoneInput").val(dxccinfo[0].itu); // Commented out, since we do not have itu data. + if (dxccadif == 0) { + $("#stationITUZoneInput").val(dxccinfo[0].itu); // Only set ITU zone to none if DXCC none is selected. We don't have ITU data for other DXCCs. + } }); diff --git a/application/views/lotw_views/index.php b/application/views/lotw_views/index.php index 6ae86d1d7..9ec2cbd08 100644 --- a/application/views/lotw_views/index.php +++ b/application/views/lotw_views/index.php @@ -22,13 +22,9 @@ - - - - - + + + load->view('layout/messages'); ?> num_rows() > 0) { ?> diff --git a/application/views/qrbcalc/index.php b/application/views/qrbcalc/index.php index ecf7ad8e1..2e7aa2d6f 100644 --- a/application/views/qrbcalc/index.php +++ b/application/views/qrbcalc/index.php @@ -2,14 +2,14 @@
- " aria-label="locator1"> + " aria-label="locator1">
- +
diff --git a/application/views/qso/components/winkeysettings.php b/application/views/qso/components/winkeysettings.php index 74a1fbc05..22241c582 100644 --- a/application/views/qso/components/winkeysettings.php +++ b/application/views/qso/components/winkeysettings.php @@ -1,24 +1,15 @@ - - + diff --git a/application/views/qso/components/winkeysettings_results.php b/application/views/qso/components/winkeysettings_results.php deleted file mode 100644 index bd85f9337..000000000 --- a/application/views/qso/components/winkeysettings_results.php +++ /dev/null @@ -1,96 +0,0 @@ - - diff --git a/application/views/qso/index.php b/application/views/qso/index.php index ac6103ea1..cd3f8c42f 100644 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -642,29 +642,25 @@
-

+

- + - -

+ +
- - - - - -

- + + + + + +
+ +
diff --git a/application/views/station_profile/create.php b/application/views/station_profile/create.php index 566e5b316..16b6eb544 100644 --- a/application/views/station_profile/create.php +++ b/application/views/station_profile/create.php @@ -1,5 +1,12 @@
diff --git a/application/views/update/index.php b/application/views/update/index.php index c74330129..e7f224e6b 100644 --- a/application/views/update/index.php +++ b/application/views/update/index.php @@ -58,6 +58,8 @@

+

+

diff --git a/application/views/user/main.php b/application/views/user/index.php similarity index 59% rename from application/views/user/main.php rename to application/views/user/index.php index 4706ac800..aa8335ca3 100644 --- a/application/views/user/main.php +++ b/application/views/user/index.php @@ -21,7 +21,7 @@
- + @@ -51,6 +51,9 @@ + + + @@ -65,15 +68,15 @@ user_callsign; ?> user_email; ?> config->item('auth_level'); - echo $l[$row->user_type]; ?> - user_type]; ?> + last_seen != null) { // if the user never logged in before the value is null. We can show "never" then. $lastSeenTimestamp = strtotime($row->last_seen); $currentTimestamp = time(); if (($currentTimestamp - $lastSeenTimestamp) < 120) { - echo " " . $row->last_seen . ""; + echo " " . date($custom_date_format . ' H:i:s', $lastSeenTimestamp) . ""; } else { - echo " " . $row->last_seen . ""; + echo " " . date($custom_date_format . ' H:i:s', $lastSeenTimestamp) . ""; } } else { echo __("Never"); @@ -92,14 +95,73 @@ user_id; ?>" class="btn btn-outline-primary btn-sm"> user_id) { + if ($session_uid != $row->user_id) { echo ''; } ?> + user_id) { - echo "user_id . " class=\"btn btn-danger btn-sm\">"; + if ($session_uid != $row->user_id) { ?> + + -
diff --git a/assets/css/general.css b/assets/css/general.css index b2338400e..d50665935 100644 --- a/assets/css/general.css +++ b/assets/css/general.css @@ -1070,4 +1070,19 @@ label { .btn-group .multiselect-container .multiselect-option input[type="radio"] { display: none; +} + +@media screen and (max-width:991px){ + .multiselect-container button.dropdown-item { + pointer-events:none; + } + .multiselect-container span.form-check input { + pointer-events: all; + } + .multiselect-container span.form-check label { + pointer-events: none; + } + .btn-group .multiselect-container .multiselect-option input[type="radio"] { + display: block !important; + } } \ No newline at end of file diff --git a/assets/js/sections/common.js b/assets/js/sections/common.js index 6ea5bc158..d6ae419d3 100644 --- a/assets/js/sections/common.js +++ b/assets/js/sections/common.js @@ -602,9 +602,9 @@ function spawnQrbCalculator(locator1, locator2) { type: 'post', success: function (html) { BootstrapDialog.show({ - title: 'Compute QRB and QTF', + title: lang_qrbcalc_title, size: BootstrapDialog.SIZE_WIDE, - cssClass: 'lookup-dialog', + cssClass: 'lookup-dialog bg-black bg-opacity-50', nl2br: false, message: html, onshown: function(dialog) { @@ -666,28 +666,36 @@ function calculateQrb() { 'locator2': locator2}, success: function (html) { - var result = "
Negative latitudes are south of the equator, negative longitudes are west of Greenwich.
"; - result += ' ' + locator1.toUpperCase() + ' Latitude = ' + html['latlng1'][0] + ' Longitude = ' + html['latlng1'][1] + '
'; - result += ' ' + locator2.toUpperCase() + ' Latitude = ' + html['latlng2'][0] + ' Longitude = ' + html['latlng2'][1] + '
'; - result += 'Distance between ' + locator1.toUpperCase() + ' and ' + locator2.toUpperCase() + ' is ' + html['distance'] + '.
'; - result += 'The bearing is ' + html['bearing'] + '.
'; + var result = "
" + html['latlong_info_text'] + "

"; + result += html['text_latlng1'] + '
'; + result += html['text_latlng2'] + '

'; + result += html['distance'] + ' '; + result += html['bearing'] + '
'; $(".qrbResult").html(result); newpath(html['latlng1'], html['latlng2'], locator1, locator2); } }); } else { - $('.qrbResult').html(''); + $("#mapqrb").hide(); + $('.qrbResult').html(''); } } function validateLocator(locator) { - vucc_gridno = locator.split(",").length; - if(vucc_gridno == 3 || vucc_gridno > 4) { + const regex = /^[A-R]{2}[0-9]{2}([A-X]{2}([0-9]{2}([A-X]{2})?)?)?$/i; + const locators = locator.split(","); + + if (locators.length === 3 || locators.length > 4) { return false; } - if(locator.length < 4 && !(/^[a-rA-R]{2}[0-9]{2}[a-xA-X]{0,2}[0-9]{0,2}[a-xA-X]{0,2}$/.test(locator))) { - return false; + + for (let i = 0; i < locators.length; i++) { + let loc = locators[i].trim(); + + if (!regex.test(loc)) { + return false; + } } return true; diff --git a/assets/js/sections/logbookadvanced.js b/assets/js/sections/logbookadvanced.js index 25f70b373..97c287aad 100644 --- a/assets/js/sections/logbookadvanced.js +++ b/assets/js/sections/logbookadvanced.js @@ -325,6 +325,7 @@ $(document).ready(function () { enableFiltering: true, enableFullValueFiltering: false, enableCaseInsensitiveFiltering: true, + filterPlaceholder: lang_general_word_search, numberDisplayed: 1, inheritClass: true, buttonWidth: '100%', diff --git a/assets/js/sections/qso.js b/assets/js/sections/qso.js index 3a03361ea..de378ff84 100644 --- a/assets/js/sections/qso.js +++ b/assets/js/sections/qso.js @@ -18,6 +18,8 @@ $( document ).ready(function() { enableFiltering: true, enableFullValueFiltering: false, enableCaseInsensitiveFiltering: true, + filterPlaceholder: lang_general_word_search, + widthSynchronizationMode: 'always', numberDisplayed: 1, inheritClass: true, buttonWidth: '100%', diff --git a/assets/js/sections/station_locations.js b/assets/js/sections/station_locations.js index 13d24fb16..749e186d9 100644 --- a/assets/js/sections/station_locations.js +++ b/assets/js/sections/station_locations.js @@ -14,6 +14,8 @@ $(document).ready(function () { enableFiltering: true, enableFullValueFiltering: false, enableCaseInsensitiveFiltering: true, + filterPlaceholder: lang_general_word_search, + widthSynchronizationMode: 'always', numberDisplayed: 1, inheritClass: true, buttonWidth: '100%', diff --git a/assets/js/winkey.js b/assets/js/winkey.js index c6195fe9c..74df8e7d7 100644 --- a/assets/js/winkey.js +++ b/assets/js/winkey.js @@ -69,9 +69,8 @@ let connectButton = document.getElementById("connectButton"); let statusBar = document.getElementById("statusBar"); //Couple the elements to the Events -connectButton.addEventListener("click", clickConnect) -sendButton.addEventListener("click", clickSend) -// statusButton.addEventListener("click", clickStatus) +connectButton.addEventListener("click", clickConnect); +sendButton.addEventListener("click", clickSend); //When the connectButton is pressed async function clickConnect() { @@ -92,7 +91,7 @@ navigator.serial.addEventListener('connect', e => { statusBar.innerText = `Connected to ${e.port}`; connectButton.innerText = "Disconnect" }); - + navigator.serial.addEventListener('disconnect', e => { statusBar.innerText = `Disconnected`; connectButton.innerText = "Connect" @@ -130,7 +129,7 @@ async function connect() { const encoder = new TextEncoderStream(); outputDone = encoder.readable.pipeTo(port.writable); outputStream = encoder.writable; - + writeToByte("0x00, 0x02"); writeToByte("0x02, 0x00"); @@ -151,7 +150,7 @@ async function connect() { //Write to the Serial port async function writeToStream(line) { var enc = new TextEncoder(); // always utf-8 - + const writer = outputStream.getWriter(); writer.write(line); writer.releaseLock(); @@ -190,7 +189,7 @@ async function disconnect() { function clickSend() { writeToStream(sendText.value); writeToStream("\r"); - + //and clear the input field, so it's clear it has been sent sendText.value = ""; @@ -249,23 +248,7 @@ async function readLoop() { } } -function closeModal() { - var container = document.getElementById("modals-here") - var backdrop = document.getElementById("modal-backdrop") - var modal = document.getElementById("modal") - - modal.classList.remove("show") - backdrop.classList.remove("show") - - getMacros(); - - setTimeout(function() { - container.removeChild(backdrop) - container.removeChild(modal) - }, 200) -} - -function UpdateMacros(macrotext) { +function UpdateMacros(macrotext) { // Get the values from the form set to uppercase let CALL = document.getElementById("callsign").value.toUpperCase(); @@ -303,7 +286,7 @@ function getMacros() { const morsekey_func3_Button = document.getElementById('morsekey_func3'); morsekey_func3_Button.textContent = 'F3 (' + function3Name + ')'; - + const morsekey_func4_Button = document.getElementById('morsekey_func4'); morsekey_func4_Button.textContent = 'F4 (' + function4Name + ')'; @@ -311,3 +294,73 @@ function getMacros() { morsekey_func5_Button.textContent = 'F5 (' + function5Name + ')'; }); } + +$('#winkey_settings').click(function (event) { + $.ajax({ + url: base_url + 'index.php/qso/winkeysettings', + type: 'post', + success: function (html) { + BootstrapDialog.show({ + title: 'Winkey Macros', + size: BootstrapDialog.SIZE_NORMAL, + cssClass: 'options', + nl2br: false, + message: html, + onshown: function(dialog) { + }, + buttons: [{ + label: 'Save', + cssClass: 'btn-primary btn-sm', + id: 'saveButton', + action: function (dialogItself) { + winkey_macro_save(); + dialogItself.close(); + } + }, + { + label: lang_admin_close, + cssClass: 'btn-sm', + id: 'closeButton', + action: function (dialogItself) { + $('#optionButton').prop("disabled", false); + dialogItself.close(); + } + }], + onhide: function(dialogRef){ + $('#optionButton').prop("disabled", false); + }, + }); + } + }); +}); + +function winkey_macro_save() { + $.ajax({ + url: base_url + 'index.php/qso/cwmacrosave', + type: 'post', + data: { + function1_name: $('#function1_name').val(), + function1_macro: $('#function1_macro').val(), + function2_name: $('#function2_name').val(), + function2_macro: $('#function2_macro').val(), + function3_name: $('#function3_name').val(), + function3_macro: $('#function3_macro').val(), + function4_name: $('#function4_name').val(), + function4_macro: $('#function4_macro').val(), + function5_name: $('#function5_name').val(), + function5_macro: $('#function5_macro').val(), + }, + success: function (html) { + BootstrapDialog.alert({ + title: 'INFO', + message: 'Macros were saved.', + type: BootstrapDialog.TYPE_INFO, + closable: false, + draggable: false, + callback: function (result) { + getMacros(); + } + }); + } + }); +} diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot index 451d124e3..7213d0c21 100644 --- a/assets/lang_src/messages.pot +++ b/assets/lang_src/messages.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-17 17:16+0000\n" +"POT-Creation-Date: 2024-08-21 15:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -46,8 +46,8 @@ msgstr "" #: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 #: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 #: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:348 -#: application/controllers/Eqsl.php:411 application/controllers/Eqsl.php:427 -#: application/controllers/Eqsl.php:487 application/controllers/Hamsat.php:13 +#: application/controllers/Eqsl.php:412 application/controllers/Eqsl.php:428 +#: application/controllers/Eqsl.php:488 application/controllers/Hamsat.php:13 #: application/controllers/Kmlexport.php:18 #: application/controllers/Kmlexport.php:33 #: application/controllers/Labels.php:26 @@ -55,17 +55,17 @@ msgstr "" #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 #: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 #: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 -#: application/controllers/Lotw.php:712 application/controllers/Lotw.php:820 -#: application/controllers/Lotw.php:828 application/controllers/Mode.php:15 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 #: application/controllers/Notes.php:10 application/controllers/Options.php:15 #: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 #: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 #: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 #: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 #: application/controllers/Qso.php:9 application/controllers/Qso.php:19 -#: application/controllers/Qso.php:176 application/controllers/Qso.php:279 -#: application/controllers/Qso.php:299 application/controllers/Qso.php:308 -#: application/controllers/Qso.php:603 application/controllers/Radio.php:259 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:599 application/controllers/Radio.php:259 #: application/controllers/Radio.php:285 application/controllers/Radio.php:301 #: application/controllers/Satellite.php:15 #: application/controllers/Sattimers.php:9 @@ -79,10 +79,11 @@ msgstr "" #: application/controllers/Update.php:24 application/controllers/Update.php:273 #: application/controllers/Update.php:284 #: application/controllers/Update.php:295 -#: application/controllers/Update.php:306 application/controllers/User.php:8 -#: application/controllers/User.php:21 application/controllers/User.php:206 -#: application/controllers/User.php:207 application/controllers/User.php:719 -#: application/controllers/User.php:738 application/controllers/User.php:1021 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 #: application/controllers/User_options.php:9 msgid "You're not allowed to do that!" msgstr "" @@ -103,7 +104,7 @@ msgstr "" #: application/controllers/Gridmap.php:31 #: application/controllers/Visitor.php:374 #: application/views/activators/index.php:100 -#: application/views/interface_assets/footer.php:42 +#: application/views/interface_assets/footer.php:43 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "" @@ -217,7 +218,7 @@ msgid "Key Invalid - either not found or disabled" msgstr "" #: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 +#: application/views/lotw_views/index.php:91 msgid "Valid" msgstr "" @@ -272,7 +273,7 @@ msgstr "" #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 -#: application/views/lotw_views/index.php:40 +#: application/views/lotw_views/index.php:36 #: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 #: application/views/search/cqzones_result.php:15 #: application/views/search/result.php:27 @@ -351,7 +352,7 @@ msgstr "" #: application/views/qso/components/previous_contacts.php:83 #: application/views/qso/edit_ajax.php:336 #: application/views/search/search_result_ajax.php:9 -#: application/views/station_profile/edit.php:236 +#: application/views/station_profile/edit.php:243 #: application/views/user/edit.php:234 application/views/user/edit.php:256 #: application/views/user/edit.php:278 application/views/user/edit.php:300 #: application/views/user/edit.php:323 @@ -372,7 +373,7 @@ msgstr "" #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:341 #: application/views/search/search_result_ajax.php:10 -#: application/views/station_profile/edit.php:249 +#: application/views/station_profile/edit.php:256 #: application/views/user/edit.php:235 application/views/user/edit.php:257 #: application/views/user/edit.php:279 application/views/user/edit.php:301 #: application/views/user/edit.php:324 @@ -392,7 +393,7 @@ msgstr "" #: application/views/qso/components/previous_contacts.php:85 #: application/views/qso/edit_ajax.php:346 #: application/views/search/search_result_ajax.php:11 -#: application/views/station_profile/edit.php:262 +#: application/views/station_profile/edit.php:269 #: application/views/user/edit.php:236 application/views/user/edit.php:258 #: application/views/user/edit.php:280 application/views/user/edit.php:302 #: application/views/user/edit.php:325 @@ -662,19 +663,19 @@ msgstr "" msgid "eQSL QSO Upload" msgstr "" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:416 msgid "eQSL Tools" msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid " / Errors: " msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:463 msgid "Successfully downloaded: " msgstr "" -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:472 msgid "eQSL Card Image Download" msgstr "" @@ -942,7 +943,7 @@ msgstr "" #: application/views/search/result_search.php:16 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:273 -#: application/views/station_profile/edit.php:298 +#: application/views/station_profile/edit.php:305 #: application/views/timeline/index.php:64 application/views/user/edit.php:564 #: application/views/user/edit.php:667 application/views/user/edit.php:731 msgid "eQSL" @@ -956,7 +957,7 @@ msgstr "" #: application/views/awards/waja/index.php:71 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 -#: application/views/station_profile/edit.php:345 +#: application/views/station_profile/edit.php:352 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 #: application/views/view_log/partial/log_ajax.php:83 @@ -1131,7 +1132,7 @@ msgstr "" #: application/views/qso/components/previous_contacts.php:82 #: application/views/qso/edit_ajax.php:318 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:208 +#: application/views/station_profile/edit.php:215 #: application/views/timeline/index.php:202 application/views/user/edit.php:233 #: application/views/user/edit.php:255 application/views/user/edit.php:277 #: application/views/user/edit.php:299 application/views/user/edit.php:322 @@ -1355,15 +1356,15 @@ msgstr "" #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:675 #: application/views/kml/index.php:54 #: application/views/logbookadvanced/index.php:159 #: application/views/lookup/index.php:31 -#: application/views/lotw_views/index.php:56 +#: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 #: 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:98 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 #: application/views/stationsetup/stationsetup.php:150 @@ -1393,23 +1394,50 @@ msgstr "" msgid "Logbook of the World" msgstr "" -#: application/controllers/Lotw.php:610 +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "" + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "" + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "" + +#: application/controllers/Lotw.php:413 +#, php-format +msgid "" +"Found no certificate in file %s. If the filename contains 'key-only' this is " +"typically a certificate request which has not been processed by LoTW yet." +msgstr "" + +#: application/controllers/Lotw.php:617 msgid "LoTW ADIF Information" msgstr "" -#: application/controllers/Lotw.php:718 +#: application/controllers/Lotw.php:725 msgid "LoTW ADIF Import" msgstr "" -#: application/controllers/Lotw.php:830 +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "" + +#: application/controllers/Lotw.php:837 msgid "LoTW .TQ8 Upload" msgstr "" -#: application/controllers/Lotw.php:927 application/controllers/Lotw.php:932 +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "" + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 msgid "LoTW .TQ8 Sent" msgstr "" -#: application/controllers/Lotw.php:939 +#: application/controllers/Lotw.php:946 msgid "LoTW .TQ8 Not Sent" msgstr "" @@ -1574,6 +1602,44 @@ msgstr "" msgid "QRB Calculator" msgstr "" +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "" + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" + #: application/controllers/Qrz.php:173 #: application/views/interface_assets/header.php:426 msgid "QRZ Logbook" @@ -1628,7 +1694,7 @@ msgstr "" #: application/controllers/Radio.php:52 #: application/views/logbookadvanced/index.php:527 -#: application/views/lotw_views/index.php:47 +#: application/views/lotw_views/index.php:43 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:171 #: application/views/stationsetup/exportmapoptions.php:5 @@ -1654,13 +1720,13 @@ msgstr "" #: application/controllers/Radio.php:105 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2329 -#: application/views/interface_assets/footer.php:2347 -#: application/views/interface_assets/footer.php:2368 -#: application/views/interface_assets/footer.php:2386 +#: application/views/interface_assets/footer.php:2334 +#: application/views/interface_assets/footer.php:2352 +#: application/views/interface_assets/footer.php:2373 +#: application/views/interface_assets/footer.php:2391 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:519 -#: application/views/lotw_views/index.php:118 +#: application/views/lotw_views/index.php:114 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 #: application/views/qslcard/index.php:65 @@ -1670,7 +1736,7 @@ msgstr "" #: application/views/stationsetup/stationsetup.php:33 #: application/views/stationsetup/stationsetup.php:137 #: application/views/stationsetup/stationsetup.php:192 -#: application/views/themes/index.php:107 application/views/user/main.php:54 +#: application/views/themes/index.php:107 application/views/user/index.php:57 #: application/views/view_log/qso.php:613 msgid "Delete" msgstr "" @@ -1711,6 +1777,7 @@ msgstr "" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 +#: application/views/interface_assets/footer.php:37 #: application/views/interface_assets/header.php:336 #: application/views/interface_assets/header.php:343 #: application/views/logbookadvanced/index.php:516 @@ -1761,8 +1828,8 @@ msgstr "" #: application/views/logbookadvanced/edit.php:18 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:447 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 @@ -1827,8 +1894,8 @@ msgstr "" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:259 -#: application/views/station_profile/edit.php:332 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 msgid "Disabled" @@ -1883,15 +1950,15 @@ msgstr "" #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:28 #: application/views/stationsetup/stationsetup.php:161 -#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/user/index.php:90 application/views/user/index.php:92 msgid "QSO" msgstr "" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 #: application/views/cron/index.php:56 -#: application/views/interface_assets/footer.php:538 -#: application/views/interface_assets/footer.php:547 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 #: application/views/labels/index.php:47 application/views/labels/index.php:83 #: application/views/logbookadvanced/index.php:518 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 @@ -1899,7 +1966,7 @@ msgstr "" #: application/views/search/stored_queries.php:21 #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 -#: application/views/themes/index.php:104 application/views/user/main.php:52 +#: application/views/themes/index.php:104 application/views/user/index.php:52 msgid "Edit" msgstr "" @@ -2013,92 +2080,120 @@ msgstr "" msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/User.php:12 +#: application/controllers/User.php:36 #: application/views/interface_assets/header.php:268 msgid "User Accounts" msgstr "" -#: application/controllers/User.php:52 +#: application/controllers/User.php:76 msgid "Add User" msgstr "" -#: application/controllers/User.php:166 +#: application/controllers/User.php:190 msgid "Users" msgstr "" -#: application/controllers/User.php:240 application/controllers/User.php:673 +#: application/controllers/User.php:264 application/controllers/User.php:697 msgid "Edit User" msgstr "" -#: application/controllers/User.php:665 application/controllers/User.php:668 -#: application/views/user/main.php:3 application/views/user/main.php:46 +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 msgid "User" msgstr "" -#: application/controllers/User.php:665 application/controllers/User.php:668 +#: application/controllers/User.php:689 application/controllers/User.php:692 msgid "edited" msgstr "" -#: application/controllers/User.php:722 +#: application/controllers/User.php:746 msgid "Profile" msgstr "" -#: application/controllers/User.php:779 +#: application/controllers/User.php:803 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." msgstr "" -#: application/controllers/User.php:843 application/controllers/User.php:853 +#: application/controllers/User.php:867 application/controllers/User.php:877 msgid "Login failed. Try again." msgstr "" -#: application/controllers/User.php:860 +#: application/controllers/User.php:884 #: application/views/interface_assets/header.php:356 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:88 msgid "Login" msgstr "" -#: application/controllers/User.php:898 +#: application/controllers/User.php:922 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " "Only administrators are currently allowed to log in." msgstr "" -#: application/controllers/User.php:901 +#: application/controllers/User.php:925 msgid "Incorrect username or password!" msgstr "" -#: application/controllers/User.php:918 +#: application/controllers/User.php:942 #, php-format msgid "User %s logged out." msgstr "" -#: application/controllers/User.php:932 +#: application/controllers/User.php:956 msgid "Password Reset is disabled on the Demo!" msgstr "" -#: application/controllers/User.php:945 +#: application/controllers/User.php:969 msgid "Forgot Password" msgstr "" -#: application/controllers/User.php:995 application/views/user/main.php:8 +#: application/controllers/User.php:1019 application/views/user/index.php:8 msgid "Email settings are incorrect." msgstr "" -#: application/controllers/User.php:999 application/controllers/User.php:1004 +#: application/controllers/User.php:1023 application/controllers/User.php:1028 msgid "Password Reset Processed." msgstr "" -#: application/controllers/User.php:1106 +#: application/controllers/User.php:1129 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "" +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "" + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "" + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "" + #: application/controllers/Visitor.php:50 #: application/controllers/Visitor.php:79 #: application/controllers/Visitor.php:142 @@ -2384,8 +2479,8 @@ msgstr "" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1441 -#: application/views/interface_assets/footer.php:1580 +#: application/views/interface_assets/footer.php:1446 +#: application/views/interface_assets/footer.php:1585 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 @@ -2617,7 +2712,7 @@ msgstr "" #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 -#: application/views/lotw_views/index.php:39 +#: application/views/lotw_views/index.php:35 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 #: application/views/qslcard/index.php:28 @@ -2632,10 +2727,10 @@ msgstr "" #: application/views/search/lotw_unconfirmed_result.php:6 #: application/views/search/result.php:11 #: application/views/simplefle/index.php:142 -#: application/views/station_profile/edit.php:56 +#: application/views/station_profile/edit.php:63 #: application/views/stationsetup/linkedlocations.php:17 -#: application/views/user/edit.php:123 application/views/user/main.php:4 -#: application/views/user/main.php:47 application/views/user/profile.php:29 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 #: application/views/view_log/qso.php:82 application/views/view_log/qso.php:507 msgid "Callsign" msgstr "" @@ -2891,8 +2986,8 @@ msgstr "" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 -#: application/views/interface_assets/footer.php:498 -#: application/views/interface_assets/footer.php:2125 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2130 msgid "DANGER" msgstr "" @@ -3065,8 +3160,8 @@ msgstr "" #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 -#: application/views/interface_assets/footer.php:44 -#: application/views/interface_assets/footer.php:533 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -3074,8 +3169,6 @@ msgstr "" #: application/views/options/oqrs.php:63 #: application/views/options/radios.php:45 #: application/views/options/version_dialog.php:78 -#: application/views/qso/components/winkeysettings.php:90 -#: application/views/qso/components/winkeysettings_results.php:90 #: application/views/satellite/create.php:70 #: application/views/simplefle/index.php:22 msgid "Save" @@ -3152,7 +3245,7 @@ msgid "Permissions" msgstr "" #: application/views/api/help.php:31 application/views/cron/index.php:52 -#: application/views/lotw_views/index.php:45 +#: application/views/lotw_views/index.php:41 #: application/views/mode/index.php:31 #: application/views/oqrs/showrequests.php:91 #: application/views/sattimers/index.php:39 @@ -3315,8 +3408,8 @@ msgstr "" #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:106 -#: application/views/station_profile/edit.php:146 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 #: application/views/timeline/index.php:231 #: application/views/timeplotter/index.php:44 msgid "CQ Zone" @@ -3360,7 +3453,7 @@ msgstr "" #: application/views/bandmap/list.php:73 #: application/views/dashboard/index.php:245 #: application/views/dashboard/index.php:363 -#: application/views/interface_assets/footer.php:39 +#: application/views/interface_assets/footer.php:40 #: application/views/visitor/index.php:266 msgid "Confirmed" msgstr "" @@ -3426,7 +3519,7 @@ msgstr "" #: application/views/awards/cq/index.php:56 #: application/views/awards/itu/index.php:56 -#: application/views/interface_assets/footer.php:2104 +#: application/views/interface_assets/footer.php:2109 #: application/views/qso/edit_ajax.php:378 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -3885,8 +3978,8 @@ msgstr "" #: application/views/logbookadvanced/index.php:251 #: application/views/logbookadvanced/index.php:594 #: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:120 -#: application/views/station_profile/edit.php:163 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 msgid "ITU Zone" msgstr "" @@ -3992,8 +4085,8 @@ msgstr "" #: application/views/awards/pota/index.php:31 #: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:177 -#: application/views/station_profile/edit.php:265 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 #: application/views/user/edit.php:595 application/views/view_log/qso.php:303 #: application/views/view_log/qso.php:570 msgid "POTA Reference(s)" @@ -4250,8 +4343,8 @@ msgstr "" #: application/views/awards/wwff/index.php:31 #: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:171 -#: application/views/station_profile/edit.php:252 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 #: application/views/user/edit.php:591 application/views/view_log/qso.php:296 #: application/views/view_log/qso.php:563 msgid "WWFF Reference" @@ -4437,9 +4530,7 @@ msgstr "" #: application/views/bands/index.php:152 #: application/views/contesting/add.php:74 -#: application/views/interface_assets/footer.php:43 -#: application/views/qso/components/winkeysettings.php:91 -#: application/views/qso/components/winkeysettings_results.php:91 +#: application/views/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4763,8 +4854,8 @@ msgid "Name of Contest in ADIF-specification" msgstr "" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:48 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "" @@ -4908,8 +4999,8 @@ msgstr "" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:261 -#: application/views/station_profile/edit.php:334 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 msgid "Enabled" @@ -4965,6 +5056,7 @@ msgstr "" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "" @@ -5634,7 +5726,7 @@ msgstr "" msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:283 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:649 msgid "Settings" msgstr "" @@ -5691,7 +5783,7 @@ msgstr "" #: application/views/debug/index.php:506 application/views/debug/index.php:511 #: application/views/debug/index.php:516 application/views/debug/index.php:521 #: application/views/debug/index.php:526 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/edit.php:49 msgid "Update" msgstr "" @@ -5733,8 +5825,8 @@ msgstr[1] "" #: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:57 -#: application/views/station_profile/edit.php:66 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" @@ -6061,10 +6153,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2330 -#: application/views/interface_assets/footer.php:2348 -#: application/views/interface_assets/footer.php:2369 -#: application/views/interface_assets/footer.php:2387 +#: application/views/interface_assets/footer.php:2335 +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2374 +#: application/views/interface_assets/footer.php:2392 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -6190,184 +6282,192 @@ msgstr "" msgid "OK" msgstr "" -#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/footer.php:38 msgid "Warning! Are you sure you want delete QSO with " msgstr "" -#: application/views/interface_assets/footer.php:38 +#: application/views/interface_assets/footer.php:39 #: application/views/user/edit.php:493 msgid "Colors" msgstr "" -#: application/views/interface_assets/footer.php:40 +#: application/views/interface_assets/footer.php:41 msgid "Worked not confirmed" msgstr "" -#: application/views/interface_assets/footer.php:41 +#: application/views/interface_assets/footer.php:42 msgid "Not worked" msgstr "" -#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:46 #: application/views/qso/index.php:601 #: application/views/visitor/layout/footer.php:245 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:46 +#: application/views/interface_assets/footer.php:47 #: application/views/qso/edit_ajax.php:211 #: application/views/qso/edit_ajax.php:512 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "" -#: application/views/interface_assets/footer.php:47 +#: application/views/interface_assets/footer.php:48 msgid "No states for this DXCC available" msgstr "" -#: application/views/interface_assets/footer.php:129 +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "" + +#: application/views/interface_assets/footer.php:132 #: application/views/interface_assets/header.php:434 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:395 +#: application/views/interface_assets/footer.php:398 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:398 +#: application/views/interface_assets/footer.php:401 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:414 +#: application/views/interface_assets/footer.php:417 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:416 +#: application/views/interface_assets/footer.php:419 #: application/views/search/filter.php:46 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:418 +#: application/views/interface_assets/footer.php:421 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:423 +#: application/views/interface_assets/footer.php:426 #: application/views/search/filter.php:60 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:435 -#: application/views/interface_assets/footer.php:564 -#: application/views/interface_assets/footer.php:628 +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:440 -#: application/views/interface_assets/footer.php:633 +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:461 -#: application/views/interface_assets/footer.php:592 +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 #: application/views/search/filter.php:79 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:499 +#: application/views/interface_assets/footer.php:502 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:513 +#: application/views/interface_assets/footer.php:516 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:522 +#: application/views/interface_assets/footer.php:525 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:548 +#: application/views/interface_assets/footer.php:551 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:552 +#: application/views/interface_assets/footer.php:555 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:675 +#: application/views/interface_assets/footer.php:678 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:725 +#: application/views/interface_assets/footer.php:730 #: application/views/logbookadvanced/index.php:511 msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:726 +#: application/views/interface_assets/footer.php:731 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:727 +#: application/views/interface_assets/footer.php:732 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1162 +#: application/views/interface_assets/footer.php:1167 #, php-format msgid "You're not logged in. Please %slogin%s" msgstr "" -#: application/views/interface_assets/footer.php:1368 -#: application/views/interface_assets/footer.php:1372 -#: application/views/interface_assets/footer.php:1375 -#: application/views/interface_assets/footer.php:1512 -#: application/views/interface_assets/footer.php:1516 -#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1373 +#: application/views/interface_assets/footer.php:1377 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1517 +#: application/views/interface_assets/footer.php:1521 +#: application/views/interface_assets/footer.php:1524 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1375 -#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1524 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2106 +#: application/views/interface_assets/footer.php:2111 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2126 +#: application/views/interface_assets/footer.php:2131 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2166 +#: application/views/interface_assets/footer.php:2171 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2168 +#: application/views/interface_assets/footer.php:2173 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2341 -#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2346 +#: application/views/interface_assets/footer.php:2385 #: application/views/view_log/qso.php:604 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2360 +#: application/views/interface_assets/footer.php:2365 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2398 +#: application/views/interface_assets/footer.php:2403 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2409 -#: application/views/interface_assets/footer.php:2434 +#: application/views/interface_assets/footer.php:2414 +#: application/views/interface_assets/footer.php:2439 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2445 +#: application/views/interface_assets/footer.php:2450 msgid "Something went wrong. Please try again!" msgstr "" @@ -6957,18 +7057,18 @@ msgstr "" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:209 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:236 -#: application/views/station_profile/create.php:275 -#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 #: application/views/station_profile/create.php:293 -#: application/views/station_profile/edit.php:350 -#: application/views/station_profile/edit.php:358 -#: application/views/station_profile/edit.php:384 -#: application/views/station_profile/edit.php:405 -#: application/views/station_profile/edit.php:423 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 #: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 #: application/views/user/edit.php:347 application/views/user/edit.php:358 #: application/views/user/edit.php:369 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:399 @@ -6995,18 +7095,18 @@ msgstr "" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:210 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:237 -#: application/views/station_profile/create.php:276 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/create.php:292 -#: application/views/station_profile/edit.php:351 -#: application/views/station_profile/edit.php:359 -#: application/views/station_profile/edit.php:385 -#: application/views/station_profile/edit.php:406 -#: application/views/station_profile/edit.php:424 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 #: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 #: application/views/user/edit.php:348 application/views/user/edit.php:359 #: application/views/user/edit.php:370 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:400 @@ -7328,7 +7428,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:505 #: application/views/qso/index.php:272 -#: application/views/station_profile/edit.php:85 +#: application/views/station_profile/edit.php:92 msgid "Location" msgstr "" @@ -7487,58 +7587,58 @@ msgstr "" msgid "Upload Certificate" msgstr "" -#: application/views/lotw_views/index.php:41 +#: application/views/lotw_views/index.php:37 msgid "QSO Start Date" msgstr "" -#: application/views/lotw_views/index.php:42 +#: application/views/lotw_views/index.php:38 msgid "QSO End Date" msgstr "" -#: application/views/lotw_views/index.php:43 +#: application/views/lotw_views/index.php:39 msgid "Date Created" msgstr "" -#: application/views/lotw_views/index.php:44 +#: application/views/lotw_views/index.php:40 msgid "Date Expires" msgstr "" -#: application/views/lotw_views/index.php:46 +#: application/views/lotw_views/index.php:42 #: application/views/view_log/qso.php:404 msgid "Last Upload" msgstr "" -#: application/views/lotw_views/index.php:91 +#: application/views/lotw_views/index.php:87 msgid "Expired" msgstr "" -#: application/views/lotw_views/index.php:93 +#: application/views/lotw_views/index.php:89 msgid "Expiring" msgstr "" -#: application/views/lotw_views/index.php:105 +#: application/views/lotw_views/index.php:101 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:108 +#: application/views/lotw_views/index.php:104 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:114 +#: application/views/lotw_views/index.php:110 msgid "Not Synced" msgstr "" -#: application/views/lotw_views/index.php:129 +#: application/views/lotw_views/index.php:125 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" -#: application/views/lotw_views/index.php:144 +#: application/views/lotw_views/index.php:140 msgid "Information" msgstr "" -#: application/views/lotw_views/index.php:149 +#: application/views/lotw_views/index.php:145 msgid "Manual Sync" msgstr "" @@ -8047,7 +8147,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:64 #: application/views/oqrs/showrequests.php:87 -#: application/views/user/main.php:48 application/views/user/profile.php:24 +#: application/views/user/index.php:48 application/views/user/profile.php:24 msgid "E-mail" msgstr "" @@ -8370,35 +8470,20 @@ msgid "" "queue." msgstr "" -#: application/views/qso/components/winkeysettings.php:7 -#: application/views/qso/components/winkeysettings_results.php:7 -msgid "Winkey Macros" -msgstr "" - -#: application/views/qso/components/winkeysettings.php:12 -#: application/views/qso/components/winkeysettings.php:28 -#: application/views/qso/components/winkeysettings.php:44 -#: application/views/qso/components/winkeysettings.php:60 -#: application/views/qso/components/winkeysettings.php:76 -#: application/views/qso/components/winkeysettings_results.php:12 -#: application/views/qso/components/winkeysettings_results.php:28 -#: application/views/qso/components/winkeysettings_results.php:44 -#: application/views/qso/components/winkeysettings_results.php:60 -#: application/views/qso/components/winkeysettings_results.php:76 -#, php-format -msgid "Function %d - Name" -msgstr "" - +#: application/views/qso/components/winkeysettings.php:3 #: application/views/qso/components/winkeysettings.php:19 #: application/views/qso/components/winkeysettings.php:35 #: application/views/qso/components/winkeysettings.php:51 #: application/views/qso/components/winkeysettings.php:67 -#: application/views/qso/components/winkeysettings.php:83 -#: application/views/qso/components/winkeysettings_results.php:19 -#: application/views/qso/components/winkeysettings_results.php:35 -#: application/views/qso/components/winkeysettings_results.php:51 -#: application/views/qso/components/winkeysettings_results.php:67 -#: application/views/qso/components/winkeysettings_results.php:83 +#, php-format +msgid "Function %d - Name" +msgstr "" + +#: application/views/qso/components/winkeysettings.php:10 +#: application/views/qso/components/winkeysettings.php:26 +#: application/views/qso/components/winkeysettings.php:42 +#: application/views/qso/components/winkeysettings.php:58 +#: application/views/qso/components/winkeysettings.php:74 #, php-format msgid "Function %d - Macro" msgstr "" @@ -8518,7 +8603,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:5 application/views/qso/index.php:694 +#: application/views/qso/index.php:5 application/views/qso/index.php:690 msgid "Previous Contacts" msgstr "" @@ -8559,16 +8644,16 @@ msgid "Search DXCluster for latest Spot" msgstr "" #: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:149 -#: application/views/station_profile/edit.php:211 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 #: application/views/user/edit.php:583 application/views/view_log/qso.php:282 #: application/views/view_log/qso.php:549 msgid "IOTA Reference" msgstr "" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:165 -#: application/views/station_profile/edit.php:239 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 #: application/views/user/edit.php:587 application/views/view_log/qso.php:289 #: application/views/view_log/qso.php:556 msgid "SOTA Reference" @@ -8632,15 +8717,19 @@ msgstr "" msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:663 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:673 msgid "Suggestions" msgstr "" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:680 msgid "Profile Picture" msgstr "" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:704 msgid "Max. 5 previous contacts are shown" msgstr "" @@ -9218,116 +9307,116 @@ msgid "" "%sthis article%s of our Wiki." msgstr "" -#: application/views/station_profile/create.php:51 -#: application/views/station_profile/edit.php:60 +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:52 -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:62 +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:62 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:59 -#: application/views/station_profile/edit.php:68 +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 msgid "Station callsign. For example: 4W7EST/P" msgstr "" -#: application/views/station_profile/create.php:63 -#: application/views/station_profile/edit.php:72 +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 msgid "Station Power (W)" msgstr "" -#: application/views/station_profile/create.php:65 -#: application/views/station_profile/edit.php:74 +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" -#: application/views/station_profile/create.php:68 -#: application/views/station_profile/edit.php:89 +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 msgid "Station DXCC" msgstr "" -#: application/views/station_profile/create.php:71 -#: application/views/station_profile/edit.php:92 +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 msgctxt "DXCC selection" msgid "None" msgstr "" -#: application/views/station_profile/create.php:78 -#: application/views/station_profile/edit.php:105 +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:83 -#: application/views/station_profile/edit.php:111 +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 msgid "Station City" msgstr "" -#: application/views/station_profile/create.php:85 -#: application/views/station_profile/edit.php:113 +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:94 -#: application/views/station_profile/edit.php:125 -msgid "Station state. Applies to certain countries only." -msgstr "" - -#: application/views/station_profile/create.php:99 -#: application/views/station_profile/edit.php:130 -msgid "Station County" -msgstr "" - #: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:132 +msgid "Station state. Applies to certain countries only." +msgstr "" + +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 +msgid "Station County" +msgstr "" + +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/edit.php:158 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:158 -#: application/views/station_profile/edit.php:175 -#: application/views/station_profile/edit.php:199 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 msgid "click here" msgstr "" -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/edit.php:175 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:135 -#: application/views/station_profile/edit.php:187 -#: application/views/station_profile/edit.php:190 +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 msgid "Station Gridsquare" msgstr "" -#: application/views/station_profile/create.php:140 -#: application/views/station_profile/edit.php:195 +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 msgid "Get Gridsquare" msgstr "" -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:199 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 #, php-format msgctxt "uses 'click here'" msgid "" @@ -9335,247 +9424,247 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:145 -#: application/views/station_profile/edit.php:200 +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" -#: application/views/station_profile/create.php:160 -#: application/views/station_profile/edit.php:225 +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 msgid "Station IOTA reference. For example: EU-005" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:226 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:226 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:241 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:241 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:254 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:254 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:267 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:267 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 #, php-format msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:183 -#: application/views/station_profile/edit.php:280 +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 msgid "Signature Name" msgstr "" -#: application/views/station_profile/create.php:185 -#: application/views/station_profile/edit.php:282 +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 msgid "Station Signature (e.g. GMA).." msgstr "" -#: application/views/station_profile/create.php:189 -#: application/views/station_profile/edit.php:286 +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 msgid "Signature Information" msgstr "" -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/edit.php:288 +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "" -#: application/views/station_profile/create.php:195 -#: application/views/station_profile/edit.php:301 +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:197 -#: application/views/station_profile/edit.php:303 +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "" -#: application/views/station_profile/create.php:201 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 msgid "Default QSLMSG" msgstr "" -#: application/views/station_profile/create.php:204 -#: application/views/station_profile/edit.php:309 +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "" -#: application/views/station_profile/create.php:207 -#: application/views/station_profile/edit.php:348 +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:212 -#: application/views/station_profile/edit.php:353 +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " "Clublog. If this is deactivated on it's own please check if the Call is " "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:215 -#: application/views/station_profile/edit.php:356 +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 msgid "ClubLog Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:224 -#: application/views/station_profile/edit.php:372 -msgid "HRDLog.net Username" -msgstr "" - -#: application/views/station_profile/create.php:226 -#: application/views/station_profile/edit.php:374 -msgid "" -"The username you are registered with at HRDlog.net (usually your callsign)." -msgstr "" - -#: application/views/station_profile/create.php:229 -#: application/views/station_profile/edit.php:377 -msgid "HRDLog.net API Key" -msgstr "" - #: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:379 +msgid "HRDLog.net Username" +msgstr "" + +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 +msgid "" +"The username you are registered with at HRDlog.net (usually your callsign)." +msgstr "" + +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 +msgid "HRDLog.net API Key" +msgstr "" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:379 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:234 -#: application/views/station_profile/edit.php:382 +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 msgid "HRDLog.net Logbook Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:243 -#: application/views/station_profile/edit.php:317 +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 msgid "Subscription Required" msgstr "" -#: application/views/station_profile/create.php:248 +#: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:326 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:326 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/edit.php:330 +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 msgid "QRZ.com Logbook Upload" msgstr "" -#: application/views/station_profile/create.php:260 -#: application/views/station_profile/edit.php:333 +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:268 -#: application/views/station_profile/edit.php:398 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:400 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:400 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:273 -#: application/views/station_profile/edit.php:403 +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 msgid "QO-100 Dx Club Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:283 -#: application/views/station_profile/edit.php:421 -msgid "OQRS Enabled" -msgstr "" - #: application/views/station_profile/create.php:290 #: application/views/station_profile/edit.php:428 +msgid "OQRS Enabled" +msgstr "" + +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 msgid "OQRS Email alert" msgstr "" -#: application/views/station_profile/create.php:295 -#: application/views/station_profile/edit.php:433 +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 msgid "Make sure email is set up under admin and global options." msgstr "" -#: application/views/station_profile/create.php:298 -#: application/views/station_profile/edit.php:436 +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 msgid "OQRS Text" msgstr "" -#: application/views/station_profile/create.php:300 -#: application/views/station_profile/edit.php:438 +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 msgid "Some info you want to add regarding QSL'ing." msgstr "" -#: application/views/station_profile/edit.php:142 +#: application/views/station_profile/edit.php:149 msgid "Zones" msgstr "" -#: application/views/station_profile/edit.php:277 +#: application/views/station_profile/edit.php:284 msgid "Signature" msgstr "" @@ -10000,7 +10089,7 @@ msgstr "" msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:42 application/views/update/index.php:62 msgid "Re-check all QSOs in logbook" msgstr "" @@ -10026,6 +10115,13 @@ msgstr "" msgid "Update distance data" msgstr "" +#: application/views/update/index.php:61 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" + #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "" @@ -10437,6 +10533,122 @@ msgstr "" msgid "You can reset your password here." msgstr "" +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "" + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "" + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "" + #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" msgstr "" @@ -10462,84 +10674,6 @@ msgstr "" msgid "Keep me logged in" msgstr "" -#: application/views/user/main.php:2 -msgid "Do you really want to send this user a password-reset link?" -msgstr "" - -#: application/views/user/main.php:6 -msgid "Please Wait ..." -msgstr "" - -#: application/views/user/main.php:9 -msgid "Password-reset e-mail sent to user:" -msgstr "" - -#: application/views/user/main.php:30 -msgid "User List" -msgstr "" - -#: application/views/user/main.php:33 -msgid "Wavelog needs at least one user configured in order to operate." -msgstr "" - -#: application/views/user/main.php:34 -msgid "" -"Users can be assigned roles which give them different permissions, such as " -"adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "" - -#: application/views/user/main.php:35 -msgid "" -"The currently logged-in user is displayed at the upper-right of each page." -msgstr "" - -#: application/views/user/main.php:36 -msgid "" -"With the password reset button, you can send a user an email containing a " -"link to reset their password. To achieve this, ensure that the email " -"settings in the global options are configured correctly." -msgstr "" - -#: application/views/user/main.php:38 -msgid "Create user" -msgstr "" - -#: application/views/user/main.php:39 -msgid "Refresh List" -msgstr "" - -#: application/views/user/main.php:49 -msgid "Type" -msgstr "" - -#: application/views/user/main.php:50 -msgid "Last seen" -msgstr "" - -#: application/views/user/main.php:53 -msgid "Password Reset" -msgstr "" - -#: application/views/user/main.php:79 -msgid "Never" -msgstr "" - -#: application/views/user/main.php:83 -msgid "Locations" -msgstr "" - -#: application/views/user/main.php:85 -msgid "Logbooks" -msgstr "" - -#: application/views/user/main.php:87 -msgid "Last QSO:" -msgstr "" - -#: application/views/user/main.php:89 -msgid "No QSOs in Log" -msgstr "" - #: application/views/user/profile.php:19 msgid "Level" msgstr "" diff --git a/install/assets/css/installer.css b/install/assets/css/installer.css index fbdf737e7..bce66ff5e 100644 --- a/install/assets/css/installer.css +++ b/install/assets/css/installer.css @@ -269,4 +269,19 @@ div.alert-danger { --bs-btn-hover-color: inherit !important; --bs-btn-active-bg: #1b1b1b; --bs-btn-active-color: inherit !important; +} + +@media screen and (max-width:991px){ + .multiselect-container button.dropdown-item { + pointer-events:none; + } + .multiselect-container span.form-check input { + pointer-events: all; + } + .multiselect-container span.form-check label { + pointer-events: none; + } + .btn-group .multiselect-container .multiselect-option input[type="radio"] { + display: block !important; + } } \ No newline at end of file diff --git a/install/config/config.php b/install/config/config.php index bde541210..b4dd134a8 100644 --- a/install/config/config.php +++ b/install/config/config.php @@ -669,4 +669,17 @@ $config['disable_oqrs'] = false; $config['special_callsign'] = false; // hides the usermenu; takes action only if "special_callsign" is true -$config['sc_hide_usermenu'] = true; \ No newline at end of file +$config['sc_hide_usermenu'] = true; + + +/* +|-------------------------------------------------------------------------- +| Impersonate +|-------------------------------------------------------------------------- +| +| This config switch disables the impersonate feature. This feauture is used to impersonate another user. +| Impersonate is enabled by default. To disable it, set the value to false. +| +*/ + +$config['disable_impersonate'] = false; \ No newline at end of file diff --git a/install/includes/gettext/locale/es_ES/LC_MESSAGES/installer.mo b/install/includes/gettext/locale/es_ES/LC_MESSAGES/installer.mo index 4f9e19a8e..46cda9f24 100644 Binary files a/install/includes/gettext/locale/es_ES/LC_MESSAGES/installer.mo and b/install/includes/gettext/locale/es_ES/LC_MESSAGES/installer.mo differ diff --git a/install/includes/gettext/locale/es_ES/LC_MESSAGES/installer.po b/install/includes/gettext/locale/es_ES/LC_MESSAGES/installer.po index c7a249516..c3d8fb4d5 100644 --- a/install/includes/gettext/locale/es_ES/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/es_ES/LC_MESSAGES/installer.po @@ -2,155 +2,157 @@ # Copyright (c) 2024 Wavelog by DF2ET, DJ7NT, HB9HIL and LA8AJA. # This file is distributed under the MIT licence. # +# "Francisco (F4VSE)" , 2024. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" "POT-Creation-Date: 2024-08-12 09:45+0000\n" -"PO-Revision-Date: 2024-06-05 15:15+0200\n" -"Last-Translator: \n" -"Language-Team: \n" +"PO-Revision-Date: 2024-08-18 19:11+0000\n" +"Last-Translator: \"Francisco (F4VSE)\" \n" +"Language-Team: Spanish \n" "Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 3.4.4\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.7\n" #: install/includes/core/database_class.php:59 msgid "Connection Error: " -msgstr "" +msgstr "Error de conexión: " #: install/includes/core/database_class.php:63 msgid "Unable to create database: " -msgstr "" +msgstr "No se puede crear la base de datos: " #: install/includes/core/database_class.php:68 msgid "Unable to select database: " -msgstr "" +msgstr "No se puede seleccionar la base de datos: " #: install/includes/core/database_class.php:74 msgid "Database is not empty." -msgstr "" +msgstr "La base de datos no está vacía." #: install/includes/install_config/install_lib.php:123 msgid "not detected" -msgstr "" +msgstr "no detectado" #: install/includes/interface_assets/footer.php:50 msgid "Albanian" -msgstr "" +msgstr "Albanés" #: install/includes/interface_assets/footer.php:51 msgid "Bosnian" -msgstr "" +msgstr "Bosnio" #: install/includes/interface_assets/footer.php:52 msgid "Bulgarian" -msgstr "" +msgstr "Búlgaro" #: install/includes/interface_assets/footer.php:53 msgid "Chinese (Simplified)" -msgstr "" +msgstr "Chino (Simplificado)" #: install/includes/interface_assets/footer.php:54 msgid "Croatian" -msgstr "" +msgstr "Croata" #: install/includes/interface_assets/footer.php:55 msgid "Czech" -msgstr "" +msgstr "Checo" #: install/includes/interface_assets/footer.php:56 msgid "Dutch" -msgstr "" +msgstr "Holandés" #: install/includes/interface_assets/footer.php:57 msgid "English" -msgstr "" +msgstr "Inglés" #: install/includes/interface_assets/footer.php:58 msgid "Finnish" -msgstr "" +msgstr "Finlandés" #: install/includes/interface_assets/footer.php:59 msgid "French" -msgstr "" +msgstr "Francés" #: install/includes/interface_assets/footer.php:60 msgid "German" -msgstr "" +msgstr "Alemán" #: install/includes/interface_assets/footer.php:61 msgid "Greek" -msgstr "" +msgstr "Griego" #: install/includes/interface_assets/footer.php:62 msgid "Italian" -msgstr "" +msgstr "Italiano" #: install/includes/interface_assets/footer.php:63 msgid "Montenegrin" -msgstr "" +msgstr "Montenegrino" #: install/includes/interface_assets/footer.php:64 msgid "Polish" -msgstr "" +msgstr "Polaco" #: install/includes/interface_assets/footer.php:65 msgid "Portuguese" -msgstr "" +msgstr "Portugués" #: install/includes/interface_assets/footer.php:66 msgid "Russian" -msgstr "" +msgstr "Ruso" #: install/includes/interface_assets/footer.php:67 msgid "Serbian" -msgstr "" +msgstr "Serbio" #: install/includes/interface_assets/footer.php:68 msgid "Spanish" -msgstr "" +msgstr "Español" #: install/includes/interface_assets/footer.php:69 msgid "Swedish" -msgstr "" +msgstr "Sueco" #: install/includes/interface_assets/footer.php:70 msgid "Turkish" -msgstr "" +msgstr "Turco" #: install/includes/interface_assets/header.php:94 msgid "Install | Wavelog" -msgstr "" +msgstr "Instalar | Wavelog" #: install/index.php:30 msgid "1. Welcome" -msgstr "" +msgstr "1. Bienvenido" #: install/index.php:33 msgid "2. Pre Checks" -msgstr "" +msgstr "2. Comprobaciones previas" #: install/index.php:36 msgid "3. Configuration" -msgstr "" +msgstr "3. Configuración" #: install/index.php:39 msgid "4. Database" -msgstr "" +msgstr "4. Base de datos" #: install/index.php:42 msgid "5. First User" -msgstr "" +msgstr "5. Primer Usuario" #: install/index.php:45 msgid "6. Finish" -msgstr "" +msgstr "6. Terminar" #: install/index.php:62 msgid "Welcome to the Wavelog Installer" -msgstr "" +msgstr "Bienvenido al Instalador de Wavelog" #: install/index.php:63 msgid "" @@ -159,10 +161,14 @@ msgid "" "logging software. Follow the steps in each tab to configure and install " "Wavelog on your server." msgstr "" +"Este instalador te guiará a través de los pasos necesarios para la " +"instalación de Wavelog.
Wavelog es un potente software de registro de " +"radioaficionados basado en la web. Sigue los pasos en cada pestaña para " +"configurar e instalar Wavelog en tu servidor." #: install/index.php:64 msgid "Discussions" -msgstr "" +msgstr "Discusiones" #: install/index.php:64 #, php-format @@ -170,97 +176,105 @@ msgid "" "If you encounter any issues or have questions, refer to the documentation " "(%s) or community forum (%s) on Github for assistance." msgstr "" +"Si encuentras algún problema o tienes preguntas, consulta la documentación " +"(%s) o el foro de la comunidad (%s) en Github para obtener ayuda." #: install/index.php:64 msgid "Wiki" -msgstr "" +msgstr "Wiki" #: install/index.php:65 msgid "Thank you for installing Wavelog!" -msgstr "" +msgstr "¡Gracias por instalar Wavelog!" #: install/index.php:66 install/index.php:69 install/index.php:1036 msgid "Language" -msgstr "" +msgstr "Idioma" #: install/index.php:79 msgid "Select a language" -msgstr "" +msgstr "Selecciona un idioma" #: install/index.php:91 install/index.php:421 msgid "Close" -msgstr "" +msgstr "Cerrar" #: install/index.php:101 msgid "PHP Modules" -msgstr "" +msgstr "Módulos PHP" #: install/index.php:108 msgid "Version" -msgstr "" +msgstr "Versión" #: install/index.php:109 #, php-format msgctxt "PHP Version" msgid "min. %s (recommended %s+)" -msgstr "" +msgstr "min. %s (recomendado %s+)" #: install/index.php:136 msgid "Installed" -msgstr "" +msgstr "Instalado" #: install/index.php:136 msgid "Not Installed" -msgstr "" +msgstr "No instalado" #: install/index.php:144 msgid "PHP Settings" -msgstr "" +msgstr "Configuraciones de PHP" #: install/index.php:234 msgid "Folder Write Permissions" -msgstr "" +msgstr "Permisos de escritura en la carpeta" #: install/index.php:240 install/index.php:251 install/index.php:262 #: install/index.php:273 install/index.php:284 msgid "Success" -msgstr "" +msgstr "Éxito" #: install/index.php:243 install/index.php:254 install/index.php:265 #: install/index.php:276 install/index.php:287 msgid "Failed" -msgstr "" +msgstr "Fallido" #: install/index.php:294 msgid "Web Server" -msgstr "" +msgstr "Servidor web" #: install/index.php:297 msgid "Version:" -msgstr "" +msgstr "Versión:" #: install/index.php:304 msgid "Important note for nginx users!" -msgstr "" +msgstr "¡Nota importante para los usuarios de nginx!" #: install/index.php:305 msgid "" "Since you are using nginx as web server please make sure that you have made " "the changes described in the Wiki before continuing." msgstr "" +"Dado que estás usando nginx como servidor web, asegúrate de haber realizado " +"los cambios descritos en la Wiki antes de continuar." #: install/index.php:314 msgid "Some Checks have failed!" -msgstr "" +msgstr "¡Algunas verificaciones han fallado!" #: install/index.php:315 msgid "Check your PHP settings and install missing modules if necessary." msgstr "" +"Revisa tu configuración de PHP e instala los módulos que falten si es " +"necesario." #: install/index.php:316 msgid "" "After that, you have to restart your webserver and start the installer again." msgstr "" +"Después de eso, tienes que reiniciar tu servidor web y comenzar el " +"instalador de nuevo." #: install/index.php:317 #, php-format @@ -268,40 +282,48 @@ msgid "" "In case of failed 'Folder Write Permissions' check out our Wiki here." msgstr "" +"En caso de fallo en 'Permisos de Escritura de Carpeta', consulta nuestra " +"Wiki aquí." #: install/index.php:323 msgid "You have some warnings!" -msgstr "" +msgstr "¡Tienes algunas advertencias!" #: install/index.php:324 msgid "" "Some of the settings are not optimal. You can proceed with the installer but " "be aware that you could run into problems while using Wavelog." msgstr "" +"Algunas de las configuraciones no son óptimas. Puedes continuar con el " +"instalador, pero ten en cuenta que podrías tener problemas al usar Wavelog." #: install/index.php:331 msgid "All Checks are OK. You can continue." -msgstr "" +msgstr "Todas las comprobaciones están bien. Puedes continuar." #: install/index.php:345 msgid "" "Configure some basic parameters for your wavelog instance. You can change " "them later in 'application/config/config.php'" msgstr "" +"Configura algunos parámetros básicos para tu instancia de wavelog. Puedes " +"cambiarlos más tarde en 'application/config/config.php'" #: install/index.php:347 msgid "Directory" -msgstr "" +msgstr "Directorio" #: install/index.php:347 msgid "" "The 'Directory' is basically your subfolder of the webroot In normal " "conditions the prefilled value is doing it's job. It also can be empty." msgstr "" +"El 'Directorio' es básicamente tu subcarpeta de la raíz web. En condiciones " +"normales, el valor prellenado hace su trabajo. También puede estar vacío." #: install/index.php:352 msgid "No slash before or after the directory. Just the name of the folder." -msgstr "" +msgstr "Sin barra antes o después del directorio. Solo el nombre de la carpeta." #: install/index.php:357 #, php-format @@ -311,10 +333,14 @@ msgid "" "Proxy with SSL you should type in the new URL here (e.g. %s instead of %s). " "Don't forget to include the directory from above." msgstr "" +"Esta es la URL completa donde estará disponible tu instancia de Wavelog. Si " +"ejecutas este instalador localmente pero quieres colocar Wavelog detrás de " +"un Proxy Inverso con SSL, debes escribir la nueva URL aquí (por ejemplo, %s " +"en lugar de %s). No olvides incluir el directorio de arriba." #: install/index.php:357 msgid "Website URL" -msgstr "" +msgstr "URL del sitio web" #: install/index.php:360 msgid "" @@ -323,10 +349,14 @@ msgid "" "\t\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'
\n" "\t\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'" msgstr "" +"Este campo
\n" +"- no puede estar vacío
\n" +"- debe terminar con una barra 'ejemplo/'
\n" +"- debe comenzar con 'http'" #: install/index.php:367 msgid "Optional: Global Callbook Lookup" -msgstr "" +msgstr "Opcional: Búsqueda en el Callbook Global" #: install/index.php:367 msgid "" @@ -336,124 +366,142 @@ msgid "" "credentials for QRZ.com. To also get the Call Locator in QRZ.com you'll need " "an XML subscription. HamQTH does not always provide the locator information." msgstr "" +"Esta configuración es opcional. La búsqueda de indicativos estará disponible " +"para todos los usuarios de esta instalación. Puedes elegir entre QRZ.com y " +"HamQTH. Mientras que HamQTH también funciona sin nombre de usuario y " +"contraseña, necesitarás credenciales para QRZ.com. Para obtener también el " +"Localizador de Indicativos en QRZ.com necesitarás una suscripción XML. " +"HamQTH no siempre proporciona la información del localizador." #: install/index.php:376 install/index.php:453 install/index.php:905 msgid "Username" -msgstr "" +msgstr "Nombre de usuario" #: install/index.php:379 install/index.php:457 install/index.php:915 msgid "Password" -msgstr "" +msgstr "Contraseña" #: install/index.php:384 msgid "Callbook Username" -msgstr "" +msgstr "Nombre de usuario del Callbook" #: install/index.php:387 msgid "Callbook Password" -msgstr "" +msgstr "Contraseña del Callbook" #: install/index.php:389 #, php-format msgid "Password can't contain %s or be empty" -msgstr "" +msgstr "La contraseña no puede contener %s ni estar vacía" #: install/index.php:394 install/index.php:399 msgid "Advanced Settings" -msgstr "" +msgstr "Configuraciones avanzadas" #: install/index.php:402 msgid "These settings should only be set if you know what you're doing." msgstr "" +"Estas configuraciones solo deben establecerse si sabes lo que estás haciendo." #: install/index.php:405 msgid "Error Logs" -msgstr "" +msgstr "Registros de errores" #: install/index.php:406 msgid "" "Optional: Enable Error Logging by setting the log threshold bigger then 0. " "Only enable this if you really need it." msgstr "" +"Opcional: Habilita el registro de errores configurando el umbral de registro " +"mayor que 0. Solo habilítalo si realmente lo necesitas." #: install/index.php:411 msgid "0 - No logs" -msgstr "" +msgstr "0 - Sin registros" #: install/index.php:412 msgid "1 - Error messages" -msgstr "" +msgstr "1 - Mensajes de error" #: install/index.php:413 msgid "2 - Debug messages" -msgstr "" +msgstr "2 - Mensajes de depuración" #: install/index.php:414 msgid "3 - Info messages" -msgstr "" +msgstr "3 - Mensajes informativos" #: install/index.php:415 msgid "4 - All messages" -msgstr "" +msgstr "4 - Todos los mensajes" #: install/index.php:437 msgid "" "To properly install Wavelog you already should have setup a mariadb/mysql " "database. Provide the parameters here." msgstr "" +"Para instalar correctamente Wavelog, ya deberías haber configurado una base " +"de datos mariadb/mysql. Proporciona los parámetros aquí." #: install/index.php:441 msgid "Hostname or IP" -msgstr "" +msgstr "Nombre de host o IP" #: install/index.php:441 msgid "" "Usually 'localhost'.
Optional with '[host]:[port]'. Default port: 3306." "
In a docker compose install type 'wavelog-db'." msgstr "" +"Normalmente 'localhost'.
Opcional con '[host]:[port]'. Puerto " +"predeterminado: 3306.
En una instalación de docker compose, escribe " +"'wavelog-db'." #: install/index.php:447 msgid "Database Name" -msgstr "" +msgstr "Nombre de la base de datos" #: install/index.php:447 msgid "Name of the Database" -msgstr "" +msgstr "Nombre de la base de datos" #: install/index.php:453 msgid "Username of the Database User which has full access to the database." msgstr "" +"Nombre de usuario de la base de datos que tiene acceso completo a la base de " +"datos." #: install/index.php:457 msgid "Password of the Database User" -msgstr "" +msgstr "Contraseña del Usuario de la Base de Datos" #: install/index.php:461 msgid "Connection Test" -msgstr "" +msgstr "Prueba de conexión" #: install/index.php:472 msgid "" "Now you can create your first user in Wavelog. Fill out all fields and click " "continue. Make sure you use a safe password." msgstr "" +"Ahora puedes crear tu primer usuario en Wavelog. Rellena todos los campos y " +"haz clic en continuar. Asegúrate de usar una contraseña segura." #: install/index.php:473 msgid "All fields are required!" -msgstr "" +msgstr "¡Todos los campos son obligatorios!" #: install/index.php:481 msgid "First Name" -msgstr "" +msgstr "Nombre" #: install/index.php:485 msgid "DXCC" -msgstr "" +msgstr "DXCC" #: install/index.php:487 msgctxt "No DXCC" msgid "- None -" -msgstr "" +msgstr "- Ninguno -" #: install/index.php:488 install/index.php:494 install/index.php:518 #: install/index.php:530 install/index.php:533 install/index.php:538 @@ -477,136 +525,142 @@ msgstr "" #: install/index.php:849 install/index.php:854 install/index.php:880 #: install/index.php:886 install/index.php:888 install/index.php:1700 msgid "Deleted DXCC" -msgstr "" +msgstr "DXCC Eliminado" #: install/index.php:895 msgid "Last Name" -msgstr "" +msgstr "Apellidos" #: install/index.php:899 msgid "Callsign" -msgstr "" +msgstr "Indicativo" #: install/index.php:909 msgid "Gridsquare/Locator" -msgstr "" +msgstr "Cuadrícula/Localizador" #: install/index.php:919 msgid "City" -msgstr "" +msgstr "Ciudad" #: install/index.php:925 msgid "Confirm Password" -msgstr "" +msgstr "Confirmar Contraseña" #: install/index.php:929 msgid "Timezone" -msgstr "" +msgstr "Zona horaria" #: install/index.php:1032 msgid "E-Mail Address" -msgstr "" +msgstr "Dirección de correo electrónico" #: install/index.php:1054 msgid "Checklist" -msgstr "" +msgstr "Lista de verificación" #: install/index.php:1059 msgid "Pre-Checks" -msgstr "" +msgstr "Comprobaciones previas" #: install/index.php:1068 msgid "Configuration" -msgstr "" +msgstr "Configuración" #: install/index.php:1077 msgid "Database" -msgstr "" +msgstr "Base de datos" #: install/index.php:1086 msgid "First User" -msgstr "" +msgstr "Primer Usuario" #: install/index.php:1096 msgid "Nearly done!" -msgstr "" +msgstr "¡Ya casi está!" #: install/index.php:1098 msgid "You prepared all neccessary steps." -msgstr "" +msgstr "Has preparado todos los pasos necesarios." #: install/index.php:1099 msgid "We now can install Wavelog. This process can take a few minutes." -msgstr "" +msgstr "Ahora podemos instalar Wavelog. Este proceso puede tardar unos minutos." #: install/index.php:1105 msgid "Reset" -msgstr "" +msgstr "Restablecer" #: install/index.php:1110 msgid "Installer Reset" -msgstr "" +msgstr "Reinicio del instalador" #: install/index.php:1113 msgid "Do you really want to reset all data and start from scratch?" -msgstr "" +msgstr "¿Realmente quieres restablecer todos los datos y empezar desde cero?" #: install/index.php:1116 msgid "Yes" -msgstr "" +msgstr "Sí" #: install/index.php:1117 msgid "No" -msgstr "" +msgstr "No" #: install/index.php:1127 msgid "Back" -msgstr "" +msgstr "Atrás" #: install/index.php:1128 msgid "Continue" -msgstr "" +msgstr "Continuar" #: install/index.php:1206 msgid "" "You can't continue. Solve the red marked issues, restart the webserver and " "reload this page." msgstr "" +"No puedes continuar. Resuelve los problemas marcados en rojo, reinicia el " +"servidor web y recarga esta página." #: install/index.php:1333 msgid "Password can't contain ' / \\ < >" -msgstr "" +msgstr "La contraseña no puede contener ' / \\ < >" #: install/index.php:1500 msgid "Error: At least Hostname/IP, Database Name and Username are required." msgstr "" +"Error: Se requieren al menos el nombre de host/IP, el nombre de la base de " +"datos y el nombre de usuario." #: install/index.php:1510 msgid "Connecting..." -msgstr "" +msgstr "Conectando..." #: install/index.php:1534 msgid "Connection was successful and your database should be compatible." -msgstr "" +msgstr "La conexión fue exitosa y tu base de datos debería ser compatible." #: install/index.php:1538 msgid "" "Connection was successful but your database seems too old for Wavelog. You " "can try to continue but you could run into issues." msgstr "" +"La conexión fue exitosa, pero tu base de datos parece demasiado antigua para " +"Wavelog. Puedes intentar continuar, pero podrías encontrarte con problemas." #: install/index.php:1538 #, php-format msgid "The min. version for MySQL is %s, for MariaDB it's %s." -msgstr "" +msgstr "La versión mínima para MySQL es %s, para MariaDB es %s." #: install/index.php:1653 msgid "Search" -msgstr "" +msgstr "Buscar" #: install/index.php:1686 msgid "At least one field is empty." -msgstr "" +msgstr "Al menos un campo está vacío." #: install/index.php:1702 msgid "" @@ -614,120 +668,129 @@ msgid "" "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" +"Deténgase aquí un momento. Su DXCC elegido está obsoleto y ya no es válido. " +"Comprueba cuál es el DXCC correcto para esta localización en particular. Si " +"está seguro, ignore esta advertencia." #: install/index.php:1726 msgid "" "The locator seems to be not in the correct format. Should look like AA11AA " "(6-char grid locator)." msgstr "" +"El localizador parece no estar en el formato correcto. Debería verse como " +"AA11AA (localizador de cuadrícula de 6 caracteres)." #: install/index.php:1740 msgid "" "The e-mail adress does not look correct. Make sure it's a valid e-mail " "address" msgstr "" +"La dirección de correo electrónico no parece correcta. Asegúrate de que sea " +"una dirección de correo electrónico válida" #: install/index.php:1767 msgid "Password should be at least 8 characters long" -msgstr "" +msgstr "La contraseña debe tener al menos 8 caracteres de longitud" #: install/index.php:1776 msgid "Passwords do not match" -msgstr "" +msgstr "Las contraseñas no coinciden" #: install/index.php:1823 msgid "Install Now" -msgstr "" +msgstr "Instalar ahora" #: install/index.php:1827 msgid "Install not possible. Checklist incomplete." -msgstr "" +msgstr "Instalación no posible. Lista de verificación incompleta." #: install/index.php:1943 msgid "PHP Module missing" -msgstr "" +msgstr "Módulo PHP faltante" #: install/index.php:1945 msgid "The following PHP modules are missing:" -msgstr "" +msgstr "Faltan los siguientes módulos de PHP:" #: install/index.php:1946 msgid "Without this module the Wavelog Installer does not work!" -msgstr "" +msgstr "¡Sin este módulo, el instalador de Wavelog no funciona!" #: install/index.php:1947 msgid "Please install the required modules and restart the webserver." -msgstr "" +msgstr "Por favor, instala los módulos necesarios y reinicia el servidor web." #: install/run.php:10 msgid "Installation" -msgstr "" +msgstr "Instalación" #: install/run.php:12 msgid "Please wait..." -msgstr "" +msgstr "Por favor espera..." #: install/run.php:15 msgid "Copy config.php to application/config/" -msgstr "" +msgstr "Copia config.php a application/config/" #: install/run.php:18 msgid "Copy database.php to application/config/" -msgstr "" +msgstr "Copia database.php a application/config/" #: install/run.php:21 msgid "Creating database tables" -msgstr "" +msgstr "Creando tablas de base de datos" #: install/run.php:24 msgid "Running database migrations" -msgstr "" +msgstr "Ejecutando migraciones de base de datos" #: install/run.php:27 msgid "Updating DXCC data" -msgstr "" +msgstr "Actualizando datos de DXCC" #: install/run.php:35 msgid "Lock the installer" -msgstr "" +msgstr "Bloquea el instalador" #: install/run.php:39 #, php-format msgid "All install steps went through. Redirect to user login in %s seconds..." msgstr "" +"Todos los pasos de instalación se completaron. Redirigiendo al inicio de " +"sesión del usuario en %s segundos..." #: install/run.php:42 msgid "Done. Go to the user login ->" -msgstr "" +msgstr "Hecho. Ir al inicio de sesión de usuario ->" #: install/run.php:46 install/run.php:125 msgid "Show detailled debug log" -msgstr "" +msgstr "Mostrar registro detallado de depuración" #: install/run.php:127 msgid "Hide detailled debug log" -msgstr "" +msgstr "Ocultar registro de depuración detallado" #: install/run.php:182 msgid "Could not create application/config/config.php" -msgstr "" +msgstr "No se pudo crear application/config/config.php" #: install/run.php:217 msgid "Could not create application/config/database.php" -msgstr "" +msgstr "No se pudo crear application/config/database.php" #: install/run.php:251 msgid "Could not create database tables" -msgstr "" +msgstr "No se pudieron crear las tablas de la base de datos" #: install/run.php:281 msgid "Could not run database migrations" -msgstr "" +msgstr "No se pudieron ejecutar las migraciones de la base de datos" #: install/run.php:309 msgid "Could not update DXCC data" -msgstr "" +msgstr "No se pudo actualizar los datos de DXCC" #: install/run.php:341 msgid "Could not create install/.lock file" -msgstr "" +msgstr "No se pudo crear el archivo install/.lock" diff --git a/install/includes/gettext/locale/fr_FR/LC_MESSAGES/installer.mo b/install/includes/gettext/locale/fr_FR/LC_MESSAGES/installer.mo index e7b42b77f..077d5e069 100644 Binary files a/install/includes/gettext/locale/fr_FR/LC_MESSAGES/installer.mo and b/install/includes/gettext/locale/fr_FR/LC_MESSAGES/installer.mo differ diff --git a/install/includes/gettext/locale/fr_FR/LC_MESSAGES/installer.po b/install/includes/gettext/locale/fr_FR/LC_MESSAGES/installer.po index d45223d7b..c939911b9 100644 --- a/install/includes/gettext/locale/fr_FR/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/fr_FR/LC_MESSAGES/installer.po @@ -4,12 +4,13 @@ # # Byt3 , 2024. # "Francisco (F4VSE)" , 2024. +# "Francisco (F4VSE)" , 2024. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" "POT-Creation-Date: 2024-08-12 09:45+0000\n" -"PO-Revision-Date: 2024-07-22 18:23+0000\n" -"Last-Translator: \"Francisco (F4VSE)\" \n" +"PO-Revision-Date: 2024-08-18 14:15+0000\n" +"Last-Translator: \"Francisco (F4VSE)\" \n" "Language-Team: French \n" "Language: fr_FR\n" @@ -17,35 +18,35 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Weblate 5.6.2\n" +"X-Generator: Weblate 5.7\n" #: install/includes/core/database_class.php:59 msgid "Connection Error: " -msgstr "" +msgstr "Erreur de connexion : " #: install/includes/core/database_class.php:63 msgid "Unable to create database: " -msgstr "" +msgstr "Impossible de créer la base de données : " #: install/includes/core/database_class.php:68 msgid "Unable to select database: " -msgstr "" +msgstr "Impossible de sélectionner la base de données : " #: install/includes/core/database_class.php:74 msgid "Database is not empty." -msgstr "" +msgstr "La base de données n'est pas vide." #: install/includes/install_config/install_lib.php:123 msgid "not detected" -msgstr "" +msgstr "non détecté" #: install/includes/interface_assets/footer.php:50 msgid "Albanian" -msgstr "" +msgstr "Albanais" #: install/includes/interface_assets/footer.php:51 msgid "Bosnian" -msgstr "" +msgstr "Bosniaque" #: install/includes/interface_assets/footer.php:52 msgid "Bulgarian" @@ -57,7 +58,7 @@ msgstr "Chinois (simplifié)" #: install/includes/interface_assets/footer.php:54 msgid "Croatian" -msgstr "" +msgstr "Croate" #: install/includes/interface_assets/footer.php:55 msgid "Czech" @@ -93,7 +94,7 @@ msgstr "Italien" #: install/includes/interface_assets/footer.php:63 msgid "Montenegrin" -msgstr "" +msgstr "Monténégrin" #: install/includes/interface_assets/footer.php:64 msgid "Polish" @@ -101,7 +102,7 @@ msgstr "Polonais" #: install/includes/interface_assets/footer.php:65 msgid "Portuguese" -msgstr "" +msgstr "Portugais" #: install/includes/interface_assets/footer.php:66 msgid "Russian" @@ -109,7 +110,7 @@ msgstr "Russe" #: install/includes/interface_assets/footer.php:67 msgid "Serbian" -msgstr "" +msgstr "Serbe" #: install/includes/interface_assets/footer.php:68 msgid "Spanish" @@ -213,7 +214,7 @@ msgstr "Version" #, php-format msgctxt "PHP Version" msgid "min. %s (recommended %s+)" -msgstr "" +msgstr "min. %s (recommandé %s+)" #: install/index.php:136 msgid "Installed" @@ -229,35 +230,37 @@ msgstr "Paramètres de PHP" #: install/index.php:234 msgid "Folder Write Permissions" -msgstr "" +msgstr "Autorisations d'écriture de dossier" #: install/index.php:240 install/index.php:251 install/index.php:262 #: install/index.php:273 install/index.php:284 msgid "Success" -msgstr "" +msgstr "Succès" #: install/index.php:243 install/index.php:254 install/index.php:265 #: install/index.php:276 install/index.php:287 msgid "Failed" -msgstr "" +msgstr "Échoué" #: install/index.php:294 msgid "Web Server" -msgstr "" +msgstr "Serveur Web" #: install/index.php:297 msgid "Version:" -msgstr "" +msgstr "Version :" #: install/index.php:304 msgid "Important note for nginx users!" -msgstr "" +msgstr "Note importante pour les utilisateurs de nginx !" #: install/index.php:305 msgid "" "Since you are using nginx as web server please make sure that you have made " "the changes described in the Wiki before continuing." msgstr "" +"Puisque vous utilisez nginx comme serveur web, assurez-vous d'avoir effectué " +"les modifications décrites dans la Wiki avant de continuer." #: install/index.php:314 msgid "Some Checks have failed!" @@ -281,6 +284,8 @@ msgid "" "In case of failed 'Folder Write Permissions' check out our Wiki here." msgstr "" +"En cas d'échec de la vérification des 'Permissions d'écriture du dossier', " +"consultez notre Wiki ici." #: install/index.php:323 msgid "You have some warnings!" @@ -323,6 +328,7 @@ msgstr "" #: install/index.php:352 msgid "No slash before or after the directory. Just the name of the folder." msgstr "" +"Pas de barre oblique avant ou après le répertoire. Juste le nom du dossier." #: install/index.php:357 #, php-format @@ -349,6 +355,10 @@ msgid "" "\t\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'
\n" "\t\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'" msgstr "" +"Ce champ
\n" +"- ne peut pas être vide
\n" +"- doit se terminer par une barre oblique 'exemple/'
\n" +"- doit commencer par 'http'" #: install/index.php:367 msgid "Optional: Global Callbook Lookup" @@ -389,45 +399,49 @@ msgstr "Mot de passe du carnet" #: install/index.php:389 #, php-format msgid "Password can't contain %s or be empty" -msgstr "" +msgstr "Le mot de passe ne peut pas contenir %s ou être vide" #: install/index.php:394 install/index.php:399 msgid "Advanced Settings" -msgstr "" +msgstr "Paramètres avancés" #: install/index.php:402 msgid "These settings should only be set if you know what you're doing." msgstr "" +"Ces paramètres ne doivent être définis que si vous savez ce que vous faites." #: install/index.php:405 msgid "Error Logs" -msgstr "" +msgstr "Journaux d'erreurs" #: install/index.php:406 msgid "" "Optional: Enable Error Logging by setting the log threshold bigger then 0. " "Only enable this if you really need it." msgstr "" +"Optionnel : Activer la journalisation des erreurs en définissant le seuil de " +"journalisation supérieur à 0. N'activez cela que si vous en avez vraiment " +"besoin." #: install/index.php:411 msgid "0 - No logs" -msgstr "" +msgstr "0 - Pas de journaux" #: install/index.php:412 msgid "1 - Error messages" -msgstr "" +msgstr "1 - Messages d'erreur" #: install/index.php:413 msgid "2 - Debug messages" -msgstr "" +msgstr "2 - Messages de débogage" #: install/index.php:414 msgid "3 - Info messages" -msgstr "" +msgstr "3 - Messages d'info" #: install/index.php:415 msgid "4 - All messages" -msgstr "" +msgstr "4 - Tous les messages" #: install/index.php:437 msgid "" @@ -446,6 +460,8 @@ msgid "" "Usually 'localhost'.
Optional with '[host]:[port]'. Default port: 3306." "
In a docker compose install type 'wavelog-db'." msgstr "" +"Habituellement 'localhost'.
Optionnel avec '[host]:[port]'. Port par " +"défaut : 3306.
Dans une installation docker compose, tape 'wavelog-db'." #: install/index.php:447 msgid "Database Name" @@ -474,10 +490,13 @@ msgid "" "Now you can create your first user in Wavelog. Fill out all fields and click " "continue. Make sure you use a safe password." msgstr "" +"Vous pouvez maintenant créer votre premier utilisateur dans Wavelog. " +"Remplissez tous les champs et cliquez sur continuer.
Assurez-vous " +"d'utiliser un mot de passe sécurisé." #: install/index.php:473 msgid "All fields are required!" -msgstr "" +msgstr "Tous les champs sont obligatoires !" #: install/index.php:481 msgid "First Name" @@ -550,7 +569,7 @@ msgstr "Liste de verification" #: install/index.php:1059 msgid "Pre-Checks" -msgstr "" +msgstr "Vérifications préalables" #: install/index.php:1068 msgid "Configuration" @@ -580,23 +599,24 @@ msgstr "" #: install/index.php:1105 msgid "Reset" -msgstr "" +msgstr "Réinitialiser" #: install/index.php:1110 msgid "Installer Reset" -msgstr "" +msgstr "Réinitialiser l'installateur" #: install/index.php:1113 msgid "Do you really want to reset all data and start from scratch?" msgstr "" +"Voulez-vous vraiment réinitialiser toutes les données et recommencer à zéro ?" #: install/index.php:1116 msgid "Yes" -msgstr "" +msgstr "Oui" #: install/index.php:1117 msgid "No" -msgstr "" +msgstr "Non" #: install/index.php:1127 msgid "Back" @@ -611,14 +631,18 @@ msgid "" "You can't continue. Solve the red marked issues, restart the webserver and " "reload this page." msgstr "" +"Vous ne pouvez pas continuer. Résolvez les problèmes marqués en rouge, " +"redémarrez le serveur web et rechargez cette page." #: install/index.php:1333 msgid "Password can't contain ' / \\ < >" -msgstr "" +msgstr "Le mot de passe ne peut pas contenir ' / \\ < >" #: install/index.php:1500 msgid "Error: At least Hostname/IP, Database Name and Username are required." msgstr "" +"Erreur : Au moins le nom d'hôte/IP, le nom de la base de données et le nom " +"d'utilisateur sont requis." #: install/index.php:1510 msgid "Connecting..." @@ -627,6 +651,7 @@ msgstr "Connection..." #: install/index.php:1534 msgid "Connection was successful and your database should be compatible." msgstr "" +"La connexion a été réussie et votre base de données devrait être compatible." #: install/index.php:1538 msgid "" @@ -640,15 +665,15 @@ msgstr "" #: install/index.php:1538 #, php-format msgid "The min. version for MySQL is %s, for MariaDB it's %s." -msgstr "" +msgstr "La version min. pour MySQL est %s, pour MariaDB c'est %s." #: install/index.php:1653 msgid "Search" -msgstr "" +msgstr "Chercher" #: install/index.php:1686 msgid "At least one field is empty." -msgstr "" +msgstr "Au moins un champ est vide." #: install/index.php:1702 msgid "" @@ -656,18 +681,25 @@ msgid "" "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" +"Arrêtez-vous ici un moment. Votre DXCC choisi est obsolète et n'est plus " +"valide. Vérifiez quel DXCC pour cet emplacement particulier est le bon. Si " +"vous êtes sûr, ignorez cet avertissement." #: install/index.php:1726 msgid "" "The locator seems to be not in the correct format. Should look like AA11AA " "(6-char grid locator)." msgstr "" +"Le locator ne semble pas être au bon format. Il devrait ressembler à AA11AA (" +"locator de grille à 6 caractères)." #: install/index.php:1740 msgid "" "The e-mail adress does not look correct. Make sure it's a valid e-mail " "address" msgstr "" +"L'adresse e-mail ne semble pas correcte. Assurez-vous qu'il s'agit d'une " +"adresse e-mail valide" #: install/index.php:1767 msgid "Password should be at least 8 characters long" @@ -683,96 +715,98 @@ msgstr "Installer maintenant" #: install/index.php:1827 msgid "Install not possible. Checklist incomplete." -msgstr "" +msgstr "Installation impossible. Liste de verification incomplète." #: install/index.php:1943 msgid "PHP Module missing" -msgstr "" +msgstr "Module PHP manquant" #: install/index.php:1945 msgid "The following PHP modules are missing:" -msgstr "" +msgstr "Les modules PHP suivants sont manquants :" #: install/index.php:1946 msgid "Without this module the Wavelog Installer does not work!" -msgstr "" +msgstr "Sans ce module, l'installateur Wavelog ne fonctionne pas !" #: install/index.php:1947 msgid "Please install the required modules and restart the webserver." -msgstr "" +msgstr "Veuillez installer les modules requis et redémarrer le serveur web." #: install/run.php:10 msgid "Installation" -msgstr "" +msgstr "Installation" #: install/run.php:12 msgid "Please wait..." -msgstr "" +msgstr "Veuillez patienter..." #: install/run.php:15 msgid "Copy config.php to application/config/" -msgstr "" +msgstr "Copier config.php dans application/config/" #: install/run.php:18 msgid "Copy database.php to application/config/" -msgstr "" +msgstr "Copier database.php dans application/config/" #: install/run.php:21 msgid "Creating database tables" -msgstr "" +msgstr "Création de tables de base de données" #: install/run.php:24 msgid "Running database migrations" -msgstr "" +msgstr "Exécution des migrations de base de données" #: install/run.php:27 msgid "Updating DXCC data" -msgstr "" +msgstr "Mise à jour des données DXCC" #: install/run.php:35 msgid "Lock the installer" -msgstr "" +msgstr "Verrouille l'installateur" #: install/run.php:39 #, php-format msgid "All install steps went through. Redirect to user login in %s seconds..." msgstr "" +"Toutes les étapes d'installation ont été effectuées. Redirection vers la " +"connexion utilisateur dans %s secondes..." #: install/run.php:42 msgid "Done. Go to the user login ->" -msgstr "" +msgstr "Fait. Allez à la connexion utilisateur ->" #: install/run.php:46 install/run.php:125 msgid "Show detailled debug log" -msgstr "" +msgstr "Afficher le journal de débogage détaillé" #: install/run.php:127 msgid "Hide detailled debug log" -msgstr "" +msgstr "Masquer le journal de débogage détaillé" #: install/run.php:182 msgid "Could not create application/config/config.php" -msgstr "" +msgstr "Impossible de créer application/config/config.php" #: install/run.php:217 msgid "Could not create application/config/database.php" -msgstr "" +msgstr "Impossible de créer application/config/database.php" #: install/run.php:251 msgid "Could not create database tables" -msgstr "" +msgstr "Impossible de créer les tables de la base de données" #: install/run.php:281 msgid "Could not run database migrations" -msgstr "" +msgstr "Impossible d'exécuter les migrations de la base de données" #: install/run.php:309 msgid "Could not update DXCC data" -msgstr "" +msgstr "Impossible de mettre à jour les données DXCC" #: install/run.php:341 msgid "Could not create install/.lock file" -msgstr "" +msgstr "Impossible de créer le fichier install/.lock" #~ msgid "On" #~ msgstr "Allumé" diff --git a/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.mo b/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.mo index 18de14937..34db86ae8 100644 Binary files a/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.mo and b/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.mo differ diff --git a/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.po b/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.po index 4ce291bfc..d91c4a2b9 100644 --- a/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.po @@ -3,12 +3,13 @@ # This file is distributed under the MIT licence. # # Luca , 2024. +# "Francisco (F4VSE)" , 2024. 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-09 07:24+0000\n" -"Last-Translator: Luca \n" +"PO-Revision-Date: 2024-08-18 19:11+0000\n" +"Last-Translator: \"Francisco (F4VSE)\" \n" "Language-Team: Italian \n" "Language: it_IT\n" @@ -16,143 +17,143 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.6.2\n" +"X-Generator: Weblate 5.7\n" #: install/includes/core/database_class.php:59 msgid "Connection Error: " -msgstr "" +msgstr "Errore di connessione: " #: install/includes/core/database_class.php:63 msgid "Unable to create database: " -msgstr "" +msgstr "Impossibile creare il database: " #: install/includes/core/database_class.php:68 msgid "Unable to select database: " -msgstr "" +msgstr "Impossibile selezionare il database: " #: install/includes/core/database_class.php:74 msgid "Database is not empty." -msgstr "" +msgstr "Il database non è vuoto." #: install/includes/install_config/install_lib.php:123 msgid "not detected" -msgstr "" +msgstr "non rilevato" #: install/includes/interface_assets/footer.php:50 msgid "Albanian" -msgstr "" +msgstr "Albanese" #: install/includes/interface_assets/footer.php:51 msgid "Bosnian" -msgstr "" +msgstr "Bosniaco" #: install/includes/interface_assets/footer.php:52 msgid "Bulgarian" -msgstr "" +msgstr "Bulgaro" #: install/includes/interface_assets/footer.php:53 msgid "Chinese (Simplified)" -msgstr "" +msgstr "Cinese (semplificato)" #: install/includes/interface_assets/footer.php:54 msgid "Croatian" -msgstr "" +msgstr "Croato" #: install/includes/interface_assets/footer.php:55 msgid "Czech" -msgstr "" +msgstr "Ceco" #: install/includes/interface_assets/footer.php:56 msgid "Dutch" -msgstr "" +msgstr "Olandese" #: install/includes/interface_assets/footer.php:57 msgid "English" -msgstr "" +msgstr "Inglese" #: install/includes/interface_assets/footer.php:58 msgid "Finnish" -msgstr "" +msgstr "Finlandese" #: install/includes/interface_assets/footer.php:59 msgid "French" -msgstr "" +msgstr "Francese" #: install/includes/interface_assets/footer.php:60 msgid "German" -msgstr "" +msgstr "Tedesco" #: install/includes/interface_assets/footer.php:61 msgid "Greek" -msgstr "" +msgstr "Greco" #: install/includes/interface_assets/footer.php:62 msgid "Italian" -msgstr "" +msgstr "Italiano" #: install/includes/interface_assets/footer.php:63 msgid "Montenegrin" -msgstr "" +msgstr "Montenegrino" #: install/includes/interface_assets/footer.php:64 msgid "Polish" -msgstr "" +msgstr "Polacco" #: install/includes/interface_assets/footer.php:65 msgid "Portuguese" -msgstr "" +msgstr "Portoghese" #: install/includes/interface_assets/footer.php:66 msgid "Russian" -msgstr "" +msgstr "Russo" #: install/includes/interface_assets/footer.php:67 msgid "Serbian" -msgstr "" +msgstr "Serbo" #: install/includes/interface_assets/footer.php:68 msgid "Spanish" -msgstr "" +msgstr "Spagnolo" #: install/includes/interface_assets/footer.php:69 msgid "Swedish" -msgstr "" +msgstr "Svedese" #: install/includes/interface_assets/footer.php:70 msgid "Turkish" -msgstr "" +msgstr "Turco" #: install/includes/interface_assets/header.php:94 msgid "Install | Wavelog" -msgstr "" +msgstr "Installa | Wavelog" #: install/index.php:30 msgid "1. Welcome" -msgstr "" +msgstr "1. Benvenuto" #: install/index.php:33 msgid "2. Pre Checks" -msgstr "" +msgstr "2. Controlli preliminari" #: install/index.php:36 msgid "3. Configuration" -msgstr "" +msgstr "3. Configurazione" #: install/index.php:39 msgid "4. Database" -msgstr "" +msgstr "4. Database" #: install/index.php:42 msgid "5. First User" -msgstr "" +msgstr "5. Primo Utente" #: install/index.php:45 msgid "6. Finish" -msgstr "" +msgstr "6. Finisci" #: install/index.php:62 msgid "Welcome to the Wavelog Installer" -msgstr "" +msgstr "Benvenuto nell'installatore di Wavelog" #: install/index.php:63 msgid "" @@ -161,10 +162,14 @@ msgid "" "logging software. Follow the steps in each tab to configure and install " "Wavelog on your server." msgstr "" +"Questo programma di installazione ti guiderà attraverso i passaggi necessari " +"per l'installazione di Wavelog.
Wavelog è un potente software di " +"registrazione per radioamatori basato sul web. Segui i passaggi in ciascuna " +"scheda per configurare e installare Wavelog sul tuo server." #: install/index.php:64 msgid "Discussions" -msgstr "" +msgstr "Discussioni" #: install/index.php:64 #, php-format @@ -172,97 +177,104 @@ msgid "" "If you encounter any issues or have questions, refer to the documentation " "(%s) or community forum (%s) on Github for assistance." msgstr "" +"Se riscontri problemi o hai domande, consulta la documentazione (%s) o il " +"forum della community (%s) su Github per assistenza." #: install/index.php:64 msgid "Wiki" -msgstr "" +msgstr "Wiki" #: install/index.php:65 msgid "Thank you for installing Wavelog!" -msgstr "" +msgstr "Grazie per aver installato Wavelog!" #: install/index.php:66 install/index.php:69 install/index.php:1036 msgid "Language" -msgstr "" +msgstr "Lingua" #: install/index.php:79 msgid "Select a language" -msgstr "" +msgstr "Seleziona una lingua" #: install/index.php:91 install/index.php:421 msgid "Close" -msgstr "" +msgstr "Chiudi" #: install/index.php:101 msgid "PHP Modules" -msgstr "" +msgstr "Moduli PHP" #: install/index.php:108 msgid "Version" -msgstr "" +msgstr "Versione" #: install/index.php:109 #, php-format msgctxt "PHP Version" msgid "min. %s (recommended %s+)" -msgstr "" +msgstr "min. %s (consigliato %s+)" #: install/index.php:136 msgid "Installed" -msgstr "" +msgstr "Installato" #: install/index.php:136 msgid "Not Installed" -msgstr "" +msgstr "Non installato" #: install/index.php:144 msgid "PHP Settings" -msgstr "" +msgstr "Impostazioni PHP" #: install/index.php:234 msgid "Folder Write Permissions" -msgstr "" +msgstr "Autorizzazioni di scrittura della cartella" #: install/index.php:240 install/index.php:251 install/index.php:262 #: install/index.php:273 install/index.php:284 msgid "Success" -msgstr "" +msgstr "Successo" #: install/index.php:243 install/index.php:254 install/index.php:265 #: install/index.php:276 install/index.php:287 msgid "Failed" -msgstr "" +msgstr "Fallito" #: install/index.php:294 msgid "Web Server" -msgstr "" +msgstr "Server Web" #: install/index.php:297 msgid "Version:" -msgstr "" +msgstr "Versione:" #: install/index.php:304 msgid "Important note for nginx users!" -msgstr "" +msgstr "Nota importante per gli utenti di nginx!" #: install/index.php:305 msgid "" "Since you are using nginx as web server please make sure that you have made " "the changes described in the Wiki before continuing." msgstr "" +"Dal momento che stai usando nginx come server web, assicurati di aver " +"apportato le modifiche descritte nel Wiki prima di continuare." #: install/index.php:314 msgid "Some Checks have failed!" -msgstr "" +msgstr "Alcuni controlli sono falliti!" #: install/index.php:315 msgid "Check your PHP settings and install missing modules if necessary." msgstr "" +"Controlla le impostazioni di PHP e installa i moduli mancanti se necessario." #: install/index.php:316 msgid "" "After that, you have to restart your webserver and start the installer again." msgstr "" +"Dopo di che, devi riavviare il tuo server web e avviare di nuovo " +"l'installatore." #: install/index.php:317 #, php-format @@ -270,26 +282,33 @@ msgid "" "In case of failed 'Folder Write Permissions' check out our Wiki here." msgstr "" +"In caso di fallimento del controllo 'Permessi di scrittura della cartella', " +"consulta il nostro Wiki qui." #: install/index.php:323 msgid "You have some warnings!" -msgstr "" +msgstr "Hai degli avvertimenti!" #: install/index.php:324 msgid "" "Some of the settings are not optimal. You can proceed with the installer but " "be aware that you could run into problems while using Wavelog." msgstr "" +"Alcune delle impostazioni non sono ottimali. Puoi procedere con " +"l'installazione, ma tieni presente che potresti incontrare problemi durante " +"l'uso di Wavelog." #: install/index.php:331 msgid "All Checks are OK. You can continue." -msgstr "" +msgstr "Tutti i controlli sono OK. Puoi continuare." #: install/index.php:345 msgid "" "Configure some basic parameters for your wavelog instance. You can change " "them later in 'application/config/config.php'" msgstr "" +"Configura alcuni parametri di base per la tua istanza wavelog. Puoi " +"cambiarli successivamente in 'application/config/config.php'" #: install/index.php:347 msgid "Directory" diff --git a/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.mo b/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.mo index 0329d3352..9a8af3afc 100644 Binary files a/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.mo and b/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.mo differ diff --git a/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.po b/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.po index 5511d74ba..88bbbbd7d 100644 --- a/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.po @@ -5,12 +5,13 @@ # Michael Skolsky , 2024. # Florian Wolters , 2024. # Fabian Berg , 2024. +# "Francisco (F4VSE)" , 2024. 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-12 08:57+0000\n" -"Last-Translator: Michael Skolsky \n" +"PO-Revision-Date: 2024-08-18 19:11+0000\n" +"Last-Translator: \"Francisco (F4VSE)\" \n" "Language-Team: Russian \n" "Language: ru_RU\n" @@ -18,7 +19,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Weblate 5.6.2\n" +"X-Generator: Weblate 5.7\n" #: install/includes/core/database_class.php:59 msgid "Connection Error: " @@ -42,11 +43,11 @@ msgstr "не обнаружено" #: install/includes/interface_assets/footer.php:50 msgid "Albanian" -msgstr "" +msgstr "Албанский" #: install/includes/interface_assets/footer.php:51 msgid "Bosnian" -msgstr "" +msgstr "Боснийский" #: install/includes/interface_assets/footer.php:52 msgid "Bulgarian" @@ -58,7 +59,7 @@ msgstr "Китайский (упрощённый)" #: install/includes/interface_assets/footer.php:54 msgid "Croatian" -msgstr "" +msgstr "Хорватский" #: install/includes/interface_assets/footer.php:55 msgid "Czech" @@ -94,7 +95,7 @@ msgstr "Итальянский" #: install/includes/interface_assets/footer.php:63 msgid "Montenegrin" -msgstr "" +msgstr "Черногорский" #: install/includes/interface_assets/footer.php:64 msgid "Polish" @@ -110,7 +111,7 @@ msgstr "Русский" #: install/includes/interface_assets/footer.php:67 msgid "Serbian" -msgstr "" +msgstr "Сербский" #: install/includes/interface_assets/footer.php:68 msgid "Spanish" diff --git a/install/includes/gettext/locale/sr/LC_MESSAGES/installer.mo b/install/includes/gettext/locale/sr/LC_MESSAGES/installer.mo index f018fbc46..8b4ed89a6 100644 Binary files a/install/includes/gettext/locale/sr/LC_MESSAGES/installer.mo and b/install/includes/gettext/locale/sr/LC_MESSAGES/installer.mo differ diff --git a/install/includes/gettext/locale/sr/LC_MESSAGES/installer.po b/install/includes/gettext/locale/sr/LC_MESSAGES/installer.po index 984eed4a7..848b21433 100644 --- a/install/includes/gettext/locale/sr/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/sr/LC_MESSAGES/installer.po @@ -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 19:24+0000\n" +"PO-Revision-Date: 2024-08-18 19:11+0000\n" "Last-Translator: Dragan Đorđević <4o4a.dragan@gmail.com>\n" "Language-Team: Serbian \n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 5.6.2\n" +"X-Generator: Weblate 5.7\n" #: install/includes/core/database_class.php:59 msgid "Connection Error: " @@ -299,7 +299,7 @@ msgstr "" #: install/index.php:331 msgid "All Checks are OK. You can continue." -msgstr "Sve provere su OK. Možete nastaviti." +msgstr "Sve provere su u redu. Možete nastaviti." #: install/index.php:345 msgid ""