ready 2.6.18
这个提交包含在:
当前提交
54fae037a8
共有 40 个文件被更改,包括 2436 次插入 和 2058 次删除
|
|
@ -22,7 +22,7 @@ $config['migration_enabled'] = TRUE;
|
|||
|
|
||||
*/
|
||||
|
||||
$config['migration_version'] = 195;
|
||||
$config['migration_version'] = 196;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
|
|||
文件差异内容过多而无法显示
加载差异
|
|
@ -195,89 +195,237 @@ class Qrz extends CI_Controller {
|
|||
// Query the logbook to determine when the last LoTW confirmation was
|
||||
$qrz_last_date = null;
|
||||
}
|
||||
$this->download($this->session->userdata('user_id'),$qrz_last_date,true);
|
||||
$this->download($this->session->userdata('user_id'),true);
|
||||
} // end function
|
||||
|
||||
function download($user_id_to_load = null, $lastqrz = null, $show_views = false) {
|
||||
function download($user_id_to_load = null, $show_views = false) { // Remove $lastqrz parameter
|
||||
$this->load->model('user_model');
|
||||
$this->load->model('logbook_model');
|
||||
|
||||
|
||||
$api_keys = $this->logbook_model->get_qrz_apikeys();
|
||||
$total_processed_count = 0; // Initialize total count here
|
||||
$data = []; // Initialize data array
|
||||
|
||||
if ($api_keys) {
|
||||
foreach ($api_keys as $station) {
|
||||
if ((($user_id_to_load != null) && ($user_id_to_load != $station->user_id))) { // Skip User if we're called with a specific user_id
|
||||
continue;
|
||||
}
|
||||
if ($lastqrz == null) {
|
||||
$lastqrz = $this->logbook_model->qrz_last_qsl_date($station->user_id);
|
||||
}
|
||||
|
||||
// Remove the block checking for $lastqrz == null and fetching the date
|
||||
$qrz_api_key = $station->qrzapikey;
|
||||
$result=($this->mass_download_qsos($qrz_api_key, $lastqrz));
|
||||
if (isset($result['tableheaders'])) {
|
||||
$data['tableheaders']=$result['tableheaders'];
|
||||
if (isset($data['table'])) {
|
||||
$data['table'].=$result['table'];
|
||||
} else {
|
||||
$data['table']=$result['table'];
|
||||
$result = $this->mass_download_qsos($qrz_api_key); // mass_download_qsos returns ['table_data' => ..., 'processed_count' => ...] or ['status' => 'error', 'message' => ...]
|
||||
|
||||
|
||||
if ($result !== false && isset($result['processed_count'])) {
|
||||
$total_processed_count += $result['processed_count']; // Accumulate count
|
||||
$table_data = $result['table_data'];
|
||||
|
||||
if (isset($table_data['tableheaders'])) {
|
||||
// Ensure headers are set only once
|
||||
if (!isset($data['tableheaders'])) {
|
||||
$data['tableheaders'] = $table_data['tableheaders'];
|
||||
}
|
||||
if (isset($table_data['table']) && $table_data['table'] != '') {
|
||||
if (isset($data['table'])) {
|
||||
$data['table'] .= $table_data['table'];
|
||||
} else {
|
||||
$data['table'] = $table_data['table'];
|
||||
}
|
||||
}
|
||||
}
|
||||
} else if (is_array($result) && isset($result['status']) && $result['status'] === 'error') {
|
||||
// Handle specific error structure returned by mass_download_qsos
|
||||
log_message('error', "Error during QRZ download for user_id: " . $station->user_id . ". Message: " . $result['message']);
|
||||
// Optionally echo error to user if $show_views is true, or add to $data['error']
|
||||
if ($show_views) {
|
||||
$data['errors'][] = "Error for user ID " . $station->user_id . ": " . $result['message'];
|
||||
}
|
||||
} else {
|
||||
// Catch-all for unexpected return values (like the old boolean false or other issues)
|
||||
log_message('error', "Unexpected error or empty result returned from mass_download_qsos for API key associated with user_id: " . $station->user_id);
|
||||
if ($show_views) {
|
||||
$data['errors'][] = "Unexpected error during download for user ID " . $station->user_id . ". Check system logs.";
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
echo "No station profiles with a QRZ API Key found.";
|
||||
log_message('error', "No station profiles with a QRZ API Key found.");
|
||||
// If no keys, we can exit early if showing views, or just let it fall through if not.
|
||||
if ($show_views) {
|
||||
$data['page_title'] = "QRZ ADIF Information";
|
||||
$data['error'] = "No station profiles with a QRZ API Key found.";
|
||||
$this->load->view('interface_assets/header', $data);
|
||||
$this->load->view('qrz/analysis', $data); // Assuming view can show $error
|
||||
$this->load->view('interface_assets/footer');
|
||||
return; // Stop further processing
|
||||
} else {
|
||||
return ''; // Return empty if not showing views and no keys found
|
||||
}
|
||||
}
|
||||
|
||||
$this->load->model('user_model');
|
||||
if ($this->user_model->authorize(2)) { // Only Output results if authorized User
|
||||
if(isset($data['tableheaders'])) {
|
||||
if ($data['table'] != '') {
|
||||
$data['table'].='</table>';
|
||||
}
|
||||
if($show_views == TRUE) {
|
||||
$data['page_title'] = "QRZ ADIF Information";
|
||||
$this->load->view('interface_assets/header', $data);
|
||||
$this->load->view('qrz/analysis');
|
||||
// Pass potential errors to the view
|
||||
if (isset($data['errors'])) {
|
||||
$view_data['errors'] = $data['errors'];
|
||||
}
|
||||
|
||||
$has_matches_to_display = (isset($data['tableheaders']) && isset($data['table']) && $data['table'] != '');
|
||||
$message = "Downloaded and processed " . $total_processed_count . " QSOs from QRZ.";
|
||||
|
||||
if ($has_matches_to_display) {
|
||||
$message .= " Matching QSOs found and updated.";
|
||||
if ($show_views == TRUE) {
|
||||
$view_data['tableheaders'] = $data['tableheaders'];
|
||||
$view_data['table'] = $data['table'] . '</table>';
|
||||
$view_data['page_title'] = "QRZ ADIF Information";
|
||||
$this->load->view('interface_assets/header', $view_data);
|
||||
$this->load->view('qrz/analysis', $view_data); // Pass $view_data containing table headers, rows, and errors
|
||||
$this->load->view('interface_assets/footer');
|
||||
} else {
|
||||
echo $message; // Echo message when not showing views but matches were found
|
||||
// Optionally echo errors if any occurred
|
||||
if (isset($data['errors'])) {
|
||||
echo " Errors encountered: " . implode("; ", $data['errors']);
|
||||
}
|
||||
return '';
|
||||
}
|
||||
} else {
|
||||
echo "Downloaded QRZ report contains no matches.";
|
||||
// No matches found in the logbook
|
||||
$message .= " No matching QSOs found in your logbook to update.";
|
||||
if ($show_views == TRUE) {
|
||||
$view_data['page_title'] = "QRZ ADIF Information";
|
||||
$view_data['info_message'] = $message; // Pass the info message to the view
|
||||
// Errors are already in $view_data if they exist
|
||||
$this->load->view('interface_assets/header', $view_data);
|
||||
$this->load->view('qrz/analysis', $view_data); // Load view, assuming it checks for $info_message and $errors
|
||||
$this->load->view('interface_assets/footer');
|
||||
} else {
|
||||
echo $message; // Echo message when not showing views and no matches found
|
||||
// Optionally echo errors if any occurred
|
||||
if (isset($data['errors'])) {
|
||||
echo " Errors encountered: " . implode("; ", $data['errors']);
|
||||
}
|
||||
return '';
|
||||
}
|
||||
}
|
||||
}
|
||||
} // End authorize check
|
||||
}
|
||||
|
||||
function mass_download_qsos($qrz_api_key = '', $lastqrz = '1900-01-01', $trusted = false) {
|
||||
function mass_download_qsos($qrz_api_key = '', $trusted = false) { // Remove $lastqrz parameter
|
||||
$config['upload_path'] = './uploads/';
|
||||
$file = $config['upload_path'] . 'qrzcom_download_report.adi';
|
||||
if (file_exists($file) && ! is_writable($file)) {
|
||||
$result = "Temporary download file ".$file." is not writable. Aborting!";
|
||||
return false;
|
||||
// This part is fine - checks local file writability
|
||||
$error_message = "Temporary download file ".$file." is not writable. Aborting!";
|
||||
// Return the structured error array here too for consistency
|
||||
return ['status' => 'error', 'message' => $error_message];
|
||||
}
|
||||
$url = 'http://logbook.qrz.com/api';
|
||||
$url = 'http://logbook.qrz.com/api'; // Correct URL
|
||||
|
||||
$post_data['KEY'] = $qrz_api_key;
|
||||
$post_data['ACTION'] = 'FETCH';
|
||||
$post_data['OPTION'] = 'MODSINCE:'.$lastqrz.';STATUS:CONFIRMED;TYPE:ADIF';
|
||||
$post_data['KEY'] = $qrz_api_key; // Correct parameter
|
||||
$post_data['ACTION'] = 'FETCH'; // Correct parameter
|
||||
$post_data['OPTION'] = 'TYPE:ADIF'; // Correct parameter for fetching all confirmed in ADIF
|
||||
|
||||
$ch = curl_init( $url );
|
||||
curl_setopt( $ch, CURLOPT_POST, true);
|
||||
curl_setopt( $ch, CURLOPT_POSTFIELDS, $post_data);
|
||||
curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, 1);
|
||||
curl_setopt( $ch, CURLOPT_HEADER, 0);
|
||||
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true);
|
||||
curl_setopt( $ch, CURLOPT_POST, true); // Correct method
|
||||
curl_setopt( $ch, CURLOPT_POSTFIELDS, $post_data); // Correct data
|
||||
curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, 1); // Okay
|
||||
curl_setopt( $ch, CURLOPT_HEADER, 0); // Correct - don't need response headers
|
||||
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true); // Correct - get response as string
|
||||
|
||||
$content = htmlspecialchars_decode(curl_exec($ch));
|
||||
file_put_contents($file, $content);
|
||||
if (strlen(file_get_contents($file, false, null, 0, 100))!=100) {
|
||||
$result = "QRZ downloading failed, either due to it being down or incorrect logins.";
|
||||
return "false";
|
||||
$content = curl_exec($ch); // Get raw content
|
||||
$curl_error = curl_error($ch); // Check for cURL errors
|
||||
curl_close($ch);
|
||||
|
||||
// Find the start of the ADIF data after "ADIF="
|
||||
$adif_start_pos = strpos($content, 'ADIF=');
|
||||
if ($adif_start_pos !== false) {
|
||||
// Extract the content starting after "ADIF="
|
||||
$content = substr($content, $adif_start_pos + 5);
|
||||
} else {
|
||||
// If "ADIF=" is not found, check for potential errors before assuming it's just ADIF
|
||||
if (strpos($content, 'STATUS=FAIL') !== false || strpos($content, 'STATUS=AUTH') !== false) {
|
||||
// Handle API errors even if ADIF= is missing
|
||||
$reason = $content;
|
||||
if (preg_match('/REASON=([^&]+)/', $content, $matches)) {
|
||||
$reason = urldecode($matches[1]); // Decode URL encoded reason
|
||||
}
|
||||
$error_message = "QRZ API Error: " . $reason;
|
||||
log_message('error', $error_message . ' API Key used: ' . $qrz_api_key . ' Raw Response: ' . $content);
|
||||
return ['status' => 'error', 'message' => $error_message];
|
||||
}
|
||||
// If no error status and no ADIF=, maybe it's just ADIF? Or an unknown error.
|
||||
// Log a warning if content seems unusual but doesn't match known error patterns.
|
||||
if (trim($content) === '' || strlen(trim($content)) < 10) { // Arbitrary small length check
|
||||
log_message('error', 'QRZ download: Received unexpected content without ADIF= prefix or known error status. Content: ' . $content);
|
||||
// Decide if this should be treated as an error or empty ADIF
|
||||
// For now, let's treat it as potentially empty/invalid ADIF and let loadFromFile handle it.
|
||||
}
|
||||
}
|
||||
|
||||
// Also remove the trailing metadata like &RESULT=OK&COUNT=... or just &COUNT=...
|
||||
$result_pos = strpos($content, '&RESULT=');
|
||||
$count_pos = strpos($content, '&COUNT=');
|
||||
|
||||
$truncate_pos = false;
|
||||
|
||||
if ($result_pos !== false && $count_pos !== false) {
|
||||
// Both found, take the earlier one
|
||||
$truncate_pos = min($result_pos, $count_pos);
|
||||
} elseif ($result_pos !== false) {
|
||||
// Only RESULT found
|
||||
$truncate_pos = $result_pos;
|
||||
} elseif ($count_pos !== false) {
|
||||
// Only COUNT found
|
||||
$truncate_pos = $count_pos;
|
||||
}
|
||||
|
||||
if ($truncate_pos !== false) {
|
||||
$content = substr($content, 0, $truncate_pos);
|
||||
}
|
||||
|
||||
if ($curl_error) { // Check for cURL level errors first
|
||||
$error_message = "QRZ download cURL error: " . $curl_error;
|
||||
log_message('error', $error_message . ' API Key used: ' . $qrz_api_key);
|
||||
return ['status' => 'error', 'message' => $error_message];
|
||||
}
|
||||
|
||||
if ($content === false || $content === '') { // Check if curl_exec failed or returned empty
|
||||
$error_message = "QRZ download failed: No content received from QRZ.com.";
|
||||
log_message('error', $error_message . ' API Key used: ' . $qrz_api_key);
|
||||
return ['status' => 'error', 'message' => $error_message];
|
||||
}
|
||||
|
||||
// Check for QRZ API specific error messages
|
||||
if (strpos($content, 'STATUS=FAIL') !== false || strpos($content, 'STATUS=AUTH') !== false) {
|
||||
// Extract reason if possible, otherwise use full content
|
||||
$reason = $content;
|
||||
if (preg_match('/REASON=([^&]+)/', $content, $matches)) {
|
||||
$reason = urldecode($matches[1]); // Decode URL encoded reason
|
||||
}
|
||||
$error_message = "QRZ API Error: " . $reason;
|
||||
log_message('error', $error_message . ' API Key used: ' . $qrz_api_key . ' Raw Response: ' . $content);
|
||||
return ['status' => 'error', 'message' => $error_message];
|
||||
}
|
||||
|
||||
$content = html_entity_decode($content, ENT_QUOTES | ENT_HTML5, 'UTF-8');
|
||||
|
||||
// Save the potentially valid content
|
||||
if (file_put_contents($file, $content) === false) {
|
||||
$error_message = "Failed to write downloaded QRZ data to temporary file: " . $file;
|
||||
log_message('error', $error_message);
|
||||
return ['status' => 'error', 'message' => $error_message];
|
||||
} else {
|
||||
// echo "Downloaded QRZ data to temporary file: " . $file;
|
||||
}
|
||||
|
||||
// Proceed to load from the file
|
||||
ini_set('memory_limit', '-1');
|
||||
$result = $this->loadFromFile($file);
|
||||
$result = $this->loadFromFile($file); // loadFromFile returns ['table_data' => ..., 'processed_count' => ...]
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
|
@ -302,9 +450,17 @@ class Qrz extends CI_Controller {
|
|||
|
||||
$this->load->library('adif_parser');
|
||||
|
||||
$this->adif_parser->load_from_file($filepath);
|
||||
// Load the data from the file into the parser object
|
||||
$this->adif_parser->load_from_file($filepath); // <-- ADD THIS LINE
|
||||
|
||||
// Now initialize the parser with the loaded data
|
||||
if (!$this->adif_parser->initialize()) { // Check return value of initialize
|
||||
// Handle initialization error (e.g., log it, return error structure)
|
||||
log_message('error', 'ADIF Parser initialization failed for file: ' . $filepath);
|
||||
// Return an error structure consistent with mass_download_qsos
|
||||
return ['status' => 'error', 'message' => 'ADIF Parser initialization failed. Check logs.'];
|
||||
}
|
||||
|
||||
$this->adif_parser->initialize();
|
||||
$tableheaders = "<table width=\"100%\">";
|
||||
$tableheaders .= "<tr class=\"titles\">";
|
||||
$tableheaders .= "<td>Station Callsign</td>";
|
||||
|
|
@ -313,57 +469,54 @@ class Qrz extends CI_Controller {
|
|||
$tableheaders .= "<td>Mode</td>";
|
||||
$tableheaders .= "<td>QRZ QSL Received</td>";
|
||||
$tableheaders .= "<td>QRZ Confirmed</td>";
|
||||
$tableheaders .= "<td>Log Status</td>";
|
||||
$tableheaders .= "</tr>";
|
||||
|
||||
$table = "";
|
||||
while($record = $this->adif_parser->get_record()) {
|
||||
$batch_data = [];
|
||||
$batch_size = 500; // Process 500 records at a time
|
||||
$record_count = 0; // Initialize record counter
|
||||
while ($record = $this->adif_parser->get_record()) {
|
||||
$record_count++; // Increment counter for each record read
|
||||
if ((!(isset($record['app_qrzlog_qsldate']))) || (!(isset($record['qso_date'])))) {
|
||||
continue;
|
||||
}
|
||||
$time_on = date('Y-m-d', strtotime($record['qso_date'])) ." ".date('H:i', strtotime($record['time_on']));
|
||||
|
||||
$qsl_date = date('Y-m-d', strtotime($record['app_qrzlog_qsldate']));
|
||||
|
||||
if (isset($record['time_off'])) {
|
||||
$time_off = date('Y-m-d', strtotime($record['qso_date'])) ." ".date('H:i', strtotime($record['time_off']));
|
||||
} else {
|
||||
$time_off = date('Y-m-d', strtotime($record['qso_date'])) ." ".date('H:i', strtotime($record['time_on']));
|
||||
}
|
||||
|
||||
// If we have a positive match from LoTW, record it in the DB according to the user's preferences
|
||||
if ($record['app_qrzlog_status'] == "C") {
|
||||
$record['qsl_rcvd'] = $config['qrz_rcvd_mark'];
|
||||
$qsl_rcvd = ''; // Default empty
|
||||
if (isset($record['app_qrzlog_status']) && $record['app_qrzlog_status'] == "C") {
|
||||
$qsl_rcvd = $config['qrz_rcvd_mark'];
|
||||
}
|
||||
|
||||
$record['call']=str_replace("_","/",$record['call']);
|
||||
$record['station_callsign']=str_replace("_","/",$record['station_callsign']);
|
||||
$status = $this->logbook_model->import_check($time_on, $record['call'], $record['band'], $record['mode'], $record['station_callsign']);
|
||||
$call = str_replace("_","/",$record['call']);
|
||||
$station_callsign = str_replace("_","/",$record['station_callsign']);
|
||||
$band = $record['band'] ?? ''; // Ensure band exists
|
||||
$mode = $record['mode'] ?? ''; // Ensure mode exists
|
||||
|
||||
if($status[0] == "Found") {
|
||||
$qrz_status = $this->logbook_model->qrz_update($time_on, $record['call'], $record['band'], $qsl_date, $record['qsl_rcvd'],$record['station_callsign']);
|
||||
// Add record data to batch
|
||||
$batch_data[] = [
|
||||
'time_on' => $time_on,
|
||||
'call' => $call,
|
||||
'band' => $band,
|
||||
'mode' => $mode,
|
||||
'station_callsign' => $station_callsign,
|
||||
'qsl_date' => $qsl_date,
|
||||
'qsl_rcvd' => $qsl_rcvd
|
||||
];
|
||||
|
||||
$table .= "<tr>";
|
||||
$table .= "<td>".$record['station_callsign']."</td>";
|
||||
$table .= "<td>".$time_on."</td>";
|
||||
$table .= "<td>".$record['call']."</td>";
|
||||
$table .= "<td>".$record['mode']."</td>";
|
||||
$table .= "<td>".$record['qsl_rcvd']."</td>";
|
||||
$table .= "<td>".$qsl_date."</td>";
|
||||
$table .= "<td>QSO Record: ".$status[0]."</td>";
|
||||
$table .= "</tr>";
|
||||
} else {
|
||||
$table .= "<tr>";
|
||||
$table .= "<td>".$record['station_callsign']."</td>";
|
||||
$table .= "<td>".$time_on."</td>";
|
||||
$table .= "<td>".$record['call']."</td>";
|
||||
$table .= "<td>".$record['mode']."</td>";
|
||||
$table .= "<td>".$record['qsl_rcvd']."</td>";
|
||||
$table .= "<td>QSO Record: ".$status[0]."</td>";
|
||||
$table .= "</tr>";
|
||||
// If batch size reached, process it
|
||||
if (count($batch_data) >= $batch_size) {
|
||||
$table .= $this->logbook_model->process_qrz_batch($batch_data);
|
||||
$batch_data = []; // Reset batch
|
||||
}
|
||||
}
|
||||
|
||||
// Process any remaining records in the last batch
|
||||
if (!empty($batch_data)) {
|
||||
$table .= $this->logbook_model->process_qrz_batch($batch_data);
|
||||
}
|
||||
|
||||
if ($table != "") {
|
||||
$data['tableheaders'] = $tableheaders;
|
||||
$data['table'] = $table;
|
||||
|
|
@ -372,8 +525,7 @@ class Qrz extends CI_Controller {
|
|||
}
|
||||
|
||||
unlink($filepath);
|
||||
return $data;
|
||||
|
||||
// Return both table data and the count of processed records
|
||||
return ['table_data' => $data, 'processed_count' => $record_count];
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Bezpośredni dostęp do skryptu nie jest dozwolony');
|
||||
|
||||
$lang['account_logbook_fields'] = 'Pola logu';
|
||||
$lang['account_column1_text'] = 'Kolumna 1';
|
||||
|
|
@ -9,127 +9,135 @@ $lang['account_column3_text'] = 'Kolumna 3';
|
|||
$lang['account_column4_text'] = 'Kolumna 4';
|
||||
$lang['account_column5_text'] = 'Kolumna 5 (tylko dla logu)';
|
||||
|
||||
$lang['account_create_user_account'] = 'Create User Account';
|
||||
$lang['account_edit_account'] = 'Edit Account';
|
||||
$lang['account_remember_me'] = 'Remember me';
|
||||
$lang['account_create_user_account'] = 'Utwórz konto użytkownika';
|
||||
$lang['account_edit_account'] = 'Edytuj konto';
|
||||
$lang['account_remember_me'] = 'Zapamiętaj mnie';
|
||||
|
||||
$lang['account_account_information'] = "Account";
|
||||
$lang['account_user'] = "User";
|
||||
$lang['account_word_edited'] = "edited";
|
||||
$lang['account_username'] = 'Username';
|
||||
$lang['account_email_address'] = 'Email Address';
|
||||
$lang['account_password'] = 'Password';
|
||||
$lang['account_account_information'] = "Konto";
|
||||
$lang['account_user'] = "Użytkownik";
|
||||
$lang['account_word_edited'] = "edytowano";
|
||||
$lang['account_username'] = 'Nazwa użytkownika';
|
||||
$lang['account_email_address'] = 'Adres e-mail';
|
||||
$lang['account_password'] = 'Hasło';
|
||||
|
||||
$lang['account_roles'] = 'Roles';
|
||||
$lang['account_user_role'] = 'User Role';
|
||||
$lang['account_word_admin'] = 'Admin';
|
||||
$lang['account_roles'] = 'Role';
|
||||
$lang['account_user_role'] = 'Rola użytkownika';
|
||||
$lang['account_word_admin'] = 'Administrator';
|
||||
|
||||
$lang['account_theme'] = 'Theme';
|
||||
$lang['account_stylesheet'] = 'Stylesheet';
|
||||
$lang['account_theme'] = 'Motyw';
|
||||
$lang['account_stylesheet'] = 'Arkusz stylów';
|
||||
|
||||
$lang['account_personal_information'] = "Personal";
|
||||
$lang['account_first_name'] = 'First Name';
|
||||
$lang['account_last_name'] = 'Last Name';
|
||||
$lang['account_personal_information'] = "Osobiste";
|
||||
$lang['account_first_name'] = 'Imię';
|
||||
$lang['account_last_name'] = 'Nazwisko';
|
||||
|
||||
$lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Callsign';
|
||||
$lang['account_hamradio_information'] = "Radioamatorstwo";
|
||||
$lang['account_callsign'] = 'Znak wywoławczy';
|
||||
$lang['account_gridsquare'] = 'Gridsquare';
|
||||
|
||||
$lang['account_cloudlog_preferences'] = 'Cloudlog Preferences';
|
||||
$lang['account_timezone'] = 'Timezone';
|
||||
$lang['account_date_format'] = 'Date Format';
|
||||
$lang['account_log_end_time'] = 'Log End Times for QSOs Separately';
|
||||
$lang['account_log_end_time_hint'] = 'Choose yes here if you want to log QSO start and end times separately. If set to \'No\' the end time will be the same as start time.';
|
||||
$lang['account_quicklog_feature'] = "Quicklog Field";
|
||||
$lang['account_quicklog_feature_hint'] = "With this feature, you can log callsigns using the search field in the header.";
|
||||
$lang['account_quicklog_enter'] = "Quicklog - Action on press Enter";
|
||||
$lang['account_quicklog_enter_hint'] = "What action should be performed when Enter is pressed in the quicklog field?";
|
||||
$lang['account_quicklog_enter_log'] = "Log Callsign";
|
||||
$lang['account_quicklog_enter_search'] = "Search Callsign";
|
||||
$lang['account_measurement_preferences'] = 'Measurement preference';
|
||||
$lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Select how you would like dates shown when logged into your account.';
|
||||
$lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Choose which unit distances will be shown in';
|
||||
$lang['account_cloudlog_language'] = 'Cloudlog Language';
|
||||
$lang['account_choose_cloudlog_language'] = 'Choose Cloudlog language.';
|
||||
$lang['account_cloudlog_preferences'] = 'Preferencje Cloudlog';
|
||||
$lang['account_timezone'] = 'Strefa czasowa';
|
||||
$lang['account_date_format'] = 'Format daty';
|
||||
$lang['account_log_end_time'] = 'Rejestruj czasy zakończenia QSO osobno';
|
||||
$lang['account_log_end_time_hint'] = 'Wybierz tutaj tak, jeśli chcesz rejestrować czasy rozpoczęcia i zakończenia QSO osobno. Jeśli ustawisz na \'Nie\', czas zakończenia będzie taki sam, jak czas rozpoczęcia.';
|
||||
$lang['account_quicklog_feature'] = "Pole Quicklog";
|
||||
$lang['account_quicklog_feature_hint'] = "Dzięki tej funkcji możesz rejestrować znaki wywoławcze, używając pola wyszukiwania w nagłówku.";
|
||||
$lang['account_quicklog_enter'] = "Quicklog - Akcja po naciśnięciu Enter";
|
||||
$lang['account_quicklog_enter_hint'] = "Jaką akcję należy wykonać po naciśnięciu Enter w polu quicklog?";
|
||||
$lang['account_quicklog_enter_log'] = "Zapisz znak wywoławczy";
|
||||
$lang['account_quicklog_enter_search'] = "Wyszukaj znak wywoławczy";
|
||||
$lang['account_measurement_preferences'] = 'Preferencje pomiaru';
|
||||
$lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Wybierz sposób wyświetlania dat po zalogowaniu się na konto.';
|
||||
$lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Wybierz, w jakim przedziale będą wyświetlane jednostki odległości';
|
||||
$lang['account_cloudlog_language'] = 'Język Cloudlog';
|
||||
$lang['account_choose_cloudlog_language'] = 'Wybierz język Cloudlog.';
|
||||
|
||||
$lang['account_main_menu'] = 'Menu Options';
|
||||
$lang['account_show_notes_in_the_main_menu'] = 'Show notes in the main menu.';
|
||||
$lang['account_main_menu'] = 'Opcje menu';
|
||||
|
||||
$lang['account_gridsquare_and_location_autocomplete'] = 'Gridsquare and Location Autocomplete';
|
||||
$lang['account_location_auto_lookup'] = 'Location auto lookup.';
|
||||
$lang['account_if_set_gridsquare_is_fetched_based_on_location_name'] = 'If set, gridsquare is fetched based on location name.';
|
||||
$lang['account_sota_auto_lookup_gridsquare_and_name_for_summit'] = 'SOTA auto lookup gridsquare and name for summit.';
|
||||
$lang['account_wwff_auto_lookup_gridsquare_and_name_for_reference'] = 'WWFF auto lookup gridsquare and name for reference.';
|
||||
$lang['account_pota_auto_lookup_gridsquare_and_name_for_park'] = 'POTA auto lookup gridsquare and name for park.';
|
||||
$lang['account_if_set_name_and_gridsquare_is_fetched_from_the_api_and_filled_in_location_and_locator'] = 'If set, name and gridsquare is fetched from the API and filled in location and locator.';
|
||||
$lang['account_show_notes_in_the_main_menu'] = 'Pokaż notatki w menu głównym.';
|
||||
|
||||
$lang['account_previous_qsl_type'] = 'Previous QSL Type';
|
||||
$lang['account_select_the_type_of_qsl_to_show_in_the_previous_qsos_section'] = 'Select the type of QSL to show in the previous QSOs section.';
|
||||
$lang['account_gridsquare_and_location_autocomplete'] = 'Automatyczne uzupełnianie Gridsquare i lokalizacji';
|
||||
|
||||
$lang['account_qrzcom_hamqthcom_images'] = 'qrz.com/hamqth.com Images';
|
||||
$lang['account_show_profile_picture_of_qso_partner_from_qrzcom_hamqthcom_profile_in_the_log_qso_section'] = 'Show profile picture of QSO partner from qrz.com/hamqth.com profile in the log QSO section.';
|
||||
$lang['account_please_set_your_qrzcom_hamqthcom_credentials_in_the_general_config_file'] = 'Please set your qrz.com/hamqth.com credentials in the general config file.';
|
||||
$lang['account_location_auto_lookup'] = 'Automatyczne wyszukiwanie lokalizacji.';
|
||||
$lang['account_if_set_gridsquare_is_fetched_based_on_location_name'] = 'Jeśli ustawione, gridsquare jest pobierane na podstawie nazwy lokalizacji.';
|
||||
$lang['account_sota_auto_lookup_gridsquare_and_name_for_summit'] = 'SOTA automatyczne wyszukiwanie gridsquare i nazwy szczytu.';
|
||||
$lang['account_wwff_auto_lookup_gridsquare_and_name_for_reference'] = 'WWFF automatyczne wyszukiwanie gridsquare i nazwy dla odniesienia.';
|
||||
$lang['account_pota_auto_lookup_gridsquare_and_name_for_park'] = 'POTA automatyczne wyszukiwanie gridsquare i nazwy parku.';
|
||||
$lang['account_if_set_name_and_gridsquare_is_fetched_from_the_api_and_filled_in_location_and_locator'] = 'Jeśli ustawione, nazwa i gridsquare są pobierane z API i wypełniane są lokalizacja i lokalizator.';
|
||||
|
||||
$lang['account_amsat_status_upload'] = 'AMSAT Status Upload';
|
||||
$lang['account_upload_status_of_sat_qsos_to'] = 'Upload status of SAT QSOs to';
|
||||
$lang['account_previous_qsl_type'] = 'Poprzedni typ karty QSL';
|
||||
$lang['account_select_the_type_of_qsl_to_show_in_the_previous_qsos_section'] = 'Wybierz typ karty QSL, który ma być wyświetlany w sekcji poprzednich QSO.';
|
||||
|
||||
$lang['account_qrzcom_hamqthcom_images'] = 'Obrazy qrz.com/hamqth.com';
|
||||
$lang['account_show_profile_picture_of_qso_partner_from_qrzcom_hamqthcom_profile_in_the_log_qso_section'] = 'Pokaż zdjęcie profilowe partnera QSO z profilu qrz.com/hamqth.com w sekcji log QSO.';
|
||||
$lang['account_please_set_your_qrzcom_hamqthcom_credentials_in_the_general_config_file'] = 'Ustaw swoje dane uwierzytelniające qrz.com/hamqth.com w pliku konfiguracji ogólnej.';
|
||||
|
||||
$lang['account_amsat_status_upload'] = 'Przesyłanie statusu AMSAT';
|
||||
$lang['account_upload_status_of_sat_qsos_to'] = 'Prześlij status łączności SAT QSO do';
|
||||
|
||||
$lang['account_logbook_of_the_world'] = 'Logbook of the World';
|
||||
$lang['account_logbook_of_the_world_lotw_username'] = 'Logbook of The World (LoTW) Username';
|
||||
$lang['account_logbook_of_the_world_lotw_password'] = 'Logbook of The World (LoTW) Password';
|
||||
$lang['account_leave_blank_to_keep_existing_password'] = 'Leave blank to keep existing password';
|
||||
$lang['account_logbook_of_the_world_lotw_username'] = 'Nazwa użytkownika w Logbook of The World (LoTW)';
|
||||
$lang['account_logbook_of_the_world_lotw_password'] = 'Hasło w Logbook of The World (LoTW)';
|
||||
$lang['account_leave_blank_to_keep_existing_password'] = 'Pozostaw puste, aby zachować istniejące hasło';
|
||||
|
||||
$lang['account_clublog'] = 'Club Log';
|
||||
$lang['account_clublog_email_callsign'] = 'Club Log Email/Callsign';
|
||||
$lang['account_clublog_password'] = 'Club Log Password';
|
||||
$lang['account_the_email_or_callsign_you_use_to_login_to_club_log'] = 'The Email or Callsign you use to login to Club Log';
|
||||
$lang['account_clublog'] = 'Dziennik klubu';
|
||||
$lang['account_clublog_email_callsign'] = 'Adres e-mail/znak wywoławczy do Club Log';
|
||||
|
||||
$lang['account_clublog_password'] = 'Hasło do Club Log';
|
||||
|
||||
$lang['account_the_email_or_callsign_you_use_to_login_to_club_log'] = 'Adres e-mail lub znak wywoławczy, którego używasz do logowania się do Club Log';
|
||||
|
||||
$lang['account_eqsl'] = 'eQSL';
|
||||
$lang['account_eqslcc_username'] = 'eQSL.cc Username';
|
||||
$lang['account_eqslcc_password'] = 'eQSL.cc Password';
|
||||
|
||||
$lang['account_save_account_changes'] = "Save Account";
|
||||
$lang['account_create_account'] = 'Create Account';
|
||||
$lang['account_eqslcc_username'] = 'Nazwa użytkownika eQSL.cc';
|
||||
|
||||
$lang['account_delete_user_account'] = 'Delete User Account';
|
||||
$lang['account_are_you_sure_you_want_to_delete_the_user_account'] = 'Are you sure you want to delete the user account';
|
||||
$lang['account_yes_delete_this_user'] = 'Yes, delete this user';
|
||||
$lang['account_no_do_not_delete_this_user'] = 'No, do not delete this user';
|
||||
$lang['account_eqslcc_password'] = 'Hasło eQSL.cc';
|
||||
|
||||
$lang['account_forgot_password'] = 'Forgot Password?';
|
||||
$lang['account_you_can_reset_your_password_here'] = 'You can reset your password here.';
|
||||
$lang['account_reset_password'] = 'Reset Password';
|
||||
$lang['account_the_email_field_is_required'] = 'The Email field is required';
|
||||
$lang['account_confirm_password'] = 'Confirm Password';
|
||||
$lang['account_save_account_changes'] = "Zapisz konto";
|
||||
$lang['account_create_account'] = 'Utwórz konto';
|
||||
|
||||
$lang['account_forgot_your_password'] = 'Forgot your password?';
|
||||
$lang['account_delete_user_account'] = 'Usuń konto użytkownika';
|
||||
$lang['account_are_you_sure_you_want_to_delete_the_user_account'] = 'Czy na pewno chcesz usunąć konto użytkownika';
|
||||
$lang['account_yes_delete_this_user'] = 'Tak, usuń tego użytkownika';
|
||||
$lang['account_no_do_not_delete_this_user'] = 'Nie, nie usuwaj tego użytkownika';
|
||||
|
||||
$lang['account_login_to_cloudlog'] = 'Login to Cloudlog';
|
||||
$lang['account_login'] = 'Login';
|
||||
$lang['account_forgot_password'] = 'Zapomniałeś hasła?';
|
||||
$lang['account_you_can_reset_your_password_here'] = 'Możesz zresetować swoje hasło tutaj.';
|
||||
$lang['account_reset_password'] = 'Zresetuj hasło';
|
||||
$lang['account_the_email_field_is_required'] = 'Pole e-mail jest wymagane';
|
||||
$lang['account_confirm_password'] = 'Potwierdź hasło';
|
||||
|
||||
$lang['account_forgot_your_password'] = 'Zapomniałeś hasła?';
|
||||
|
||||
$lang['account_login_to_cloudlog'] = 'Zaloguj się do Cloudlog';
|
||||
|
||||
$lang['account_login'] = 'Zaloguj się';
|
||||
|
||||
$lang['account_mastodon'] = 'Mastodonserver';
|
||||
$lang['account_user_mastodon'] = 'URL of Mastodonserver';
|
||||
$lang['account_user_mastodon_hint'] = "Main URL of your Mastodon server, e.g. <a href='https://radiosocial.de/' target='_blank'>https://radiosocial.de";
|
||||
$lang['account_user_mastodon'] = 'Adres URL Mastodonserver';
|
||||
$lang['account_user_mastodon_hint'] = "Główny adres URL serwera Mastodon, np. <a href='https://radiosocial.de/' target='_blank'>https://radiosocial.de";
|
||||
|
||||
$lang['account_default_band_settings'] = 'Settings for Default Band and Confirmation';
|
||||
$lang['account_gridmap_default_band'] = 'Default Band';
|
||||
$lang['account_qsl_settings'] = 'Default QSL-Methods';
|
||||
$lang['account_default_band_settings'] = 'Ustawienia domyślnego pasma i potwierdzenia';
|
||||
$lang['account_gridmap_default_band'] = 'Domyślne pasmo';
|
||||
$lang['account_qsl_settings'] = 'Domyślne metody QSL';
|
||||
|
||||
$lang['account_winkeyer'] = 'Winkeyer';
|
||||
$lang['account_winkeyer_hint'] = "Winkeyer support in Cloudlog is very experimental read the wiki first at <a href='https://github.com/magicbug/Cloudlog/wiki/Winkey' target='_blank'>https://github.com/magicbug/Cloudlog/wiki/Winkey</a> before enabling.";
|
||||
$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled";
|
||||
$lang['account_winkeyer_hint'] = "Obsługa Winkeyer w Cloudlog jest bardzo eksperymentalna. Przeczytaj najpierw wiki na <a href='https://github.com/magicbug/Cloudlog/wiki/Winkey' target='_blank'>https://github.com/magicbug/Cloudlog/wiki/Winkey</a> przed włączeniem.";
|
||||
$lang['account_winkeyer_enabled'] = "Funkcje Winkeyer włączone";
|
||||
|
||||
$lang['account_map_params'] = "Map Settings";
|
||||
$lang['account_map_qso_by_default'] = "QSO (by default)";
|
||||
$lang['account_map_qso_confirm'] = "QSO (confirmed)";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")";
|
||||
$lang['account_map_params'] = "Ustawienia mapy";
|
||||
$lang['account_map_qso_by_default'] = "QSO (domyślnie)";
|
||||
$lang['account_map_qso_confirm'] = "QSO (potwierdzone)";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(Jeśli 'Nie', wyświetlane jako ".$lang['account_map_qso_by_default'].")";
|
||||
|
||||
$lang['account_general_information'] = "General Information";
|
||||
$lang['account_qso_logging_options'] = "QSO Logging Options";
|
||||
$lang['account_third_party_services'] = "Third Party Services";
|
||||
$lang['account_default_values'] = "Default Values";
|
||||
$lang['account_miscellaneous'] = "Miscellaneous";
|
||||
$lang['account_general_information'] = "Informacje ogólne";
|
||||
$lang['account_qso_logging_options'] = "Opcje rejestrowania QSO";
|
||||
$lang['account_third_party_services'] = "Usługi stron trzecich";
|
||||
$lang['account_default_values'] = "Wartości domyślne";
|
||||
$lang['account_miscellaneous'] = "Różne";
|
||||
|
||||
$lang['account_hamsat'] = "Hams.at";
|
||||
$lang['account_hamsat_private_feed_key'] = "Private Feed Key";
|
||||
$lang['account_hamsat_hint'] = "See your profile at <a href='https://hams.at/users/settings' target='_blank'>https://hams.at/users/settings</a>.";
|
||||
$lang['account_hamsat_workable_only'] = "Show Workable Passes Only";
|
||||
$lang['account_hamsat_private_feed_key'] = "Klucz prywatnego kanału";
|
||||
$lang['account_hamsat_hint'] = "Zobacz swój profil na <a href='https://hams.at/users/settings' target='_blank'>https://hams.at/users/settings</a>.";
|
||||
|
||||
$lang['account_hamsat_workable_only'] = "Pokaż tylko działające przepustki";
|
||||
|
|
@ -1,7 +1,6 @@
|
|||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
defined('BASEPATH') OR exit('Bezpośredni dostęp do skryptu nie jest dozwolony');
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
|
|
@ -11,129 +10,136 @@ ________________________________________________________________________________
|
|||
|
||||
$lang['adif_import'] = "ADIF Import";
|
||||
$lang['adif_export'] = "ADIF Export";
|
||||
// $lang['lotw_title'] --> application/language/english/lotw_lang.php
|
||||
// $lang['lotw_title'] --> application/language/english/lotw_lang.php
|
||||
$lang['darc_dcl'] = "DARC DCL";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
______________________________________________________________________________________________________
|
||||
ADIF Import
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
// $lang['general_word_important'] --> application/language/english/general_words_lang.php
|
||||
$lang['adif_alert_log_files_type'] = "Log Files must have the file type *.adi";
|
||||
// $lang['general_word_warning'] --> application/language/english/general_words_lang.php "PHP Upload Warning"
|
||||
// $lang['gen_max_file_upload_size'] --> application/language/english/general_words_lang.php "PHP Upload Warning"
|
||||
// $lang['general_word_important'] --> application/language/english/general_words_lang.php
|
||||
$lang['adif_alert_log_files_type'] = "Pliki dziennika muszą mieć typ pliku *.adi";
|
||||
// $lang['general_word_warning'] --> application/language/english/general_words_lang.php "Ostrzeżenie przed przesyłaniem PHP"
|
||||
// $lang['gen_max_file_upload_size'] --> application/language/english/general_words_lang.php "Ostrzeżenie przed przesyłaniem PHP"
|
||||
|
||||
$lang['adif_select_stationlocation'] = "Select Station Location";
|
||||
// $lang['gen_hamradio_callsign'] --> application/language/english/general_words_lang.php
|
||||
$lang['adif_select_stationlocation'] = "Wybierz lokalizację stacji";
|
||||
// $lang['gen_hamradio_callsign'] --> application/language/english/general_words_lang.php
|
||||
|
||||
// The File Input is translated by the Browser
|
||||
$lang['adif_file_label'] = "ADIF File";
|
||||
// Dane wejściowe pliku są tłumaczone przez przeglądarkę
|
||||
$lang['adif_file_label'] = "Plik ADIF";
|
||||
|
||||
$lang['adif_hint_no_info_in_file'] = "Select if ADIF being imported does not contain this information.";
|
||||
$lang['adif_hint_no_info_in_file'] = "Wybierz, jeśli importowany plik ADIF nie zawiera tych informacji.";
|
||||
|
||||
$lang['adif_import_dup'] = "Import duplicate QSOs";
|
||||
$lang['adif_mark_imported_lotw'] = "Mark imported QSOs as uploaded to LoTW";
|
||||
$lang['adif_mark_imported_hrdlog'] = "Mark imported QSOs as uploaded to HRDLog.net Logbook";
|
||||
$lang['adif_mark_imported_qrz'] = "Mark imported QSOs as uploaded to QRZ Logbook";
|
||||
$lang['adif_mark_imported_clublog'] = "Mark imported QSOs as uploaded to Clublog Logbook";
|
||||
$lang['adif_import_dup'] = "Importuj zduplikowane QSO";
|
||||
$lang['adif_mark_imported_lotw'] = "Oznacz importowane QSO jako przesłane do LoTW";
|
||||
$lang['adif_mark_imported_hrdlog'] = "Oznacz importowane QSO jako przesłane do HRDLog.net Logbook";
|
||||
$lang['adif_mark_imported_qrz'] = "Oznacz importowane QSO jako przesłane do dziennika QRZ";
|
||||
|
||||
$lang['adif_dxcc_from_adif'] = "Use DXCC information from ADIF";
|
||||
$lang['adif_dxcc_from_adif_hint'] = "If not selected, Cloudlog will attempt to determine DXCC information automatically.";
|
||||
$lang['adif_mark_imported_clublog'] = "Oznacz importowane QSO jako przesłane do dziennika Clublog";
|
||||
|
||||
$lang['adif_always_use_login_call_as_op'] = "Always use login-callsign as operator-name on import";
|
||||
$lang['adif_dxcc_from_adif'] = "Użyj informacji DXCC z ADIF";
|
||||
|
||||
$lang['adif_ignore_station_call'] = "Ignore Stationcallsign on import";
|
||||
$lang['adif_ignore_station_call_hint'] = "If selected, Cloudlog will try to import <b>all</b> QSO's of the ADIF, regardless if they match to the chosen station-location.";
|
||||
$lang['adif_dxcc_from_adif_hint'] = "Jeśli nie zaznaczono, Cloudlog spróbuje automatycznie ustalić informacje DXCC.";
|
||||
|
||||
$lang['adif_upload'] = "Upload";
|
||||
$lang['adif_always_use_login_call_as_op'] = "Zawsze używaj login-znaku wywoławczego jako nazwy operatora podczas importu";
|
||||
|
||||
$lang['adif_ignore_station_call'] = "Ignoruj znak wywoławczy stacji podczas importu";
|
||||
$lang['adif_ignore_station_call_hint'] = "Jeśli zaznaczone, Cloudlog spróbuje zaimportować <b>wszystkie</b> QSO ADIF, niezależnie od tego, czy pasują do wybranej lokalizacji stacji.";
|
||||
|
||||
$lang['adif_upload'] = "Prześlij";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
ADIF Export
|
||||
Eksport ADIF
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['adif_export_take_it_anywhere'] = "Take your logbook file anywhere!";
|
||||
$lang['adif_export_take_it_anywhere_hint'] = "Exporting ADIFs allows you to import contacts into third party applications like LoTW, Awards or just for keeping a backup.";
|
||||
$lang['adif_export_take_it_anywhere'] = "Zabierz swój plik dziennika wszędzie!";
|
||||
|
||||
$lang['adif_export_take_it_anywhere_hint'] = "Eksportowanie ADIF pozwala na importowanie kontaktów do aplikacji innych firm, takich jak LoTW, Awards lub po prostu w celu utworzenia kopii zapasowej.";
|
||||
|
||||
$lang['adif_mark_exported_lotw'] = "Mark exported QSOs as uploaded to LoTW";
|
||||
$lang['adif_mark_exported_no_lotw'] = "Export QSOs not uploaded to LoTW";
|
||||
$lang['adif_mark_exported_lotw'] = "Oznacz wyeksportowane QSO jako przesłane do LoTW";
|
||||
$lang['adif_mark_exported_no_lotw'] = "Eksportuj QSO, które nie zostały przesłane do LoTW";
|
||||
|
||||
$lang['adif_export_qso'] = "Export QSO's";
|
||||
$lang['adif_export_qso'] = "Eksportuj QSO";
|
||||
|
||||
$lang['adif_export_sat_only_qso'] = "Export Satellite-Only QSOs";
|
||||
$lang['adif_export_sat_only_qso_all'] = "Export All Satellite QSOs";
|
||||
$lang['adif_export_sat_only_qso_lotw'] = "Export All Satellite QSOs Confirmed on LoTW";
|
||||
$lang['adif_export_sat_only_qso'] = "Eksportuj QSO tylko z satelity";
|
||||
$lang['adif_export_sat_only_qso_all'] = "Eksportuj wszystkie QSO z satelity";
|
||||
$lang['adif_export_sat_only_qso_lotw'] = "Eksportuj wszystkie QSO z satelity potwierdzone w LoTW";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
______________________________________________________________________________________________________
|
||||
Logbook of the World
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['adif_lotw_export_if_selected'] = "If a date range is not selected then all QSOs will be marked!";
|
||||
$lang['adif_mark_qso_as_exported_to_lotw'] = "Mark QSOs as exported to LoTW";
|
||||
$lang['adif_lotw_export_if_selected'] = "Jeśli zakres dat nie zostanie wybrany, wszystkie QSO zostaną oznaczone!";
|
||||
|
||||
$lang['adif_qso_marked'] = "QSOs marked";
|
||||
$lang['adif_yay_its_done'] = "Yay, its done!";
|
||||
$lang['adif_qso_lotw_marked_confirm'] = "The QSOs are marked as exported to LoTW.";
|
||||
$lang['adif_mark_qso_as_exported_to_lotw'] = "Oznacz QSO jako wyeksportowane do LoTW";
|
||||
|
||||
$lang['adif_qso_marked'] = "Oznaczone QSO";
|
||||
|
||||
$lang['adif_yay_its_done'] = "Yay, gotowe!";
|
||||
|
||||
$lang['adif_qso_lotw_marked_confirm'] = "QSO zostały oznaczone jako wyeksportowane do LoTW.";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
DARC DCL
|
||||
___________________________________________________________________________________________
|
||||
________________________________________________________________________________________________
|
||||
*/
|
||||
$lang['adif_dcl_text_pre'] = "Go to";
|
||||
$lang['adif_dcl_text_post'] = "and export your logbook with confirmed DOKs. To speed up the process you can select only DL QSOs to download (i.e. put \"DL\" into Prefix List). The downloaded ADIF file can be uploaded here in order to update QSOs with DOK info.";
|
||||
$lang['adif_dcl_text_pre'] = "Przejdź do";
|
||||
$lang['adif_dcl_text_post'] = "i wyeksportuj swój dziennik z potwierdzonymi DOK. Aby przyspieszyć ten proces, możesz wybrać do pobrania tylko QSO DL (tj. umieścić „DL” na liście prefiksów). Pobrany plik ADIF można przesłać tutaj, aby zaktualizować QSO o informacje DOK.";
|
||||
|
||||
$lang['only_confirmed_qsos'] = "Only import DOK data from QSOs confirmed on DCL.";
|
||||
$lang['only_confirmed_qsos_hint'] = "Uncheck if you also want to update DOK with data from unconfirmed QSOs in DCL.";
|
||||
$lang['only_confirmed_qsos'] = "Importuj tylko dane DOK z QSO potwierdzonych na DCL.";
|
||||
$lang['only_confirmed_qsos_hint'] = "Odznacz, jeśli chcesz również zaktualizować DOK o dane z niepotwierdzonych QSO w DCL.";
|
||||
|
||||
$lang['overwrite_by_dcl'] = "Overwrite exisiting DOK in log by DCL (if different)";
|
||||
$lang['overwrite_by_dcl_hint'] = "If checked Cloudlog will forcibly overwrite existing DOK with DOK from DCL log.";
|
||||
$lang['overwrite_by_dcl'] = "Nadpisz istniejący DOK w logu przez DCL (jeśli jest inny)";
|
||||
|
||||
$lang['ignore_ambiguous'] = "Ignore QSOs that cannot be matched";
|
||||
$lang['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Cloudlog will be displayed.";
|
||||
$lang['overwrite_by_dcl_hint'] = "Jeśli zaznaczone, Cloudlog wymusi nadpisanie istniejącego DOK przez DOK z logu DCL.";
|
||||
|
||||
$lang['ignore_ambiguous'] = "Ignoruj QSO, których nie można dopasować";
|
||||
|
||||
$lang['ignore_ambiguous_hint'] = "Jeśli niezaznaczone, zostaną wyświetlone informacje o QSO, których nie można znaleźć w Cloudlog.";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Import Success
|
||||
___________________________________________________________________________________________________________
|
||||
Import zakończony sukcesem
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['adif_imported'] = "ADIF Imported";
|
||||
$lang['adif_yay_its_imported'] = "Yay, its imported!";
|
||||
$lang['adif_import_confirm'] = "The ADIF File has been imported.";
|
||||
$lang['adif_imported'] = "ADIF zaimportowany";
|
||||
|
||||
$lang['adif_import_dupes_inserted'] = " <b>Dupes were inserted!</b>";
|
||||
$lang['adif_import_dupes_skipped'] = " Dupes were skipped.";
|
||||
$lang['adif_yay_its_imported'] = "Hurra, zaimportowano!";
|
||||
$lang['adif_import_confirm'] = "Plik ADIF został zaimportowany.";
|
||||
|
||||
$lang['adif_import_errors'] = "ADIF Errors";
|
||||
$lang['adif_import_errors_hint'] = "You have ADIF errors, the QSOs have still been added but these fields have not been populated.";
|
||||
$lang['adif_import_dupes_inserted'] = " <b>Dupy zostały wstawione!</b>";
|
||||
$lang['adif_import_dupes_skipped'] = "Dupy zostały pominięte.";
|
||||
|
||||
$lang['adif_import_errors'] = "Błędy ADIF";
|
||||
$lang['adif_import_errors_hint'] = "Masz błędy ADIF, QSO zostały dodane, ale te pola nie zostały wypełnione.";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
DCL Success
|
||||
___________________________________________________________________________________________________________
|
||||
Sukces DCL
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['dcl_results'] = "Results of DCL DOK Update";
|
||||
$lang['dcl_info_updated'] = "DCL information for DOKs has been updated.";
|
||||
$lang['dcl_qsos_updated'] = "QSOs updated";
|
||||
$lang['dcl_qsos_ignored'] = "QSOs ignored";
|
||||
$lang['dcl_qsos_unmatched'] = "QSOs unmatched";
|
||||
$lang['dcl_no_qsos_updated'] = "No QSOs found which could be updated.";
|
||||
$lang['dcl_dok_errors'] = "DOK Errors";
|
||||
$lang['dcl_dok_errors_details'] = "There is different data for DOK in your log compared to DCL";
|
||||
$lang['dcl_qsl_status'] = "DCL QSL Status";
|
||||
$lang['dcl_qsl_status_c'] = "confirmed by LoTW/Clublog/eQSL/Contest";
|
||||
$lang['dcl_qsl_status_mno'] = "confirmed by award manager";
|
||||
$lang['dcl_qsl_status_i'] = "confirmed by cross-check of DCL data";
|
||||
$lang['dcl_qsl_status_w'] = "confirmation pending";
|
||||
$lang['dcl_qsl_status_x'] = "unconfirmed";
|
||||
$lang['dcl_qsl_status_unknown'] = "unknown";
|
||||
$lang['dcl_no_match'] = "QSO could not be matched";
|
||||
$lang['dcl_results'] = "Wyniki aktualizacji DCL DOK";
|
||||
$lang['dcl_info_updated'] = "Informacje DCL dla DOK zostały zaktualizowane.";
|
||||
$lang['dcl_qsos_updated'] = "Zaktualizowano QSO";
|
||||
$lang['dcl_qsos_ignored'] = "Zignorowano QSO";
|
||||
$lang['dcl_qsos_unmatched'] = "Niezgodne QSO";
|
||||
$lang['dcl_no_qsos_updated'] = "Nie znaleziono QSO, które można by zaktualizować.";
|
||||
$lang['dcl_dok_errors'] = "Błędy DOK";
|
||||
$lang['dcl_dok_errors_details'] = "W Twoim logu znajdują się inne dane dla DOK niż dla DCL";
|
||||
$lang['dcl_qsl_status'] = "Status QSL DCL";
|
||||
$lang['dcl_qsl_status_c'] = "potwierdzone przez LoTW/Clublog/eQSL/Contest";
|
||||
$lang['dcl_qsl_status_mno'] = "potwierdzone przez kierownika nagrody";
|
||||
$lang['dcl_qsl_status_i'] = "potwierdzone przez krzyżową kontrolę danych DCL";
|
||||
$lang['dcl_qsl_status_w'] = "oczekiwanie na potwierdzenie";
|
||||
$lang['dcl_qsl_status_x'] = "niepotwierdzone";
|
||||
$lang['dcl_qsl_status_unknown'] = "nieznane";
|
||||
$lang['dcl_no_match'] = "Nie można dopasować QSO";
|
||||
|
|
|
|||
|
|
@ -1,60 +1,59 @@
|
|||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Bezpośredni dostęp do skryptu nie jest dozwolony');
|
||||
|
||||
$lang['admin_user_line1'] = 'Cloudlog needs at least one user configured in order to operate.';
|
||||
$lang['admin_user_line2'] = 'Users can be assigned roles which give them different permissions, such as adding QSOs to the logbook and accessing Cloudlog APIs.';
|
||||
$lang['admin_user_line3'] = 'The currently logged-in user is displayed at the upper-right of each page.';
|
||||
$lang['admin_user_line4'] = "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.";
|
||||
$lang['admin_user_line1'] = 'Cloudlog potrzebuje co najmniej jednego skonfigurowanego użytkownika, aby działać.';
|
||||
$lang['admin_user_line2'] = 'Użytkownicy mogą mieć przypisane role, które dają im różne uprawnienia, takie jak dodawanie QSO do dziennika i dostęp do interfejsów API Cloudlog.';
|
||||
$lang['admin_user_line3'] = 'Aktualnie zalogowany użytkownik jest wyświetlany w prawym górnym rogu każdej strony.';
|
||||
$lang['admin_user_line4'] = "Za pomocą przycisku resetowania hasła możesz wysłać użytkownikowi wiadomość e-mail zawierającą łącze do resetowania hasła. Aby to osiągnąć, upewnij się, że ustawienia poczty e-mail w opcjach globalnych są poprawnie skonfigurowane.";
|
||||
|
||||
$lang['admin_user_list'] = 'User List';
|
||||
$lang['admin_user_list'] = 'Lista użytkowników';
|
||||
|
||||
$lang['admin_user'] = 'User';
|
||||
$lang['admin_user'] = 'Użytkownik';
|
||||
$lang['admin_email'] = 'E-mail';
|
||||
$lang['admin_type'] = 'Type';
|
||||
$lang['admin_last_login'] = "Last Login";
|
||||
$lang['admin_options'] = 'Options';
|
||||
$lang['admin_type'] = 'Typ';
|
||||
$lang['admin_last_login'] = "Ostatnie logowanie";
|
||||
$lang['admin_options'] = 'Opcje';
|
||||
|
||||
$lang['admin_create_user'] = 'Create user';
|
||||
$lang['admin_delete'] = 'Delete';
|
||||
$lang['admin_remove'] = "Remove";
|
||||
$lang['admin_edit'] = 'Edit';
|
||||
$lang['admin_create'] = 'Create';
|
||||
$lang['admin_update'] = 'Update';
|
||||
$lang['admin_copy'] = 'Copy';
|
||||
$lang['admin_save'] = 'Save';
|
||||
$lang['admin_close'] = 'Close';
|
||||
$lang['admin_user_accounts'] = 'User Accounts';
|
||||
$lang['admin_danger'] = 'DANGER!';
|
||||
$lang['admin_experimental'] = "Experimental";
|
||||
$lang['admin_password_reset'] = "Password Reset";
|
||||
$lang['admin_create_user'] = 'Utwórz użytkownika';
|
||||
$lang['admin_delete'] = 'Usuń';
|
||||
$lang['admin_remove'] = "Usuń";
|
||||
$lang['admin_edit'] = 'Edytuj';
|
||||
$lang['admin_create'] = 'Utwórz';
|
||||
$lang['admin_update'] = 'Aktualizuj';
|
||||
$lang['admin_copy'] = 'Kopiuj';
|
||||
$lang['admin_save'] = 'Zapisz';
|
||||
$lang['admin_close'] = 'Zamknij';
|
||||
$lang['admin_user_accounts'] = 'Konta użytkowników';
|
||||
$lang['admin_danger'] = 'NIEBEZPIECZEŃSTWO!';
|
||||
$lang['admin_experimental'] = "Eksperymentalne";
|
||||
$lang['admin_password_reset'] = "Resetowanie hasła";
|
||||
|
||||
$lang['admin_email_settings_incorrect'] = "Email settings are incorrect.";
|
||||
$lang['admin_password_reset_processed'] = "Password Reset E-Mail sent.";
|
||||
$lang['admin_email_settings_incorrect'] = "Ustawienia poczty e-mail są nieprawidłowe.";
|
||||
$lang['admin_password_reset_processed'] = "E-mail z resetowaniem hasła został wysłany.";
|
||||
|
||||
// Menu konkursu
|
||||
|
||||
// Contest Menu
|
||||
$lang['admin_contest_menu_line_1'] = 'Korzystając z listy konkursów, możesz kontrolować, które konkursy są wyświetlane podczas rejestrowania QSO w konkursie.';
|
||||
$lang['admin_contest_menu_line_2'] = 'Aktywne konkursy będą wyświetlane na liście rozwijanej Nazwa konkursu, natomiast nieaktywne konkursy będą ukryte i nie będzie można ich wybrać.';
|
||||
$lang['admin_contest_menu_name'] = 'Nazwa';
|
||||
$lang['admin_contest_menu_adif'] = 'Nazwa ADIF';
|
||||
$lang['admin_contest_menu_active'] = 'Aktywny';
|
||||
$lang['admin_contest_menu_n_active'] = 'Nieaktywny';
|
||||
$lang['admin_contest_menu_activate'] = 'Aktywuj';
|
||||
$lang['admin_contest_menu_deactivate'] = 'Dezaktywuj';
|
||||
|
||||
$lang['admin_contest_menu_line_1'] = 'Using the contest list, you can control which Contests are shown when logging QSOs in a contest.';
|
||||
$lang['admin_contest_menu_line_2'] = 'Active contests will be shown in the Contest Name drop-down, while inactive contests will be hidden and cannot be selected.';
|
||||
$lang['admin_contest_menu_name'] = 'Name';
|
||||
$lang['admin_contest_menu_adif'] = 'ADIF Name';
|
||||
$lang['admin_contest_menu_active'] = 'Active';
|
||||
$lang['admin_contest_menu_n_active'] = 'Not Active';
|
||||
$lang['admin_contest_menu_activate'] = 'Activate';
|
||||
$lang['admin_contest_menu_deactivate'] = 'Deactivate';
|
||||
$lang['admin_contest_add_contest'] = 'Dodaj konkurs';
|
||||
$lang["admin_contest_create"] = "Utwórz";
|
||||
$lang['admin_contest_all_active'] = 'Aktywuj wszystkie';
|
||||
$lang['admin_contest_all_deactive'] = 'Dezaktywuj wszystkie';
|
||||
|
||||
$lang['admin_contest_add_contest'] = 'Add a Contest';
|
||||
$lang["admin_contest_create"] = "Create";
|
||||
$lang['admin_contest_all_active'] = 'Activate All';
|
||||
$lang['admin_contest_all_deactive'] = 'Deactivate All';
|
||||
|
||||
$lang['admin_contest_name_adif'] = 'Contest ADIF Name';
|
||||
$lang['admin_contest_name_of_contest'] = 'Name of the Contest';
|
||||
$lang['admin_contest_name_of_adif'] = 'Name of Contest in ADIF-specification';
|
||||
$lang['admin_contest_edit_active_hint'] = 'Set to active if to be listed in Contest-list';
|
||||
$lang['admin_contest_edit_update_contest'] = 'Update Contest';
|
||||
$lang['admin_contest_deletion_warning'] = 'Warning! Are you sure you want to delete the following contest: ';
|
||||
$lang['admin_contest_active_all_warning'] = 'Warning! Are you sure you want to activate all contests?';
|
||||
$lang['admin_contest_deactive_all_warning'] = 'Warning! Are you sure you want to deactivate all contests?';
|
||||
$lang['admin_contest_name_adif'] = 'Nazwa ADIF konkursu';
|
||||
$lang['admin_contest_name_of_contest'] = 'Nazwa konkursu';
|
||||
$lang['admin_contest_name_of_adif'] = 'Nazwa konkursu w specyfikacji ADIF';
|
||||
$lang['admin_contest_edit_active_hint'] = 'Ustaw na aktywny, jeśli chcesz być wymieniony na liście konkursów';
|
||||
$lang['admin_contest_edit_update_contest'] = 'Aktualizuj konkurs';
|
||||
$lang['admin_contest_deletion_warning'] = 'Ostrzeżenie! Czy na pewno chcesz usunąć następujący konkurs: ';
|
||||
$lang['admin_contest_active_all_warning'] = 'Ostrzeżenie! Czy na pewno chcesz aktywować wszystkie konkursy?';
|
||||
$lang['admin_contest_deactive_all_warning'] = 'Ostrzeżenie! Czy na pewno chcesz dezaktywować wszystkie konkursy?';
|
||||
|
||||
|
|
|
|||
|
|
@ -1,205 +1,189 @@
|
|||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Brak bezpośredniego dostępu do skryptu');
|
||||
|
||||
$lang['awards_info_button'] = "Award Info";
|
||||
$lang['awards_show_worked'] = "Show worked";
|
||||
$lang['awards_show_confirmed'] = "Show confirmed";
|
||||
$lang['awards_show_not_worked'] = "Show not worked";
|
||||
$lang['awards_show_cq_map'] = "Show CQ Zone Map";
|
||||
$lang['awards_summary'] = "Summary";
|
||||
$lang['awards_total'] = "Total";
|
||||
$lang['awards_total_worked'] = "Total worked";
|
||||
$lang['awards_total_confirmed'] = "Total confirmed";
|
||||
|
||||
|
||||
$lang['awards_cq_page_title'] = "Awards - CQ Magazine WAZ";
|
||||
$lang['awards_info_button'] = "Informacje o nagrodzie";
|
||||
$lang['awards_show_worked'] = "Pokaż wykonane";
|
||||
$lang['awards_show_confirmed'] = "Pokaż potwierdzone";
|
||||
$lang['awards_show_not_worked'] = "Pokaż niewykonane";
|
||||
$lang['awards_show_cq_map'] = "Pokaż mapę stref CQ";
|
||||
$lang['awards_summary'] = "Podsumowanie";
|
||||
$lang['awards_total'] = "Łącznie";
|
||||
$lang['awards_total_worked'] = "Łącznie wykonane";
|
||||
$lang['awards_total_confirmed'] = "Łącznie potwierdzone";
|
||||
|
||||
$lang['awards_cq_page_title'] = "Nagrody - CQ Magazine WAZ";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
CQ -- Use all 4 Lines of Text
|
||||
CQ -- Użyj wszystkich 4 wierszy tekstu
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_cq_description_ln1'] = "CQ Magazine WAZ Award";
|
||||
$lang['awards_cq_description_ln2'] = "The CQ Magazine is located in the US and one of the most popular amateur radio magazines in the world. The magazine first appeared in January 1945 and focuses on awards and the practical aspects of amateur radio.";
|
||||
$lang['awards_cq_description_ln3'] = "The WAZ Award stands for 'Worked All Zones' and requires radio contacts to all 40 CQ Zones along with the corresponding confirmation.";
|
||||
$lang['awards_cq_description_ln4'] = "You can find all the information and rules on the Website of the <a href='https://cq-amateur-radio.com/cq_awards/cq_waz_awards/index_cq_waz_award.html' target='_blank'>CQ Magazine</a>.";
|
||||
$lang['awards_cq_description_ln1'] = "Nagroda CQ Magazine WAZ";
|
||||
$lang['awards_cq_description_ln2'] = "CQ Magazine znajduje się w USA i jest jednym z najpopularniejszych magazynów dla amatorów radiowych na świecie. Magazyn ukazał się po raz pierwszy w styczniu 1945 r. i koncentruje się na nagrodach i praktycznych aspektach amatorskiego radia.";
|
||||
$lang['awards_cq_description_ln3'] = "Nagroda WAZ oznacza 'Worked All Zones' i wymaga kontaktów radiowych ze wszystkimi 40 strefami CQ wraz z odpowiednim potwierdzeniem.";
|
||||
$lang['awards_cq_description_ln4'] = "Wszystkie informacje i zasady znajdziesz na stronie internetowej <a href='https://cq-amateur-radio.com/cq_awards/cq_waz_awards/index_cq_waz_award.html' target='_blank'>CQ Magazine</a>.";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________________________
|
||||
DOK -- Użyj wszystkich 4 wierszy tekstu
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_dok_description_ln1'] = "Nagroda DOK";
|
||||
$lang['awards_dok_description_ln2'] = "Niemcy rozciągają się na ponad 630 km ze wschodu na zachód i prawie 900 km z północy na południe. Około 70 000 z 82 milionów mieszkańców Niemiec to licencjonowani krótkofalowcy, z czego ponad 40 000 jest członkami DARC. DOK to system, który zapewnia poszczególnym lokalnym oddziałom identyfikator i oznacza 'Deutscher Ortsverband Kenner' (po angielsku: 'Identyfikator niemieckiego lokalnego stowarzyszenia').";
|
||||
$lang['awards_dok_description_ln3'] = "DOK składa się z litery oznaczającej okręg i dwucyfrowego numeru oznaczającego lokalny oddział, np. P03 Friedrichshafen (miasto 'wystawy radioamatorskiej') lub F41 Baunatal (miejsce siedziby DARC). Uwaga: zero w DOK to częsty błąd, często zapisywany jako litera O.";
|
||||
$lang['awards_dok_description_ln4'] = "Informacje te są udostępniane przez <a href='https://www.darc.de/der-club/referate/conteste/wag-contest/en/service/districtsdoks/' target='_blank'>stronę internetową DARC</a>. Informacje o nagrodach DOK i ich zasadach można znaleźć <a href='https://www.darc.de/der-club/referate/conteste/wag-contest/en/service/award-check/' target='_blank'>tutaj</a>.";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________________________
|
||||
DXCC -- Użyj wszystkich 4 wierszy tekstu
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_dxcc_description_ln1'] = "Nagroda DXCC";
|
||||
$lang['awards_dxcc_description_ln2'] = "DXCC to skrót od 'DX Century Club', nagrody przyznawanej na podstawie krajów, w których pracowano. Lista DXCC powstała na podstawie artykułu stworzonego w 1935 roku przez Clintona B. DeSoto, W1CBD, zatytułowanego <a href='http://www.arrl.org/desoto' target='_blank'>'How to Count Countries Worked, A New DX Scoring System'</a>.";
|
||||
$lang['awards_dxcc_description_ln3'] = "Wszystkie informacje o nagrodzie DXCC można znaleźć na <a href='https://www.arrl.org/dxcc-rules' target='_blank'>stronie internetowej ARRL</a>.";
|
||||
$lang['awards_dxcc_description_ln4'] = "Ważna uwaga: Z biegiem czasu kryteria listy DXCC uległy zmianie. Lista pozostaje niezmieniona, dopóki jednostka nie spełnia kryteriów, na podstawie których została dodana, w którym to momencie zostaje przeniesiona na listę usuniętych. Usunięte jednostki DXCC znajdują się również na listach w Cloudlog. Należy pamiętać, że te jednostki DXCC są nieaktualne i nie są już ważne.";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________________________
|
||||
FFMA — Użyj wszystkich 4 wierszy tekstu
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_ffma_description_ln1'] = "Nagroda im. Freda Fisha";
|
||||
$lang['awards_ffma_description_ln2'] = "Nagroda Freda Fisha została ustanowiona na cześć Freda Fisha, W5FF (SK), który był pierwszym amatorem, który pracował i potwierdził wszystkie 488 kwadratów siatki Maidenhead w 48 sąsiadujących ze sobą Stanach Zjednoczonych na 6 metrach.";
|
||||
$lang['awards_ffma_description_ln3'] = "Nagroda zostanie przyznana każdemu amatorowi, który powtórzy osiągnięcie W5FF.";
|
||||
$lang['awards_ffma_description_ln4'] = "Więcej informacji można znaleźć pod tym linkiem: <a href='https://www.arrl.org/ffma' target='_blank'>https://www.arrl.org/ffma</a>.";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
DOK -- Use all 4 Lines of Text
|
||||
IOTA -- Użyj wszystkich 4 wierszy tekstu
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_dok_description_ln1'] = "DOK Award";
|
||||
$lang['awards_dok_description_ln2'] = "Germany extends over 630 km from East to West and nearly 900 km from North to South. Around 70,000 of Germany's 82 million inhabitants are licensed hams, with more than 40,000 of them being members of DARC. DOK is a system that provides individual local chapters with an identifier and means 'Deutscher Ortsverband Kenner' (English: 'German Local Association Identifier').";
|
||||
$lang['awards_dok_description_ln3'] = "The DOK consists of a letter for the district and a two-digit number for the local chapter, like P03 Friedrichshafen (city of the 'Hamradio exhibition') or F41 Baunatal (location of the DARC headquarters). Note: A zero in a DOK is a common mistake, often being logged as the letter O.";
|
||||
$lang['awards_dok_description_ln4'] = "This information is provided by the <a href='https://www.darc.de/der-club/referate/conteste/wag-contest/en/service/districtsdoks/' target='_blank'>DARC website</a>. Information about the DOK Awards and its rules can be found <a href='https://www.darc.de/der-club/referate/conteste/wag-contest/en/service/award-check/' target='_blank'>here</a>.";
|
||||
|
||||
$lang['awards_iota_description_ln1'] = "Nagrody IOTA";
|
||||
$lang['awards_iota_description_ln2'] = "IOTA to ekscytujący i innowacyjny program aktywności, który przyciągnął uwagę tysięcy radioamatorów na całym świecie. Założony w 1964 roku, promuje kontakty radiowe ze stacjami zlokalizowanymi na wyspach na całym świecie, aby wzbogacić doświadczenia wszystkich osób aktywnych na pasmach amatorskich. Aby to osiągnąć, czerpie z powszechnej mistyki otaczającej wyspy.";
|
||||
$lang['awards_iota_description_ln3'] = "Jest on administrowany przez Islands On The Air (IOTA) Ltd (zwaną IOTA Management) we współpracy z Radio Society of Great Britain (RSGB). IOTA Management pogrupowało wyspy świata w około 1200 „grup IOTA”, z których każda ma różną liczbę „liczników”, które są wyspami kwalifikującymi. Listy te są publikowane w katalogu IOTA i na stronie internetowej IOTA. Celem IOTA Island Chaser jest nawiązanie kontaktu radiowego z co najmniej jednym licznikiem w jak największej liczbie tych grup. Program ma ściśle zdefiniowany zestaw zasad i zachęca do przyjaznej rywalizacji między łowcami poprzez publikowanie wyników uczestników w Honor Roll i rocznych listach, a także uznawanie ich certyfikatami i prestiżowymi nagrodami.";
|
||||
$lang['awards_iota_description_ln4'] = "Informacje te można znaleźć również na <a href='https://www.iota-world.org/' target='_blank'>stronie internetowej IOTA WORLD</a>.";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
DXCC -- Use all 4 Lines of Text
|
||||
POTA — użyj wszystkich 4 wierszy tekstu
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_dxcc_description_ln1'] = "DXCC Award";
|
||||
$lang['awards_dxcc_description_ln2'] = "DXCC stands for 'DX Century Club,' an award based on worked countries. The DXCC List is based on an article created in 1935 by Clinton B. DeSoto, W1CBD, titled <a href='http://www.arrl.org/desoto' target='_blank'>'How to Count Countries Worked, A New DX Scoring System'</a>.";
|
||||
$lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the <a href='https://www.arrl.org/dxcc-rules' target='_blank'>ARRL website</a>.";
|
||||
$lang['awards_dxcc_description_ln4'] = "Important Note: Over time, the criteria for the DXCC List have changed. The List remains unchanged until an entity no longer satisfies the criteria under which it was added, at which time it is moved to the Deleted List. You will find Deleted DXCC entities also in the lists on Cloudlog. Be aware that these DXCC entities are outdated and no longer valid.";
|
||||
$lang['awards_pota_description_ln1'] = "Nagrody POTA";
|
||||
$lang['awards_pota_description_ln2'] = "Parks on the Air® (POTA) rozpoczęło się na początku 2017 r., gdy zakończyło się specjalne wydarzenie ARRL National Parks on the Air. Grupa wolontariuszy chciała kontynuować zabawę po zakończeniu wydarzenia trwającego rok, i tak narodziło się POTA.";
|
||||
$lang['awards_pota_description_ln3'] = "POTA działa podobnie do SOTA, z Activators i Hunters. W przypadku nagród istnieje kilka kategorii opartych na liczbie parków, obszarów geograficznych i nie tylko.";
|
||||
$lang['awards_pota_description_ln4'] = "Aby uzyskać więcej informacji o dostępnych nagrodach i kategoriach, odwiedź <a href='https://parksontheair.com/pota-awards/' target='_blank'>stronę internetową Parks on the Air®</a>.";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________________________
|
||||
SIG — Użyj wszystkich 4 wierszy tekstu
|
||||
___________________________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_sig_description_ln1'] = "Informacje o SIG";
|
||||
$lang['awards_sig_description_ln2'] = "Kategoria SIG lub Signature umożliwia użycie dowolnego rodzaju 'Award Signature' dla nagród, które nie są zaimplementowane w Cloudlog.";
|
||||
$lang['awards_sig_description_ln3'] = "Powodem tego jest to, że powszechny format ADIF zapewnia tylko kilka dedykowanych pól dla niektórych nagród. SIG nadal umożliwia używanie i ocenę wszystkich innych typów znaczników podpisu.";
|
||||
$lang['awards_sig_description_ln4'] = "W przetwarzaniu QSO znajdziesz dwa pola: 'SIG' zawiera rzeczywisty znacznik, który jest również widoczny w ocenie nagrody, oraz 'SIG INFO', które zawiera opis podpisu. Oba pola są dowolnie dostosowywalne.";
|
||||
|
||||
/*
|
||||
______________________________________________________________________________________________________
|
||||
SOTA — Użyj wszystkich 4 wierszy tekstu
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_sota_description_ln1'] = "Nagrody SOTA";
|
||||
$lang['awards_sota_description_ln2'] = "SOTA (Summits On The Air) to program nagród dla radioamatorów, który zachęca do mobilnej pracy w obszarach górskich.";
|
||||
$lang['awards_sota_description_ln3'] = "Jest w pełni operacyjny w prawie stu krajach na całym świecie. Każdy kraj ma własne stowarzyszenie, które definiuje uznane szczyty SOTA w ramach tego stowarzyszenia. Każdy szczyt zapewnia aktywistom i ścigającym wynik związany z wysokością szczytu. Certyfikaty są dostępne za różne wyniki, co prowadzi do prestiżowych trofeów „Mountain Goat” i „Shack Sloth”. Lista Honorowa dla aktywatorów i ścigających jest prowadzona w internetowej bazie danych SOTA.";
|
||||
$lang['awards_sota_description_ln4'] = "Aby uzyskać więcej informacji, odwiedź stronę: <a href='https://www.sota.org.uk/' target='_blank'>https://www.sota.org.uk/</a>.";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________________________
|
||||
Hrabstwa USA — użyj wszystkich 4 wierszy tekstu
|
||||
___________________________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_counties_description_ln1'] = "Nagroda hrabstwa USA";
|
||||
$lang['awards_counties_description_ln2'] = "Nagroda hrabstwa Stanów Zjednoczonych Ameryki (USA-CA), sponsorowana przez magazyn CQ, przyznawana jest za potwierdzone dwukierunkowe kontakty radiowe z określoną liczbą hrabstw USA zgodnie z zasadami i warunkami, które można znaleźć <a href='https://cq-amateur-radio.com/cq_awards/cq_usa_ca_awards/cq_usa_ca_awards.html' target='_blank'>tutaj</a>.";
|
||||
$lang['awards_counties_description_ln3'] = "USA-CA jest dostępna dla wszystkich licencjonowanych amatorów na całym świecie i przyznawana jest osobom fizycznym za wszystkie nawiązane kontakty hrabstw, niezależnie od używanych znaków wywoławczych, lokalizacji działania lub dat.";
|
||||
$lang['awards_counties_description_ln4'] = "Specjalne nagrody USA-CA są również dostępne dla SWL na zasadzie heared.";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
FFMA -- Use all 4 Lines of Text
|
||||
US Gridmaster -- Użyj wszystkich 4 wierszy tekstu
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_ffma_description_ln1'] = "Fred Fish Memorial Award";
|
||||
$lang['awards_ffma_description_ln2'] = "The Fred Fish Memorial Award was created in honor of Fred Fish, W5FF (SK), who was the first amateur to have worked and confirmed all 488 Maidenhead grid squares in the 48 contiguous United States on 6 Meters.";
|
||||
$lang['awards_ffma_description_ln3'] = "The award will be given to any amateur who can duplicate W5FF's accomplishment.";
|
||||
$lang['awards_ffma_description_ln4'] = "For more information, you can visit this link: <a href='https://www.arrl.org/ffma' target='_blank'>https://www.arrl.org/ffma</a>.";
|
||||
|
||||
$lang['awards_us_gridmaster_description_ln1'] = "Nagroda US Gridmaster";
|
||||
$lang['awards_us_gridmaster_description_ln2'] = "Nagroda GridMaster jest najbardziej prestiżową nagrodą AMSAT, wprowadzoną po raz pierwszy w 2014 roku przez Star Comm Group. Jest dostępna dla wszystkich operatorów radiowych na całym świecie, którzy są w stanie obsłużyć wszystkie 488 kwadratów siatki w USA za pośrednictwem satelity i mogą zapewnić potwierdzenia QSL dla każdego kontaktu.";
|
||||
$lang['awards_us_gridmaster_description_ln3'] = "Oficjalne informacje ze <a href='https://www.amsat.org/gridmaster/' target='_blank'>strony internetowej</a>: Dwukierunkowa komunikacja musi być nawiązana za pośrednictwem satelity amatorskiego z każdą siatką. Nie jest wymagany minimalny raport sygnału. Kontakty muszą być nawiązywane z tej samej lokalizacji lub z lokalizacji, z których żadna nie jest oddalona o więcej niż 200 kilometrów. Poświadczenie wnioskodawcy w aplikacji o nagrodę służy jako potwierdzenie przestrzegania zasady odległości. Osoby mogą ubiegać się o wiele nagród GridMaster i je otrzymać, jeśli zostaną uzyskane z innej lokalizacji, która znajduje się w innym okręgu 200 kilometrów.";
|
||||
$lang['awards_us_gridmaster_description_ln4'] = "Ta mapa pokazuje tylko QSO nawiązane na SAT.";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
IOTA -- Use all 4 Lines of Text
|
||||
______________________________________________________________________________________________________
|
||||
JA Gridmaster — Użyj wszystkich 4 wierszy tekstu
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_iota_description_ln1'] = "IOTA Awards";
|
||||
$lang['awards_iota_description_ln2'] = "IOTA is an exciting and innovative activity program that has captured the interest of thousands of radio amateurs worldwide. Established in 1964, it promotes radio contacts with stations located on islands around the world to enhance the experience of all those active on the amateur bands. To achieve this, it draws on the widespread mystique surrounding islands.";
|
||||
$lang['awards_iota_description_ln3'] = "It is administered by Islands On The Air (IOTA) Ltd (referred to as IOTA Management) in partnership with the Radio Society of Great Britain (RSGB). IOTA Management has grouped the world's islands into approximately 1200 'IOTA groups,' each having varying numbers of 'counters,' which are qualifying islands. These listings are published in the IOTA Directory and on the IOTA website. The objective for the IOTA Island Chaser is to make radio contact with at least one counter in as many of these groups as possible. The program has a well-defined set of rules and encourages friendly competition among chasers by publishing participant performance in an Honor Roll and annual listings, as well as recognizing it with certificates and prestigious awards.";
|
||||
$lang['awards_iota_description_ln4'] = "You can also find this information on the <a href='https://www.iota-world.org/' target='_blank'>IOTA WORLD website</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
POTA -- Use all 4 Lines of Text
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_pota_description_ln1'] = "POTA Awards";
|
||||
$lang['awards_pota_description_ln2'] = "Parks on the Air® (POTA) started in early 2017 when the ARRL's National 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.";
|
||||
$lang['awards_pota_description_ln3'] = "POTA works similarly to SOTA, with Activators and Hunters. For the awards, there are several categories based on the number of parks, geographic areas, and more.";
|
||||
$lang['awards_pota_description_ln4'] = "For more information about the available awards and categories, please visit the <a href='https://parksontheair.com/pota-awards/' target='_blank'>Parks on the Air® website</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
SIG -- Use all 4 Lines of Text
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_sig_description_ln1'] = "SIG Information";
|
||||
$lang['awards_sig_description_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Cloudlog.";
|
||||
$lang['awards_sig_description_ln3'] = "The reason for this is that the common ADIF format provides only a few dedicated fields for certain awards. SIG still makes it possible to use and evaluate all other types of signature markers.";
|
||||
$lang['awards_sig_description_ln4'] = "In the QSO processing, you will find two fields: 'SIG' contains the actual marker, which is also visible in the award evaluation, and 'SIG INFO,' which contains a description of the signature. Both fields are freely customizable.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
SOTA -- Use all 4 Lines of Text
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_sota_description_ln1'] = "SOTA Awards";
|
||||
$lang['awards_sota_description_ln2'] = "SOTA (Summits On The Air) is an award scheme for radio amateurs that encourages portable operation in mountainous areas.";
|
||||
$lang['awards_sota_description_ln3'] = "It is fully operational in nearly a hundred countries worldwide. Each country has its own Association that defines the recognized SOTA summits within that Association. Each summit earns the activators and chasers a score related to the height of the summit. Certificates are available for various scores, leading to the prestigious 'Mountain Goat' and 'Shack Sloth' trophies. An Honor Roll for Activators and Chasers is maintained in the SOTA online database.";
|
||||
$lang['awards_sota_description_ln4'] = "For more information, please visit: <a href='https://www.sota.org.uk/' target='_blank'>https://www.sota.org.uk/</a>.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
US Counties -- Use all 4 Lines of Text
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_counties_description_ln1'] = "US County Award";
|
||||
$lang['awards_counties_description_ln2'] = "The United States of America Counties Award (USA-CA), sponsored by CQ magazine, is issued for confirmed two-way radio contacts with specified numbers of U.S. counties under rules and conditions you can find <a href='https://cq-amateur-radio.com/cq_awards/cq_usa_ca_awards/cq_usa_ca_awards.html' target='_blank'>here</a>.";
|
||||
$lang['awards_counties_description_ln3'] = "USA-CA is available to all licensed amateurs worldwide and is issued to individuals for all county contacts made, regardless of callsigns used, operating locations, or dates.";
|
||||
$lang['awards_counties_description_ln4'] = "Special USA-CA awards are also available to SWLs on a heard basis.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
US Gridmaster -- Use all 4 Lines of Text
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_us_gridmaster_description_ln1'] = "US Gridmaster Award";
|
||||
$lang['awards_us_gridmaster_description_ln2'] = "The GridMaster Award is the most prestigious AMSAT award, first introduced in 2014 by the Star Comm Group. It is available to all amateur radio operators worldwide who manage to work all 488 grid squares in the USA via satellite and can provide QSL confirmations for each contact.";
|
||||
$lang['awards_us_gridmaster_description_ln3'] = "Official information from the <a href='https://www.amsat.org/gridmaster/' target='_blank'>website</a>: Two-way communication must be established via amateur satellite with each grid. There is no minimum signal report required. Contacts must be made from the same location or from locations no two of which are more than 200 kilometers apart. The applicant's attestation in the award application serves as affirmation of abidance by the distance rule. Individuals may apply for and be granted multiple GridMaster awards when achieved from another location, which is in a different 200-kilometer circle.";
|
||||
$lang['awards_us_gridmaster_description_ln4'] = "This map shows only QSOs worked on SAT.";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
JA Gridmaster -- Use all 4 Lines of Text
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_ja_gridmaster_description_ln1'] = "JA Gridmaster Award";
|
||||
$lang['awards_ja_gridmaster_description_ln2'] = "Just as the US Gridmaster this Award is based on working all gridsquares of Japan.";
|
||||
$lang['awards_ja_gridmaster_description_ln3'] = "Additional Information and the rules about this award are still pending.";
|
||||
$lang['awards_ja_gridmaster_description_ln1'] = "Nagroda JA Gridmaster";
|
||||
$lang['awards_ja_gridmaster_description_ln2'] = "Tak jak US Gridmaster, ta nagroda jest przyznawana za pracę na wszystkich polach siatki w Japonii.";
|
||||
$lang['awards_ja_gridmaster_description_ln3'] = "Dodatkowe informacje i zasady dotyczące tej nagrody są nadal w toku.";
|
||||
$lang['awards_ja_gridmaster_description_ln4'] = "";
|
||||
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
VUCC -- Use all 4 Lines of Text
|
||||
______________________________________________________________________________________________________
|
||||
VUCC -- Użyj wszystkich 4 wierszy tekstu
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_vucc_description_ln1'] = "VUCC - VHF/UHF Century Club Award";
|
||||
$lang['awards_vucc_description_ln2'] = "The VHF/UHF Century Club Award is given for a minimum number of worked and confirmed gridsquares on a desired band.";
|
||||
$lang['awards_vucc_description_ln3'] = "Official information and the rules can be found in this document: <a href='https://www.arrl.org/vucc' target='_blank'>Click here</a>.";
|
||||
$lang['awards_vucc_description_ln4'] = "Only VHF/UHF bands are relevant.";
|
||||
|
||||
$lang['awards_vucc_description_ln2'] = "Nagroda VHF/UHF Century Club przyznawana jest za minimalną liczbę przepracowanych i potwierdzonych kwadratów siatki na wybranym paśmie.";
|
||||
$lang['awards_vucc_description_ln3'] = "Oficjalne informacje i zasady można znaleźć w tym dokumencie: <a href='https://www.arrl.org/vucc' target='_blank'>Kliknij tutaj</a>.";
|
||||
$lang['awards_vucc_description_ln4'] = "Dotyczy tylko pasm VHF/UHF.";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
WAS -- Use all 4 Lines of Text
|
||||
______________________________________________________________________________________________________
|
||||
WAS -- Użyj wszystkich 4 wierszy tekstu
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_was_description_ln1'] = "WAS Award";
|
||||
$lang['awards_was_description_ln2'] = "ARRL's most popular award is the Worked All States Award. Thousands upon thousands of awards have been issued to hams around the world. In ARRL's 101st year, they have redesigned the certificates and the program in hopes of streamlining and improving the award program.";
|
||||
$lang['awards_was_description_ln3'] = "The WAS (Worked All States) Award is available to all amateurs worldwide who submit proof with written confirmation of contacts with each of the 50 states of the United States of America. Amateurs in the U.S. and its possessions must be members of ARRL to apply for a WAS. Applicants from outside the U.S. are exempt from this requirement.";
|
||||
$lang['awards_was_description_ln4'] = "All information and rules for the ARRL WAS Award can be found <a href='https://www.arrl.org/was' target='_blank'>here</a>.";
|
||||
|
||||
$lang['awards_was_description_ln1'] = "Nagroda WAS";
|
||||
$lang['awards_was_description_ln2'] = "Najpopularniejszą nagrodą ARRL jest nagroda Worked All States Award. Tysiące nagród przyznano radioamatorom na całym świecie. W 101. roku istnienia ARRL przeprojektowano certyfikaty i program w nadziei na usprawnienie i ulepszenie programu nagród.";
|
||||
$lang['awards_was_description_ln3'] = "Nagroda WAS (Worked All States) jest dostępna dla wszystkich amatorów na całym świecie, którzy przedstawią dowód z pisemnym potwierdzeniem kontaktów z każdym z 50 stanów Stanów Zjednoczonych Ameryki. Amatorzy w Stanach Zjednoczonych i ich posiadłościach muszą być członkami ARRL, aby ubiegać się o WAS. Kandydaci spoza Stanów Zjednoczonych są zwolnieni z tego wymogu.";
|
||||
$lang['awards_was_description_ln4'] = "Wszystkie informacje i zasady dotyczące nagrody ARRL WAS można znaleźć <a href='https://www.arrl.org/was' target='_blank'>tutaj</a>.";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
WWFF -- Use all 4 Lines of Text
|
||||
WWFF -- Użyj wszystkich 4 wierszy tekstu
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_wwff_description_ln1'] = "WWFF - World Wide Flora and Fauna Award";
|
||||
$lang['awards_wwff_description_ln2'] = "WWFF, World Wide Flora and Fauna in Amateur Radio, encourages licensed ham radio operators to leave their shacks and operate portable in Protected Flora & Fauna areas (PFF) worldwide.";
|
||||
$lang['awards_wwff_description_ln3'] = "More than 26,000 Protected Flora & Fauna (PFF) areas worldwide are already registered in the WWFF Directory. Hunters and Activators can apply for colorful awards, both globally and nationally.";
|
||||
$lang['awards_wwff_description_ln4'] = "For more information, please visit: <a href='https://wwff.co/awards/' target='_blank'>https://wwff.co/awards/</a>.";
|
||||
$lang['awards_wwff_description_ln2'] = "WWFF, World Wide Flora and Fauna in Amateur Radio, zachęca licencjonowanych operatorów radioamatorów do opuszczania swoich baraków i obsługiwania urządzeń przenośnych w obszarach chronionej flory i fauny (PFF) na całym świecie.";
|
||||
$lang['awards_wwff_description_ln3'] = "Ponad 26 000 obszarów chronionej flory i fauny (PFF) na całym świecie jest już zarejestrowanych w katalogu WWFF. Myśliwi i aktywiści mogą ubiegać się o kolorowe nagrody, zarówno globalnie, jak i krajowo.";
|
||||
$lang['awards_wwff_description_ln4'] = "Aby uzyskać więcej informacji, odwiedź stronę: <a href='https://wwff.co/awards/' target='_blank'>https://wwff.co/awards/</a>.";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
WAJA -- Use all 4 Lines of Text
|
||||
WAJA — Użyj wszystkich 4 wierszy tekstu
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['awards_waja_description_ln1'] = "WAJA - Worked All Japan prefectures Award";
|
||||
$lang['awards_waja_description_ln2'] = "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham radio operators to work all the prefectures in Japan.";
|
||||
$lang['awards_waja_description_ln3'] = "May be claimed for having contacted (heard) and received a QSL card from an amateur station located in each of the 47 prefectures of Japan. A list of QSL cards should be arranged in order of WAJA (HAJA) reference number, however names of prefectures may be omitted.";
|
||||
$lang['awards_waja_description_ln4'] = "For more information, please visit: <a href='https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm' target='_blank'>https://www.jarl.org/English/4_Library/A-4-2_Awards/Award_Main.htm</a>.";
|
||||
$lang['awards_waja_description_ln1'] = "WAJA — Nagroda za pracę we wszystkich prefekturach Japonii";
|
||||
$lang['awards_waja_description_ln2'] = "WAJA, Praca we wszystkich prefekturach Japonii w zakresie radia amatorskiego, zachęca licencjonowanych operatorów radiowych do pracy we wszystkich prefekturach w Japonii.";
|
||||
$lang['awards_waja_description_ln3'] = "Można ubiegać się o nawiązanie kontaktu (usłyszenie) i otrzymanie karty QSL ze stacji amatorskiej znajdującej się w każdej z 47 prefektur Japonii. Lista kart QSL powinna być ułożona według numeru referencyjnego WAJA (HAJA), jednak nazwy prefektur mogą zostać pominięte.";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
WAB -- Use all 4 Lines of Text
|
||||
/*
|
||||
______________________________________________________________________________________________________
|
||||
WAB -- Użyj wszystkich 4 wierszy tekstu
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
$lang['awards_wab_description_ln1'] = "WAB - Worked All Britain Award";
|
||||
$lang['awards_wab_description_ln2'] = "The Amateur Radio Worked All Britain (WAB) Award is a prestigious recognition program within the amateur radio community that celebrates communication achievements across the United Kingdom. The WAB Award scheme encourages radio operators to establish contact with stations located in different regions of Britain, fostering camaraderie and promoting radio communication skills. To earn the WAB Award, participants must make successful radio contacts with stations located in specific WAB areas, which are defined by Ordnance Survey grid squares. These grid squares cover the entirety of Great Britain, including England, Scotland, Wales, and some offshore islands.";
|
||||
$lang['awards_wab_description_ln3'] = "Participants in the WAB Award program exchange information such as their location, signal strength, and WAB square reference during radio contacts. Points are awarded based on the location of the contacted station, with different point values assigned to contacts made within different WAB areas. By accumulating points from successful contacts, radio operators can progress through various award levels, each representing a significant milestone in their amateur radio journey. The WAB Award not only recognizes the dedication and skill of radio operators but also promotes geographic diversity and encourages exploration of the rich tapestry of locations across Britain through the medium of amateur radio.";
|
||||
$lang['awards_wab_description_ln4'] = "For more information, please visit: <a href='https://wab.intermip.net/default.php' target='_blank'>https://wab.intermip.net/default.php</a>.";
|
||||
$lang['awards_wab_description_ln1'] = "WAB - Nagroda Worked All Britain";
|
||||
$lang['awards_wab_description_ln2'] = "Nagroda Amateur Radio Worked All Britain (WAB) to prestiżowy program uznawania osiągnięć w dziedzinie komunikacji w społeczności radioamatorów w Zjednoczonym Królestwie. Program WAB Award zachęca operatorów radiowych do nawiązywania kontaktów ze stacjami zlokalizowanymi w różnych regionach Wielkiej Brytanii, co sprzyja koleżeństwu i promuje umiejętności komunikacji radiowej. Aby zdobyć nagrodę WAB Award, uczestnicy muszą nawiązać udane kontakty radiowe ze stacjami zlokalizowanymi w określonych obszarach WAB, które są definiowane przez kwadraty siatki Ordnance Survey. Te kwadraty siatki obejmują całą Wielką Brytanię, w tym Anglię, Szkocję, Walię i niektóre wyspy przybrzeżne.";
|
||||
$lang['awards_wab_description_ln3'] = "Uczestnicy programu WAB Award wymieniają się informacjami, takimi jak ich lokalizacja, siła sygnału i kwadrat odniesienia WAB podczas kontaktów radiowych. Punkty są przyznawane na podstawie lokalizacji nawiązanej stacji, przy czym różne wartości punktowe są przypisywane kontaktom nawiązanym w różnych obszarach WAB. Gromadząc punkty za udane kontakty, operatorzy radiowi mogą przechodzić przez różne poziomy nagród, z których każdy stanowi znaczący kamień milowy w ich amatorskiej podróży radiowej. Nagroda WAB nie tylko docenia poświęcenie i umiejętności operatorów radiowych, ale także promuje różnorodność geograficzną i zachęca do eksploracji bogatego gobelinu lokalizacji w Wielkiej Brytanii za pośrednictwem amatorskiego radia.";
|
||||
$lang['awards_wab_description_ln4'] = "Aby uzyskać więcej informacji, odwiedź stronę: <a href='https://wab.intermip.net/default.php' target='_blank'>https://wab.intermip.net/default.php</a>.";
|
||||
|
|
|
|||
|
|
@ -1,38 +1,38 @@
|
|||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Brak bezpośredniego dostępu do skryptu');
|
||||
|
||||
$lang['contesting_page_title'] = 'Logowanie Zawodów';
|
||||
$lang['contesting_button_reset_contest_session'] = 'Wyczyść sesje';
|
||||
$lang['contesting_operator_callsign'] = 'Operator Callsign';
|
||||
$lang['contesting_button_reset_contest_session'] = 'Wyczyść sesję';
|
||||
$lang['contesting_operator_callsign'] = 'Znak wywoławczy operatora';
|
||||
|
||||
$lang['contesting_exchange_type'] = 'Typ wymiany';
|
||||
$lang['contesting_exchange_type_serial'] = 'Numeracja';
|
||||
$lang['contesting_exchange_type_none'] = 'None';
|
||||
$lang['contesting_exchange_type_exchange'] = 'Exchange';
|
||||
$lang['contesting_exchange_type_gridsquare'] = 'Gridsquare';
|
||||
$lang['contesting_exchange_type_none'] = 'Brak';
|
||||
$lang['contesting_exchange_type_exchange'] = 'Wymiana';
|
||||
$lang['contesting_exchange_type_gridsquare'] = 'Kwadrat siatki';
|
||||
$lang['contesting_exchange_type_other'] = 'Inne';
|
||||
$lang['contesting_exchange_type_serial_exchange'] = 'Serial + Exchange';
|
||||
$lang['contesting_exchange_type_serial_gridsquare'] = 'Serial + Gridsquare';
|
||||
$lang['contesting_exchange_serial_s'] = 'Serial (S)';
|
||||
$lang['contesting_exchange_serial_r'] = 'Serial (R)';
|
||||
$lang['contesting_exchange_gridsquare_s'] = 'Gridsquare (S)';
|
||||
$lang['contesting_exchange_gridsquare_r'] = 'Gridsquare (R)';
|
||||
$lang['contesting_exchange_type_serial_exchange'] = 'Seryjny + Wymiana';
|
||||
$lang['contesting_exchange_type_serial_gridsquare'] = 'Seryjny + Kwadrat siatki';
|
||||
$lang['contesting_exchange_serial_s'] = 'Seryjny (S)';
|
||||
$lang['contesting_exchange_serial_r'] = 'Seryjny (R)';
|
||||
$lang['contesting_exchange_gridsquare_s'] = 'Kwadrat siatki (S)';
|
||||
$lang['contesting_exchange_gridsquare_r'] = 'Kwadrat siatki (R)';
|
||||
|
||||
$lang['contesting_contest_name'] = 'Nazwa Zawodów';
|
||||
|
||||
$lang['contesting_btn_reset_qso'] = 'Wyczyść łączność';
|
||||
$lang['contesting_btn_save_qso'] = 'Zapisz łączność';
|
||||
$lang['contesting_btn_reset_qso'] = 'Wyczyść certyfikat';
|
||||
$lang['contesting_btn_save_qso'] = 'Zapisz certyfikat';
|
||||
|
||||
$lang['contesting_title_callsign_suggestions'] = 'Podpowiadanie znaków';
|
||||
$lang['contesting_title_contest_logbook'] = 'Log zawodów';
|
||||
$lang['contesting_title_contest_logbook'] = 'Dziennik przebiegu';
|
||||
|
||||
$lang['contesting_copy_exch_to_dok'] = 'Copy received exchange to DOK field in the database!';
|
||||
$lang['contesting_copy_exch_to_none'] = 'Copy received exchange to no additional field in the database!';
|
||||
$lang['contesting_copy_exch_to_power'] = 'Copy received exchange to RX-Power field in the database!';
|
||||
$lang['contesting_copy_exch_to_state'] = 'Copy received exchange to US-State field in the database!';
|
||||
$lang['contesting_copy_exch_to_age'] = 'Copy received exchange to Age field in the database!';
|
||||
$lang['contesting_copy_exch_to_name'] = 'Copy received exchange to Name field in the database!';
|
||||
$lang['contesting_copy_exch_to_locator'] = 'Copy received exchange to Locator field in the database!';
|
||||
$lang['contesting_copy_exch_to_dok'] = 'Skopiuj otrzymaną wymianę do pola DOK w bazie danych!';
|
||||
$lang['contesting_copy_exch_to_none'] = 'Kopiuj otrzymaną wymianę do żadnego dodatkowego pola w bazie danych!';
|
||||
$lang['contesting_copy_exch_to_power'] = 'Kopiuj otrzymaną wymianę do pola RX-Power w bazie danych!';
|
||||
$lang['contesting_copy_exch_to_state'] = 'Kopiuj otrzymaną wymianę do pola US-State w bazie danych!';
|
||||
$lang['contesting_copy_exch_to_age'] = 'Kopiuj otrzymaną wymianę do pola Age w bazie danych!';
|
||||
$lang['contesting_copy_exch_to_name'] = 'Kopiuj otrzymaną wymianę do pola Name w bazie danych!';
|
||||
$lang['contesting_copy_exch_to_locator'] = 'Kopiuj otrzymaną wymianę do pola Locator w bazie danych!';
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') or exit('Bezpośredni dostęp do skryptu nie jest dozwolony');
|
||||
|
||||
$lang['eqsl_short'] = 'eQSL';
|
||||
|
|
|
|||
|
|
@ -1,75 +1,73 @@
|
|||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Bezpośredni dostęp do skryptu nie jest dozwolony');
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
KML Export
|
||||
______________________________________________________________________________________________________
|
||||
Eksport KML
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_kml_header'] = "KML Export";
|
||||
$lang['export_kml_description'] = "Export your logbook to a KML file for use in Google Earth.";
|
||||
$lang['export_kml_grisquare_warning'] = "Only QSOs with a gridsquare defined will be exported!";
|
||||
|
||||
$lang['export_kml_header'] = "Eksport KML";
|
||||
$lang['export_kml_description'] = "Eksportuj swój dziennik do pliku KML w celu użycia w Google Earth.";
|
||||
$lang['export_kml_grisquare_warning'] = "Zostaną wyeksportowane tylko QSO ze zdefiniowanym kwadratem siatki!";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
DX Atlas Export
|
||||
___________________________________________________________________________________________________________
|
||||
Eksport atlasu DX
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_dxatlas_header'] = "DX Atlas Export";
|
||||
$lang['export_dxatlas_description'] = "Export your logbook for use in DX Atlas to display worked / confirmed gridsquares.";
|
||||
$lang['export_dxatlas_gridsquare_warning'] = "Only QSOs with a gridsquare defined will be exported!";
|
||||
|
||||
$lang['export_dxatlas_header'] = "Eksport atlasu DX";
|
||||
$lang['export_dxatlas_description'] = "Eksportuj swój dziennik do użytku w DX Atlas, aby wyświetlić wypracowane/potwierdzone pola siatki.";
|
||||
$lang['export_dxatlas_gridsquare_warning'] = "Eksportowane będą tylko QSO ze zdefiniowanym polem siatki!";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
SOTA Export
|
||||
___________________________________________________________________________________________________________
|
||||
Eksport SOTA
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_sota_header'] = "SOTA CSV Export";
|
||||
$lang['export_sota_description'] = "Export your logbook for SOTA uploads.";
|
||||
$lang['export_sota_info_warning'] = "Only QSOs with SOTA information will be exported!";
|
||||
$lang['export_sota_header'] = "Eksportuj SOTA CSV";
|
||||
$lang['export_sota_description'] = "Eksportuj swój dziennik do przesyłania plików SOTA.";
|
||||
$lang['export_sota_info_warning'] = "Eksportowane będą tylko QSO z informacjami SOTA!";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Cabrillo Export
|
||||
Eksport Cabrillo
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['export_cabrillo_header'] = "Cabrillo Export";
|
||||
$lang['export_cabrillo_description'] = "Export a contest to a Cabrillo log";
|
||||
$lang['export_cabrillo_select_station'] = "Select Station Location:";
|
||||
$lang['export_cabrillo_proceed'] = "Proceed";
|
||||
$lang['export_cabrillo_select_year'] = "Select Year";
|
||||
$lang['export_cabrillo_select_contest'] = "Select Contest";
|
||||
$lang['export_cabrillo_select_date_range'] = "Select Date Range";
|
||||
$lang['export_cabrillo_club'] = "Club";
|
||||
$lang['export_cabrillo_cat_operator'] = "Category Operator";
|
||||
$lang['export_cabrillo_cat_operator_single_op'] = "Single Operator";
|
||||
$lang['export_cabrillo_cat_operator_multi_op'] = "Multi Operator";
|
||||
$lang['export_cabrillo_cat_operator_checklog'] = "Checklog";
|
||||
$lang['export_cabrillo_cat_assisted'] = "Category Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_not_ass'] = "Not Assisted";
|
||||
$lang['export_cabrillo_cat_assisted_ass'] = "Assisted";
|
||||
$lang['export_cabrillo_cat_band'] = "Category Band";
|
||||
$lang['export_cabrillo_cat_band_arrl_vhf'] = "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)";
|
||||
$lang['export_cabrillo_cat_mode'] = "Category Mode";
|
||||
$lang['export_cabrillo_cat_power'] = "Category Power";
|
||||
$lang['export_cabrillo_cat_station'] = "Category Station";
|
||||
$lang['export_cabrillo_cat_transmitter'] = "Category Transmitter";
|
||||
$lang['export_cabrillo_cat_overlay'] = "Category Overlay";
|
||||
$lang['export_cabrillo_operators'] = "Operators";
|
||||
$lang['export_cabrillo_soapbox'] = "Soapbox";
|
||||
$lang['export_cabrillo_address'] = "Address";
|
||||
$lang['export_cabrillo_address_city'] = "Address City";
|
||||
$lang['export_cabrillo_address_state_province'] = "Address State/Province";
|
||||
$lang['export_cabrillo_address_postalcode'] = "Address Postalcode";
|
||||
$lang['export_cabrillo_address_country'] = "Address Country";
|
||||
$lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log.";
|
||||
$lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!";
|
||||
$lang['export_cabrillo_header'] = "Eksport Cabrillo";
|
||||
$lang['export_cabrillo_description'] = "Eksportuj zawody do dziennika Cabrillo";
|
||||
$lang['export_cabrillo_select_station'] = "Wybierz lokalizację stacji:";
|
||||
$lang['export_cabrillo_proceed'] = "Kontynuuj";
|
||||
$lang['export_cabrillo_select_year'] = "Wybierz rok";
|
||||
$lang['export_cabrillo_select_contest'] = "Wybierz zawody";
|
||||
$lang['export_cabrillo_select_date_range'] = "Wybierz zakres dat";
|
||||
$lang['export_cabrillo_club'] = "Klub";
|
||||
$lang['export_cabrillo_cat_operator'] = "Operator kategorii";
|
||||
$lang['export_cabrillo_cat_operator_single_op'] = "Pojedynczy operator";
|
||||
$lang['export_cabrillo_cat_operator_multi_op'] = "Wielu operatorów";
|
||||
$lang['export_cabrillo_cat_operator_checklog'] = "Dziennik kontroli";
|
||||
$lang['export_cabrillo_cat_assisted'] = "Kategoria obsługiwana";
|
||||
$lang['export_cabrillo_cat_assisted_not_ass'] = "Nieobsługiwana";
|
||||
$lang['export_cabrillo_cat_assisted_ass'] = "Obsługiwana";
|
||||
$lang['export_cabrillo_cat_band'] = "Kategoria obsługiwana";
|
||||
$lang['export_cabrillo_cat_band_arrl_vhf'] = "VHF-3-BAND i VHF-FM-ONLY (tylko zawody ARRL VHF)";
|
||||
$lang['export_cabrillo_cat_mode'] = "Tryb kategorii";
|
||||
$lang['export_cabrillo_cat_power'] = "Moc kategorii";
|
||||
$lang['export_cabrillo_cat_station'] = "Stacja kategorii";
|
||||
$lang['export_cabrillo_cat_transmitter'] = "Nadajnik kategorii";
|
||||
$lang['export_cabrillo_cat_overlay'] = "Nakładka kategorii";
|
||||
$lang['export_cabrillo_operators'] = "Operatorzy";
|
||||
$lang['export_cabrillo_soapbox'] = "Skrzynka na mydło";
|
||||
$lang['export_cabrillo_address'] = "Adres";
|
||||
$lang['export_cabrillo_address_city'] = "Adres Miasto";
|
||||
$lang['export_cabrillo_address_state_province'] = "Adres Stan/Prowincja";
|
||||
$lang['export_cabrillo_address_postalcode'] = "Adres Kod pocztowy";
|
||||
$lang['export_cabrillo_address_country'] = "Adres Kraj";
|
||||
$lang['export_cabrillo_no_contests_in_log'] = "Nie znaleziono żadnych konkursów w Twoim dzienniku.";
|
||||
$lang['export_cabrillo_no_contests_for_stationlocation'] = "Nie znaleziono żadnych konkursów dla tej lokalizacji stacji!";
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,24 +1,23 @@
|
|||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
defined('BASEPATH') OR exit('Bezpośredni dostęp do skryptu nie jest dozwolony');
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
______________________________________________________________________________________________________
|
||||
Topbar
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_quickfilters'] = 'Quickfilters';
|
||||
$lang['filter_qsl_filters'] = 'QSL Filters';
|
||||
$lang['filter_filters'] = 'Filters';
|
||||
$lang['filter_actions'] = 'Actions';
|
||||
$lang['filter_results'] = '# Results';
|
||||
$lang['filter_search'] = 'Search';
|
||||
$lang['filter_quickfilters'] = 'Szybkie filtry';
|
||||
$lang['filter_qsl_filters'] = 'Filtry QSL';
|
||||
$lang['filter_filters'] = 'Filtry';
|
||||
$lang['filter_actions'] = 'Akcje';
|
||||
$lang['filter_results'] = '# Wyniki';
|
||||
$lang['filter_search'] = 'Szukaj';
|
||||
$lang['filter_dupes'] = "Dupes";
|
||||
$lang['filter_map'] = 'Map';
|
||||
$lang['filter_options'] = 'Options';
|
||||
$lang['filter_reset'] = 'Reset';
|
||||
$lang['filter_map'] = 'Mapa';
|
||||
$lang['filter_options'] = 'Opcje';
|
||||
$lang['filter_reset'] = 'Resetuj';
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
|
|
@ -26,135 +25,133 @@ Quickilters
|
|||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_quicksearch_w_sel'] = 'Quicksearch with selected: ';
|
||||
$lang['filter_search_callsign'] = 'Search Callsign';
|
||||
$lang['filter_search_dxcc'] = 'Search DXCC';
|
||||
$lang['filter_search_state'] = 'Search State';
|
||||
$lang['filter_search_gridsquare'] = 'Search Gridsquare';
|
||||
$lang['filter_search_cq_zone'] = 'Search CQ Zone';
|
||||
$lang['filter_search_mode'] = 'Search Mode';
|
||||
$lang['filter_search_band'] = 'Search Band';
|
||||
$lang['filter_search_iota'] = 'Search IOTA';
|
||||
$lang['filter_search_sota'] = 'Search SOTA';
|
||||
$lang['filter_search_wwff'] = 'Search WWFF';
|
||||
$lang['filter_search_pota'] = 'Search POTA';
|
||||
$lang['filter_quicksearch_w_sel'] = 'Szybkie wyszukiwanie z wybranymi: ';
|
||||
$lang['filter_search_callsign'] = 'Wyszukaj znak wywoławczy';
|
||||
$lang['filter_search_dxcc'] = 'Wyszukaj DXCC';
|
||||
$lang['filter_search_state'] = 'Wyszukaj stan';
|
||||
$lang['filter_search_gridsquare'] = 'Wyszukaj siatkę kwadratową';
|
||||
$lang['filter_search_cq_zone'] = 'Wyszukaj strefę CQ';
|
||||
$lang['filter_search_mode'] = 'Tryb wyszukiwania';
|
||||
$lang['filter_search_band'] = 'Pasmo wyszukiwania';
|
||||
$lang['filter_search_iota'] = 'Szukaj IOTA';
|
||||
$lang['filter_search_sota'] = 'Szukaj SOTA';
|
||||
$lang['filter_search_wwff'] = 'Szukaj WWFF';
|
||||
$lang['filter_search_pota'] = 'Szukaj POTA';
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
QSL Filters
|
||||
___________________________________________________________________________________________________________
|
||||
Filtry QSL
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_qsl_sent'] = 'QSL sent';
|
||||
$lang['filter_qsl_recv'] = 'QSL received';
|
||||
$lang['filter_qsl_sent_method'] = 'QSL send. method';
|
||||
$lang['filter_qsl_recv_method'] = 'QSL recv. method';
|
||||
$lang['filter_lotw_sent'] = 'LoTW sent';
|
||||
$lang['filter_lotw_recv'] = 'LoTW received';
|
||||
$lang['filter_eqsl_sent'] = 'eQSL sent';
|
||||
$lang['filter_eqsl_recv'] = 'eQSL received';
|
||||
$lang['filter_qsl_sent'] = 'Wysłano QSL';
|
||||
$lang['filter_qsl_recv'] = 'Otrzymano QSL';
|
||||
$lang['filter_qsl_sent_method'] = 'Metoda wysyłania QSL';
|
||||
$lang['filter_qsl_recv_method'] = 'Metoda odbierania QSL';
|
||||
$lang['filter_lotw_sent'] = 'Wysłano LoTW';
|
||||
$lang['filter_lotw_recv'] = 'Otrzymano LoTW';
|
||||
$lang['filter_eqsl_sent'] = 'Wysłano eQSL';
|
||||
$lang['filter_eqsl_recv'] = 'Otrzymano eQSL';
|
||||
$lang['filter_qsl_via'] = 'QSL via';
|
||||
$lang['filter_qsl_images'] = 'QSL Images';
|
||||
$lang['filter_qsl_images'] = 'Obrazy QSL';
|
||||
|
||||
// $lang['general_word_all'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_yes'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_no'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_requested'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_queued'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_invalid_ignore'] --> application/language/english/general_words_lang.php
|
||||
$lang['filter_qsl_verified'] = 'Verified';
|
||||
// $lang['general_word_all'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
// $lang['general_word_yes'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
// $lang['general_word_no'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
// $lang['general_word_requested'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
// $lang['general_word_queued'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
// $lang['general_word_invalid_ignore'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
$lang['filter_qsl_verified'] = 'Zweryfikowano';
|
||||
|
||||
// $lang['general_word_qslcard_bureau'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_qslcard_direct'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_qslcard_electronic'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_qslcard_manager'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_qslcard_bureau'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
// $lang['general_word_qslcard_direct'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
// $lang['general_word_qslcard_electronic'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
// $lang['general_word_qslcard_manager'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
General Filters
|
||||
Filtry ogólne
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_general_from'] = 'From';
|
||||
$lang['filter_general_to'] = 'to';
|
||||
// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php
|
||||
$lang['filter_general_none'] = '- NONE - (e.g. /MM, /AM)';
|
||||
// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_gridsquare'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php
|
||||
$lang['filter_general_from'] = 'Od';
|
||||
$lang['filter_general_to'] = 'do';
|
||||
// $lang['gen_hamradio_de'] --> aplikacja/język/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dx'] --> aplikacja/język/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dxcc'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
$lang['filter_general_none'] = '- BRAK - (np. /MM, /AM)';
|
||||
// $lang['gen_hamradio_state'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
// $lang['gen_hamradio_gridsquare'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
// $lang['gen_hamradio_mode'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
// $lang['gen_hamradio_band'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
|
||||
$lang['filter_general_propagation'] = 'Propagation';
|
||||
// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php
|
||||
$lang['filter_general_propagation'] = 'Propagacja';
|
||||
// $lang['gen_hamradio_cq_zone'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
// $lang['gen_hamradio_iota'] --> aplikacja/język/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_sota'] --> aplikacja/język/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_wwff'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
// $lang['gen_hamradio_pota'] --> aplikacja/język/english/general_words_lang.php
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Actions
|
||||
Działania
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_actions_w_selected'] = 'With selected: ';
|
||||
$lang['filter_actions_update_f_callbook'] = 'Update from Callbook';
|
||||
$lang['filter_actions_queue_bureau'] = 'Queue Bureau';
|
||||
$lang['filter_actions_queue_direct'] = 'Queue Direct';
|
||||
$lang['filter_actions_queue_electronic'] = 'Queue Electronic';
|
||||
$lang['filter_actions_sent_bureau'] = 'Sent (Bureau)';
|
||||
$lang['filter_actions_sent_direct'] = 'Sent (Direct)';
|
||||
$lang['filter_actions_sent_electronic'] = 'Sent (Electronic)';
|
||||
$lang['filter_actions_not_sent'] = 'Not Sent';
|
||||
$lang['filter_actions_qsl_n_required'] = 'QSL Not Required';
|
||||
$lang['filter_actions_recv_bureau'] = 'Received (Bureau)';
|
||||
$lang['filter_actions_recv_direct'] = 'Received (Direct)';
|
||||
$lang['filter_actions_recv_electronic'] = 'Received (Electronic)';
|
||||
$lang['filter_actions_create_adif'] = 'Create ADIF';
|
||||
$lang['filter_actions_print_label'] = 'Print Label';
|
||||
$lang['filter_actions_start_print_title'] = 'Print Labels';
|
||||
$lang['filter_actions_print_include_via'] = "Include Via";
|
||||
$lang['filter_actions_print_include_grid'] = 'Include Grid?';
|
||||
$lang['filter_actions_start_print'] = 'Start printing at?';
|
||||
$lang['filter_actions_print'] = 'Print';
|
||||
$lang['filter_actions_qsl_slideshow'] = 'QSL Slideshow';
|
||||
$lang['filter_actions_delete'] = 'Delete';
|
||||
$lang['filter_actions_delete_warning'] = "Warning! Are you sure you want to delete the marked QSO(s)?";
|
||||
|
||||
$lang['filter_actions_w_selected'] = 'Z wybranymi: ';
|
||||
$lang['filter_actions_update_f_callbook'] = 'Aktualizacja z książki telefonicznej';
|
||||
$lang['filter_actions_queue_bureau'] = 'Biuro kolejek';
|
||||
$lang['filter_actions_queue_direct'] = 'Kolejka bezpośrednia';
|
||||
$lang['filter_actions_queue_electronic'] = 'Kolejka elektroniczna';
|
||||
$lang['filter_actions_sent_bureau'] = 'Wysłano (Biuro)';
|
||||
$lang['filter_actions_sent_direct'] = 'Wysłano (Bezpośrednio)';
|
||||
$lang['filter_actions_sent_electronic'] = 'Wysłano (elektronicznie)';
|
||||
$lang['filter_actions_not_sent'] = 'Nie wysłano';
|
||||
$lang['filter_actions_qsl_n_required'] = 'Karta QSL nie jest wymagana';
|
||||
$lang['filter_actions_recv_bureau'] = 'Otrzymano (biuro)';
|
||||
$lang['filter_actions_recv_direct'] = 'Otrzymano (bezpośrednio)';
|
||||
$lang['filter_actions_recv_electronic'] = 'Otrzymano (elektronicznie)';
|
||||
$lang['filter_actions_create_adif'] = 'Utwórz ADIF';
|
||||
$lang['filter_actions_print_label'] = 'Drukuj etykietę';
|
||||
$lang['filter_actions_start_print_title'] = 'Drukuj etykiety';
|
||||
$lang['filter_actions_print_include_via'] = "Dołącz przez";
|
||||
$lang['filter_actions_print_include_grid'] = 'Dołącz siatkę?';
|
||||
$lang['filter_actions_start_print'] = 'Rozpocznij drukowanie o?';
|
||||
$lang['filter_actions_print'] = 'Drukuj';
|
||||
$lang['filter_actions_qsl_slideshow'] = 'Pokaz slajdów QSL';
|
||||
$lang['filter_actions_delete'] = 'Usuń';
|
||||
$lang['filter_actions_delete_warning'] = "Ostrzeżenie! Czy na pewno chcesz usunąć zaznaczone QSO?";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Options
|
||||
Opcje
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['filter_options_title'] = 'Options for the Advanced Logbook';
|
||||
$lang['filter_options_column'] = 'Column';
|
||||
$lang['filter_options_show'] = 'Show';
|
||||
// $lang['general_word_datetime'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_de'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dx'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_mode'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_rsts'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_rstr'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_band'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_myrefs'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_refs'] --> application/language/english/general_words_lang.php
|
||||
// $lang['general_word_name'] --> application/language/english/general_words_lang.php
|
||||
// $lang['filter_qsl_via'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_qsl'] --> application/language/english/general_words_lang.php
|
||||
// $lang['lotw_short'] --> application/language/english/lotw_lang.php
|
||||
// $lang['eqsl_short'] --> application/language/english/eqsl_lang.php
|
||||
// $lang['gen_hamradio_qslmsg'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_dxcc'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_state'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_cq_zone'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_iota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_sota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_wwff'] --> application/language/english/general_words_lang.php
|
||||
// $lang['gen_hamradio_pota'] --> application/language/english/general_words_lang.php
|
||||
// $lang['options_save'] --> application/language/english/options_lang.php
|
||||
$lang['filter_search_operator']='Search Operator';
|
||||
$lang['filter_options_close'] = 'Close';
|
||||
$lang['filter_options_title'] = 'Opcje zaawansowanego dziennika';
|
||||
$lang['filter_options_column'] = 'Kolumna';
|
||||
$lang['filter_options_show'] = 'Pokaż';
|
||||
// $lang['general_word_datetime'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
// $lang['gen_hamradio_de'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
// $lang['gen_hamradio_dx'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
// $lang['gen_hamradio_mode'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
// $lang['gen_hamradio_rsts'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
// $lang['gen_hamradio_rstr'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
// $lang['gen_hamradio_band'] --> aplikacja/język/angielski/język_ogólny_słow.php
|
||||
// $lang['gen_hamradio_myrefs'] --> aplikacja/język/angielski/język_ogólny_słow.php
|
||||
// $lang['gen_hamradio_refs'] --> aplikacja/język/angielski/język_ogólny_słow.php
|
||||
// $lang['nazwa_słowna_ogólna'] --> aplikacja/język/angielski/język_ogólny_słow.php
|
||||
// $lang['filter_qsl_via'] --> aplikacja/język/angielski/język_ogólny_słow.php
|
||||
// $lang['gen_hamradio_qsl'] --> aplikacja/język/angielski/język_ogólny_słow.php
|
||||
// $lang['lotw_short'] --> aplikacja/język/angielski/lotw_lang.php
|
||||
// $lang['eqsl_short'] --> aplikacja/język/angielski/eqsl_lang.php
|
||||
// $lang['gen_hamradio_qslmsg'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
// $lang['gen_hamradio_dxcc'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
// $lang['gen_hamradio_state'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
// $lang['gen_hamradio_cq_zone'] --> aplikacja/język/angielski/general_words_lang.php
|
||||
// $lang['gen_hamradio_iota'] --> aplikacja/język/angielski/język_ogólny.php
|
||||
// $lang['gen_hamradio_sota'] --> aplikacja/język/angielski/język_ogólny.php
|
||||
// $lang['gen_hamradio_wwff'] --> aplikacja/język/angielski/język_ogólny.php
|
||||
// $lang['gen_hamradio_pota'] --> aplikacja/język/angielski/język_ogólny.php
|
||||
// $lang['options_save'] --> aplikacja/język/angielski/język_ogólny.php
|
||||
$lang['filter_search_operator']='Operator wyszukiwania';
|
||||
$lang['filter_options_close'] = 'Zamknij';
|
||||
|
|
@ -2,16 +2,16 @@
|
|||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['error_no_active_station_profile'] = 'Uwaga: musisz ustawić aktywną lokalizacje stacji.';
|
||||
$lang['error_no_active_station_profile'] = 'Attention: you need to set an active station location.';
|
||||
|
||||
$lang['notice_turn_the_radio_on'] = 'Nie zrobiłeś dziś łączności; czas włączyć radio!';
|
||||
$lang['notice_turn_the_radio_on'] = 'You have made no QSOs today; time to turn on the radio!';
|
||||
|
||||
$lang['general_word_important'] = 'Ważne';
|
||||
$lang['general_word_important'] = 'Important';
|
||||
$lang['general_word_warning'] = 'Warning';
|
||||
$lang['general_word_danger'] = 'DANGER';
|
||||
$lang['general_word_maintenance'] = 'Maintenance';
|
||||
$lang['general_word_info'] = 'Informacja';
|
||||
$lang['general_word_choose_file'] = 'Wybież plik';
|
||||
$lang['general_word_info'] = 'Info';
|
||||
$lang['general_word_choose_file'] = 'Choose file';
|
||||
$lang['general_word_next'] = 'Next';
|
||||
$lang['general_word_previous'] = 'Previous';
|
||||
$lang['general_word_cancel'] = "Cancel";
|
||||
|
|
@ -23,136 +23,136 @@ $lang['general_word_export'] = "Export";
|
|||
$lang['general_word_import'] = "Import";
|
||||
$lang['general_word_count'] = "Count";
|
||||
$lang['general_word_filtering_on'] = "Filtering on";
|
||||
$lang['general_word_not_display'] = "Not display";
|
||||
$lang['general_word_not_display'] = "Not displayed";
|
||||
$lang['general_word_icon'] = "Icon";
|
||||
$lang['general_word_never'] = "Never";
|
||||
$lang['general_word_undefined'] = "Undefined";
|
||||
|
||||
$lang['general_word_date'] = 'Data';
|
||||
$lang['general_word_date'] = 'Date';
|
||||
$lang['general_word_startdate'] = "Start Date";
|
||||
$lang['general_word_enddate'] = "End Date";
|
||||
$lang['general_word_time'] = 'Godzina';
|
||||
$lang['general_word_time'] = 'Time';
|
||||
$lang['general_word_time_on'] = 'Time on';
|
||||
$lang['general_word_time_off'] = 'Time off';
|
||||
$lang['general_word_datetime'] = 'Data/Godzina';
|
||||
$lang['general_word_none'] = 'Nic';
|
||||
$lang['general_word_name'] = 'Imie';
|
||||
$lang['general_word_flag'] = 'Flaga';
|
||||
$lang['general_word_location'] = 'Lokalizacja';
|
||||
$lang['general_word_comment'] = 'Komentarz';
|
||||
$lang['general_word_general'] = 'Główne';
|
||||
$lang['general_word_satellite'] = 'Satelita';
|
||||
$lang['general_word_datetime'] = 'Date/Time';
|
||||
$lang['general_word_none'] = 'None';
|
||||
$lang['general_word_name'] = 'Name';
|
||||
$lang['general_word_flag'] = 'Flag';
|
||||
$lang['general_word_location'] = 'Location';
|
||||
$lang['general_word_comment'] = 'Comment';
|
||||
$lang['general_word_general'] = 'General';
|
||||
$lang['general_word_satellite'] = 'Satellite';
|
||||
$lang['general_word_satellite_short'] = 'Sat';
|
||||
$lang['general_word_notes'] = 'Notatki';
|
||||
$lang['general_word_country'] = 'Kraj';
|
||||
$lang['general_word_notes'] = 'Notes';
|
||||
$lang['general_word_country'] = 'Country';
|
||||
$lang['general_word_city'] = 'City';
|
||||
|
||||
$lang['general_word_total'] = 'Suma';
|
||||
$lang['general_word_year'] = 'Rok';
|
||||
$lang['general_word_month'] = 'Miesiąc';
|
||||
$lang['general_word_total'] = 'Total';
|
||||
$lang['general_word_year'] = 'Year';
|
||||
$lang['general_word_month'] = 'Month';
|
||||
$lang['general_word_day'] = "Day";
|
||||
$lang['general_word_days'] = "Days";
|
||||
|
||||
$lang['general_word_colors'] = "Colors";
|
||||
$lang['general_word_light'] = "Light/Laser";
|
||||
$lang['general_word_worked'] = 'Pracowane';
|
||||
$lang['general_word_worked'] = 'Worked';
|
||||
$lang['general_word_worked_not_confirmed'] = "Worked not confirmed";
|
||||
$lang['general_word_not_worked'] = "Not worked";
|
||||
$lang['general_word_confirmed'] = 'Potwierdzone';
|
||||
$lang['general_word_confirmed'] = 'Confirmed';
|
||||
$lang['general_word_confirmation'] = "Confirmation";
|
||||
$lang['general_word_needed'] = 'Wymagane';
|
||||
$lang['general_word_needed'] = 'Needed';
|
||||
|
||||
$lang['general_word_all'] = 'All';
|
||||
$lang['general_word_no'] = 'Nie';
|
||||
$lang['general_word_yes'] = 'Tak';
|
||||
$lang['general_word_method'] = 'Sposób';
|
||||
$lang['general_word_no'] = 'No';
|
||||
$lang['general_word_yes'] = 'Yes';
|
||||
$lang['general_word_method'] = 'Method';
|
||||
|
||||
$lang['general_word_sent'] = 'Wysłane';
|
||||
$lang['general_word_received'] = 'Odebrane';
|
||||
$lang['general_word_requested'] = 'Poproszone';
|
||||
$lang['general_word_sent'] = 'Sent';
|
||||
$lang['general_word_received'] = 'Received';
|
||||
$lang['general_word_requested'] = 'Requested';
|
||||
$lang['general_word_queued'] = 'Queued';
|
||||
$lang['general_word_table'] = "Table";
|
||||
$lang['general_word_invalid_ignore'] = 'Invalid (Ignore)';
|
||||
$lang['general_word_qslcard'] = 'Karta QSL';
|
||||
$lang['general_word_qslcard_management'] = 'Zarządzanie kartami';
|
||||
$lang['general_word_qslcards'] = 'Karty QSL';
|
||||
$lang['general_word_qslcard'] = 'QSL Card';
|
||||
$lang['general_word_qslcard_management'] = 'QSL Management';
|
||||
$lang['general_word_qslcards'] = 'QSL Cards';
|
||||
$lang['general_word_sstv_management'] = 'SSTV Management';
|
||||
$lang['general_word_sstvimages'] = 'SSTV Images';
|
||||
$lang['general_sstv_upload'] = 'Uploaded SSTV images';
|
||||
$lang['general_sstv_upload_button'] = 'Upload SSTV image(s)';
|
||||
$lang['general_word_qslcard_direct'] = 'Direct';
|
||||
$lang['general_word_qslcard_bureau'] = 'Biuro';
|
||||
$lang['general_word_qslcard_bureau'] = 'Bureau';
|
||||
$lang['general_word_qslcard_electronic'] = 'Electronic';
|
||||
$lang['general_word_qslcard_manager'] = 'Manager';
|
||||
$lang['general_word_qslcard_via'] = 'Via';
|
||||
$lang['general_word_eqslcard'] = 'eQSL Card';
|
||||
$lang['general_word_eqslcards'] = 'eQSL Cards';
|
||||
$lang['general_word_sstv_management'] = 'SSTV Management';
|
||||
$lang['general_word_sstvimages'] = 'SSTV Images';
|
||||
$lang['general_sstv_upload'] = 'Uploaded SSTV images';
|
||||
$lang['general_sstv_upload_button'] = 'Upload SSTV image(s)';
|
||||
$lang['general_word_lotw'] = 'Logbook of the World';
|
||||
$lang['general_word_lotw_short'] = 'LoTW';
|
||||
|
||||
$lang['general_word_details'] = 'Details';
|
||||
$lang['general_word_qso_data'] = 'QSO Data';
|
||||
|
||||
$lang['general_edit_qso'] = 'Edytuj QSO';
|
||||
$lang['general_mark_qsl_rx_bureau'] = 'Zaznacz QSL jako odebraną przez (Biuro)';
|
||||
$lang['general_mark_qsl_rx_direct'] = 'Zaznacz QSL jako odebraną przez (Bezpośredni)';
|
||||
$lang['general_mark_qsl_rx_electronic'] = 'Zaznacz QSL jako odebraną przez (Elektroniczny)';
|
||||
$lang['general_mark_qsl_tx_bureau'] = 'Zaznacz QSL jako wysłaną przez (Biuro)';
|
||||
$lang['general_mark_qsl_tx_direct'] = 'Zaznacz QSL jako wysłaną przez (Bezpośredni)';
|
||||
$lang['general_mark_qsl_requested'] = 'Zaznacz QSL zgodnie z żądaniem';
|
||||
$lang['general_mark_qsl_requested_bureau'] = 'Zaznacz QSL zgodnie z żądaniem (Biuro)';
|
||||
$lang['general_mark_qsl_requested_direct'] = 'Zaznacz QSL zgodnie z żądaniem (Bezpośredni)';
|
||||
$lang['general_mark_qsl_not_required'] = 'Zaznacz QSLjako niewymagane';
|
||||
$lang['general_edit_qso'] = 'Edit QSO';
|
||||
$lang['general_mark_qsl_rx_bureau'] = 'Mark QSL Received (Bureau)';
|
||||
$lang['general_mark_qsl_rx_direct'] = 'Mark QSL Received (Direct)';
|
||||
$lang['general_mark_qsl_rx_electronic'] = 'Mark QSL Received (Electronic)';
|
||||
$lang['general_mark_qsl_tx_bureau'] = 'Mark QSL Sent (Bureau)';
|
||||
$lang['general_mark_qsl_tx_direct'] = 'Mark QSL Sent (Direct)';
|
||||
$lang['general_mark_qsl_requested'] = 'Mark QSL Card Requested';
|
||||
$lang['general_mark_qsl_requested_bureau'] = 'Mark QSL Card Requested (Bureau)';
|
||||
$lang['general_mark_qsl_requested_direct'] = 'Mark QSL Card Requested (Direct)';
|
||||
$lang['general_mark_qsl_not_required'] = 'Mark QSL Card Not Required';
|
||||
|
||||
$lang['general_delete_qso'] = 'Usuń QSO';
|
||||
$lang['general_delete_qso'] = 'Delete QSO';
|
||||
$lang['general_more_qso'] = 'More QSOs';
|
||||
|
||||
$lang['general_lookup_qrz'] = 'Lookup on QRZ.com';
|
||||
$lang['general_lookup_hamqth'] = 'Lookup on HamQTH';
|
||||
|
||||
$lang['general_total_distance'] = 'Suma odległości';
|
||||
$lang['general_total_distance'] = 'Total Distance';
|
||||
|
||||
// PHP Upload Warning
|
||||
$lang['gen_max_file_upload_size'] = 'Maximum file upload size is ';
|
||||
|
||||
// Cloudlog Terms
|
||||
$lang['cloudlog_station_profile'] = 'Lokalizacja stacji';
|
||||
$lang['cloudlog_station_profile'] = 'Station Location';
|
||||
|
||||
// ham radio terms
|
||||
$lang['gen_hamradio_cq'] = "CQ";
|
||||
$lang['gen_hamradio_qso'] = 'QSO';
|
||||
$lang['gen_hamradio_station'] = 'Stacja';
|
||||
$lang['gen_hamradio_station'] = 'Station';
|
||||
|
||||
$lang['gen_hamradio_call'] = 'Znak';
|
||||
$lang['gen_hamradio_callsign'] = 'Znak';
|
||||
$lang['gen_hamradio_call'] = 'Call';
|
||||
$lang['gen_hamradio_callsign'] = 'Callsign';
|
||||
$lang['gen_hamradio_prefix'] = "Prefix";
|
||||
$lang['gen_hamradio_suffix'] = "Suffix";
|
||||
$lang['gen_hamradio_de'] = 'De';
|
||||
$lang['gen_hamradio_dx'] = 'Dx';
|
||||
$lang['gen_hamradio_mode'] = 'Modulacja';
|
||||
$lang['gen_hamradio_mode'] = 'Mode';
|
||||
$lang['gen_hamradio_ant_az'] = 'Antenna Azimuth';
|
||||
$lang['gen_hamradio_ant_el'] = 'Antenna Elevation';
|
||||
$lang['gen_hamradio_rst_sent'] = 'Wysłany';
|
||||
$lang['gen_hamradio_rst_rcvd'] = 'Odebrany\'d';
|
||||
$lang['gen_hamradio_band'] = 'Pasmo';
|
||||
$lang['gen_hamradio_rst_sent'] = 'Sent';
|
||||
$lang['gen_hamradio_rst_rcvd'] = 'Recv\'d';
|
||||
$lang['gen_hamradio_band'] = 'Band';
|
||||
$lang['gen_hamradio_bandgroup'] = "Bandgroup";
|
||||
$lang['gen_hamradio_band_rx'] = 'Pasmo (RX)';
|
||||
$lang['gen_hamradio_frequency'] = 'Częstotliwość';
|
||||
$lang['gen_hamradio_frequency_rx'] = 'Częstotliwość (RX)';
|
||||
$lang['gen_hamradio_band_rx'] = 'Band (RX)';
|
||||
$lang['gen_hamradio_frequency'] = 'Frequency';
|
||||
$lang['gen_hamradio_frequency_rx'] = 'Frequency (RX)';
|
||||
$lang['gen_hamradio_radio'] = 'Radio';
|
||||
$lang['gen_hamradio_rsts'] = 'RST (S)';
|
||||
$lang['gen_hamradio_rstr'] = 'RST (R)';
|
||||
$lang['gen_hamradio_refs'] = 'Refs';
|
||||
$lang['gen_hamradio_myrefs'] = 'My Refs';
|
||||
$lang['gen_hamradio_exchange_sent_short'] = 'Wymiana (S)';
|
||||
$lang['gen_hamradio_exchange_rcvd_short'] = 'Wymiana (R)';
|
||||
$lang['gen_hamradio_exchange_sent_short'] = 'Exch (S)';
|
||||
$lang['gen_hamradio_exchange_rcvd_short'] = 'Exch (R)';
|
||||
$lang['gen_hamradio_qsl'] = 'QSL';
|
||||
$lang['gen_hamradio_qsltype'] = "QSL Type";
|
||||
$lang['gen_hamradio_qslvia'] = 'QSL via';
|
||||
$lang['gen_hamradio_qslmsg'] = 'QSL Msg';
|
||||
$lang['gen_hamradio_locator'] = 'Lokator';
|
||||
$lang['gen_hamradio_transmit_power'] = 'Moc nadajnika (W)';
|
||||
$lang['gen_hamradio_propagation_mode'] = 'Typ propagacji';
|
||||
$lang['gen_hamradio_locator'] = 'Locator';
|
||||
$lang['gen_hamradio_transmit_power'] = 'Transmit Power (W)';
|
||||
$lang['gen_hamradio_propagation_mode'] = 'Propagation Mode';
|
||||
$lang['gen_hamradio_propagation_AS'] = "Aircraft Scatter";
|
||||
$lang['gen_hamradio_propagation_AUR'] = "Aurora";
|
||||
$lang['gen_hamradio_propagation_AUE'] = "Aurora-E";
|
||||
|
|
@ -172,31 +172,31 @@ $lang['gen_hamradio_propagation_SAT'] = "Satellite";
|
|||
$lang['gen_hamradio_propagation_TEP'] = "Trans-equatorial";
|
||||
$lang['gen_hamradio_propagation_TR'] = "Tropospheric ducting";
|
||||
|
||||
$lang['gen_hamradio_satellite_name'] = 'Nazwa satelity';
|
||||
$lang['gen_hamradio_satellite_mode'] = 'modulacja satelity';
|
||||
$lang['gen_hamradio_satellite_name'] = 'Satellite Name';
|
||||
$lang['gen_hamradio_satellite_mode'] = 'Satellite Mode';
|
||||
|
||||
$lang['gen_hamradio_logbook'] = 'Log';
|
||||
$lang['gen_hamradio_logbook'] = 'Logbook';
|
||||
$lang['gen_hamradio_award'] = "Award";
|
||||
|
||||
$lang['gen_hamradio_zones'] = 'Zones';
|
||||
$lang['gen_hamradio_cq_zone'] = 'Strefa CQ';
|
||||
$lang['gen_hamradio_itu_zone'] = 'Strefa ITU';
|
||||
$lang['gen_hamradio_cq_zone'] = 'CQ Zone';
|
||||
$lang['gen_hamradio_itu_zone'] = 'ITU Zone';
|
||||
$lang['gen_hamradio_dxcc'] = 'DXCC';
|
||||
$lang['gen_hamradio_deleted_dxcc'] = 'Deleted DXCC';
|
||||
$lang['gen_hamradio_continent'] = 'Continent';
|
||||
$lang['gen_hamradio_usa_state'] = 'Stan USA';
|
||||
$lang['gen_hamradio_county_reference'] = 'Hrabstwo USA';
|
||||
$lang['gen_hamradio_iota_reference'] = 'Podmiot IOTA';
|
||||
$lang['gen_hamradio_sota_reference'] = 'Podmiot SOTA';
|
||||
$lang['gen_hamradio_wwff_reference'] = 'Podmiot WWFF';
|
||||
$lang['gen_hamradio_usa_state'] = 'USA State';
|
||||
$lang['gen_hamradio_county_reference'] = 'USA County';
|
||||
$lang['gen_hamradio_iota_reference'] = 'IOTA Reference';
|
||||
$lang['gen_hamradio_sota_reference'] = 'SOTA Reference';
|
||||
$lang['gen_hamradio_wwff_reference'] = 'WWFF Reference';
|
||||
$lang['gen_hamradio_pota_reference'] = 'POTA Reference';
|
||||
$lang['gen_hamradio_dok'] = 'DOK';
|
||||
$lang['gen_hamradio_state'] = 'Stan';
|
||||
$lang['gen_hamradio_state'] = 'State';
|
||||
$lang['gen_hamradio_iota'] = 'IOTA';
|
||||
$lang['gen_hamradio_sota'] = 'SOTA';
|
||||
$lang['gen_hamradio_wwff'] = 'WWFF';
|
||||
$lang['gen_hamradio_pota'] = 'POTA';
|
||||
$lang['gen_hamradio_gridsquare'] = 'Lokator';
|
||||
$lang['gen_hamradio_gridsquare'] = 'Gridsquare';
|
||||
$lang['gen_hamradio_get_gridsquare'] = 'Get Gridsquare';
|
||||
$lang['gen_hamradio_gridsquare_show'] = "Show Locator";
|
||||
$lang['gen_hamradio_latitude'] = "Latitude";
|
||||
|
|
@ -215,15 +215,15 @@ $lang['gen_find_zone_part2'] = "click here";
|
|||
$lang['gen_find_zone_part3'] = "to find it!";
|
||||
|
||||
// Dashboard Words
|
||||
$lang['dashboard_you_have_had'] = 'Już miałeś';
|
||||
$lang['dashboard_you_have_had'] = 'You have had';
|
||||
$lang['dashboard_qsos_today'] = 'QSOs Today!';
|
||||
$lang['dashboard_qso_breakdown'] = 'Rozkład QSO';
|
||||
$lang['dashboard_countries_breakdown'] = 'Rozkład na kraje';
|
||||
$lang['dashboard_qso_breakdown'] = 'QSOs Breakdown';
|
||||
$lang['dashboard_countries_breakdown'] = 'Countries Breakdown';
|
||||
|
||||
$lang['gen_from_date'] = 'From date';
|
||||
$lang['gen_to_date'] = 'To date';
|
||||
|
||||
$lang['gen_from_date'] = 'Od daty';
|
||||
|
||||
$lang['gen_this_qso_was_confirmed_on'] = 'Ta łączność została potwierdzona';
|
||||
$lang['gen_this_qso_was_confirmed_on'] = 'This QSO was confirmed on';
|
||||
|
||||
$lang['error_no_logbook_found'] = 'No logbooks were found. You need to define a logbook under Station Logbooks! Do it here:';
|
||||
|
||||
|
|
@ -240,6 +240,11 @@ $lang['southamerica'] = 'South America';
|
|||
$lang['gen_band_selection'] = 'Band selection';
|
||||
$lang['general_word_today'] = 'Today';
|
||||
|
||||
$lang['dashboard_php_version_warning'] = 'You need to upgrade your PHP version. Minimum version is 7.4. Your version is';
|
||||
$lang['dashboard_country_files_warning'] = 'You need to update country files! Go <a href="'.site_url('update').'">here</a> to do it!';
|
||||
$lang['dashboard_locations_warning'] = 'You have no station locations. Go <a href="'. site_url('station') . '">here</a> to create it!';
|
||||
$lang['dashboard_logbooks_warning'] = 'You have no station logbook. Go <a href="'. site_url('logbooks') . '">here</a> to create it!';
|
||||
|
||||
$lang['hams_at_no_activations_found'] = 'No upcoming activations found. Please check back later.';
|
||||
|
||||
$lang['datatables_language'] = "en-GB";
|
||||
|
|
|
|||
|
|
@ -1,36 +1,36 @@
|
|||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Brak bezpośredniego dostępu do skryptu');
|
||||
|
||||
$lang['gridsquares_gridsquare_map'] = 'Gridsquare Map';
|
||||
$lang['gridsquares_activated_gridsquare_map'] = "Activated Gridsquare Map";
|
||||
$lang['gridsquares_gridsquare_activators'] = "Gridsquare Activators";
|
||||
$lang['gridsquares_gridsquare_map'] = 'Mapa Gridsquare';
|
||||
$lang['gridsquares_activated_gridsquare_map'] = "Aktywowana Mapa Gridsquare";
|
||||
$lang['gridsquares_gridsquare_activators'] = "Aktywatory Gridsquare";
|
||||
|
||||
$lang['gridsquares_confirmed_is_green'] = 'Confirmed is Green';
|
||||
$lang['gridsquares_worked_but_not_confirmed_is_red'] = 'Worked but not confirmed is Red';
|
||||
$lang['gridsquares_activated_but_not_confirmed_is_red'] = 'Activated but not confirmed is Red';
|
||||
$lang['gridsquares_confirmed_is_green'] = 'Potwierdzone jest zielone';
|
||||
$lang['gridsquares_worked_but_not_confirmed_is_red'] = 'Działało, ale nie zostało potwierdzone, jest czerwone';
|
||||
$lang['gridsquares_activated_but_not_confirmed_is_red'] = 'Aktywowane, ale nie zostało potwierdzone, jest czerwone';
|
||||
|
||||
$lang['gridsquares_this_map_does_not_include_satellite_internet_or_repeater_qsos'] = 'This map does not include satellite, internet or repeater QSOs';
|
||||
$lang['gridsquares_this_map_does_not_include_satellite_internet_or_repeater_qsos'] = 'Ta mapa nie obejmuje łączności satelitarnych, internetowych ani przekaźnikowych';
|
||||
|
||||
$lang['gridsquares_grid_squares'] = 'grid square';
|
||||
$lang['gridsquares_total_count'] = 'Total count';
|
||||
$lang['gridsquares_grid_squares'] = 'kwadrat siatki';
|
||||
$lang['gridsquares_total_count'] = 'Całkowita liczba';
|
||||
|
||||
$lang['gridsquares_minimum_count'] = "Minimum Count";
|
||||
$lang['gridsquares_show_qsos'] = "Show QSO's";
|
||||
$lang['gridsquares_show_map'] = "Show Map";
|
||||
$lang['gridsquares_band'] = 'Band';
|
||||
$lang['gridsquares_mode'] = 'Mode';
|
||||
$lang['gridsquares_sat'] = 'Satellite';
|
||||
$lang['gridsquares_confirmation'] = 'Confirmation';
|
||||
$lang['gridsquares_minimum_count'] = "Minimalna liczba";
|
||||
$lang['gridsquares_show_qsos'] = "Pokaż QSO";
|
||||
$lang['gridsquares_show_map'] = "Pokaż mapę";
|
||||
$lang['gridsquares_band'] = 'Pasmo';
|
||||
$lang['gridsquares_mode'] = 'Tryb';
|
||||
$lang['gridsquares_sat'] = 'Satelita';
|
||||
$lang['gridsquares_confirmation'] = 'Potwierdzenie';
|
||||
|
||||
$lang['gridsquares_button_plot'] = 'Plot';
|
||||
$lang['gridsquares_button_clear_markers'] = "Clear Markers";
|
||||
$lang['gridsquares_button_plot'] = 'Wykres';
|
||||
$lang['gridsquares_button_clear_markers'] = "Wyczyść znaczniki";
|
||||
|
||||
$lang['gridsquares_gridsquares'] = 'Gridsquares';
|
||||
$lang['gridsquares_gridsquares_worked'] = 'Gridsquares worked';
|
||||
$lang['gridsquares_gridsquares_confirmed'] = 'Gridsquares confirmed';
|
||||
$lang['gridsquares_gridsquares_lotw'] = 'Gridsquares confirmed on LoTW';
|
||||
$lang['gridsquares_gridsquares_paper'] = 'Gridsquares confirmed by paper QSL';
|
||||
$lang['gridsquares_gridsquares_not_confirmed'] = 'Gridsquares not confirmed';
|
||||
$lang['gridsquares_gridsquares_total_worked'] = 'Total gridsquares worked';
|
||||
$lang['gridsquares_gridsquares_total_activated'] = 'Total gridsquares activated';
|
||||
$lang['gridsquares_gridsquares_worked'] = 'Gridsquares obrobione';
|
||||
$lang['gridsquares_gridsquares_confirmed'] = 'Gridsquares potwierdzone';
|
||||
$lang['gridsquares_gridsquares_lotw'] = 'Gridsquares potwierdzone na LoTW';
|
||||
$lang['gridsquares_gridsquares_paper'] = 'Kwadraty siatki potwierdzone przez papierowy QSL';
|
||||
$lang['gridsquares_gridsquares_not_confirmed'] = 'Kwadraty siatki niepotwierdzone';
|
||||
$lang['gridsquares_gridsquares_total_worked'] = 'Łączna liczba obrobionych kwadratów siatki';
|
||||
$lang['gridsquares_gridsquares_total_activated'] = 'Łączna liczba aktywowanych kwadratów siatki';
|
||||
|
|
|
|||
|
|
@ -1,63 +1,63 @@
|
|||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Bezpośredni dostęp do skryptu nie jest dozwolony');
|
||||
|
||||
$lang['lotw_short'] = 'LoTW';
|
||||
$lang['lotw_title'] = 'Logbook of the World';
|
||||
$lang['lotw_title'] = 'Dziennik pokładowy świata';
|
||||
$lang['lotw_title_available_cert'] = 'Dostępne certyfikaty';
|
||||
$lang['lotw_title_information'] = 'Informacje';
|
||||
$lang['lotw_title_upload_p12_cert'] = 'Wyślij certyfikat .p12 Logbook of the World';
|
||||
$lang['lotw_title_export_p12_file_instruction'] = 'Pobierz instrukcje pliku .p12';
|
||||
$lang['lotw_title_adif_import'] = 'Wyślij plik w formacie ADIF';
|
||||
$lang['lotw_title_upload_p12_cert'] = 'Wyślij certyfikat .p12 Logbook Świata';
|
||||
$lang['lotw_title_export_p12_file_instruction'] = 'Pobierz plik instrukcji .p12';
|
||||
$lang['lotw_title_adif_import'] = 'Wyślij plik w ADIF';
|
||||
$lang['lotw_title_adif_import_options'] = 'Opcje wysyłania';
|
||||
|
||||
$lang['lotw_beta_warning'] = 'Miej na uwadze, że wynchroinizacja z LoTW nie jest stabilna. Więcej na WIKI.';
|
||||
$lang['lotw_no_certs_uploaded'] = 'Musisz wysłać certyfikat .p12 aby używać tych pól';
|
||||
$lang['lotw_beta_warning'] = 'Miej na świecie, że wynchroinizacja z LoTW nie jest stabilna. Więcej na WIKI.';
|
||||
$lang['lotw_no_certs_uploaded'] = 'Musisz certyfikatu certyfikatu .p12 do stosowania w tych obszarach';
|
||||
|
||||
$lang['lotw_date_created'] = 'Data utworzenia';
|
||||
$lang['lotw_date_expires'] = 'Data wygaśnięcia';
|
||||
$lang['lotw_qso_start_date'] = 'QSO Start Date';
|
||||
$lang['lotw_qso_end_date'] = 'QSO End Date';
|
||||
$lang['lotw_status'] = 'Status';
|
||||
$lang['lotw_date_created'] = 'Dane dotyczące';
|
||||
$lang['lotw_date_expires'] = 'Wygaśnięcie danych';
|
||||
$lang['lotw_qso_start_date'] = 'Data rozpoczęcia QSO';
|
||||
$lang['lotw_qso_end_date'] = 'Data zakończenia QSO';
|
||||
$lang['lotw_status'] = 'Stan';
|
||||
$lang['lotw_options'] = 'Opcje';
|
||||
$lang['lotw_valid'] = 'Ważny';
|
||||
$lang['lotw_expired'] = 'wygaśnięty';
|
||||
$lang['lotw_expiring'] = 'Expiring';
|
||||
$lang['lotw_expiring'] = 'Wygasa';
|
||||
$lang['lotw_not_synced'] = 'Nie zsynchronizowany';
|
||||
|
||||
$lang['lotw_certificate_dxcc'] = 'Podmiot DXCC certyfikatu';
|
||||
$lang['lotw_certificate_dxcc_help_text'] = 'Podmiot DXCC dla którego wydany został certyfikat, na przykład Poland';
|
||||
$lang['lotw_certificate_dxcc'] = 'Podmiot certyfikatu DXCC';
|
||||
$lang['lotw_certificate_dxcc_help_text'] = 'Podmiot DXCC dla którego został wydany certyfikat, na przykład Polska';
|
||||
|
||||
$lang['lotw_input_a_file'] = 'Prześlij plik';
|
||||
|
||||
$lang['lotw_upload_exported_adif_file_from_lotw'] = 'Wyślij pobrany plik ADIF z LoTW z <a href="https://p1k.arrl.org/lotwuser/qsos?qsoscmd=adif" target="_blank">Linku</a>, aby oznaczyć łączności jako potwierdzone przez LoTW.';
|
||||
$lang['lotw_upload_type_must_be_adi'] = 'Pliki logu muszą mieć rozszerzenie .adi';
|
||||
$lang['lotw_upload_exported_adif_file_from_lotw'] = 'Wyślij pobrany plik ADIF z LoTW z <a href="https://p1k.arrl.org/lotwuser/qsos?qsoscmd=adif" target="_blank">Linku</a>, aby otrzymać wiadomość jako przekazaną przez LoTW.';
|
||||
$lang['lotw_upload_type_must_be_adi'] = 'Pliki logu muszą mieć ustawienie .adi';
|
||||
|
||||
$lang['lotw_pull_lotw_data_for_me'] = 'Pobierz dane z LoTW za mnie';
|
||||
$lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for';
|
||||
$lang['lotw_select_callsign'] = 'Wybierz znak wywoławczy, dla którego będą pobierane potwierdzenia LoTW';
|
||||
|
||||
$lang['lotw_report_download_overview_helptext'] ='Cloudlog będzie używał loginu i hasła podanego w profilu, aby pobierać raporty z LoTW.Raport będzie zawierał wszystkie potwierdzenia od wybranej daty, lub ostatniej potwierdzonej łączności z LoTW (wybranej z logiu), do teraz.';
|
||||
$lang['lotw_report_download_overview_helptext'] ='Cloudlog będzie używany do logowania i hasła podanego w profilu, aby pobrać raporty z LoTW.Raport będzie zawierał wszystkie potwierdzenia danych z LoTW (wybranej z logu), do teraz.';
|
||||
|
||||
// Buttons
|
||||
$lang['lotw_btn_lotw_import'] = 'LoTW Import';
|
||||
// Przyciski
|
||||
$lang['lotw_btn_lotw_import'] = 'Import LoTW';
|
||||
$lang['lotw_btn_upload_certificate'] = 'Wyślij certyfikat';
|
||||
$lang['lotw_btn_delete'] = 'Usuń';
|
||||
$lang['lotw_btn_manual_sync'] = 'Ręczna synchronizacja';
|
||||
$lang['lotw_btn_upload_file'] = 'Wyślij plik';
|
||||
$lang['lotw_btn_import_matches'] = 'Import LoTW Matches';
|
||||
$lang['lotw_btn_import_matches'] = 'Importuj mecze LoTW';
|
||||
|
||||
// P12 Export Text
|
||||
$lang['lotw_p12_export_step_one'] = 'Otwórz aplikacje TQSL & przejdź dp zakładki Callsign Certificates';
|
||||
$lang['lotw_p12_export_step_two'] = 'Naciśnij prawym klawiszem myszny na żądany znak';
|
||||
$lang['lotw_p12_export_step_three'] = 'wybierz "Save Callsign Certificate File"i nie podawaj hasła';
|
||||
// P12 Eksportuj tekst
|
||||
$lang['lotw_p12_export_step_one'] = 'Otwórz aplikacje TQSL & przejdź dp zakładki Certyfikaty znaków wywoławczych';
|
||||
$lang['lotw_p12_export_step_two'] = 'Naciśnij klawiszem myszny na pokładzie znaku';
|
||||
$lang['lotw_p12_export_step_three'] = 'wybierz "Zapisz plik certyfikatu znaku wywoławczego" i nie podawaj haseł';
|
||||
$lang['lotw_p12_export_step_four'] = 'Wyślij plik poniżej.';
|
||||
|
||||
$lang['lotw_confirmed'] = 'Ta łączność jest potwierdzona przez LoTW';
|
||||
$lang['lotw_confirmed'] = 'Ta sprawdzona jest potwierdzona przez LoTW';
|
||||
|
||||
// LoTW Expiry
|
||||
$lang['lotw_cert_expiring'] = 'At least one of your LoTW certificates is about to expire!';
|
||||
$lang['lotw_cert_expired'] = 'At least one of your LoTW certificates is expired!';
|
||||
// Wygaśnięcie LoTW
|
||||
$lang['lotw_cert_expiring'] = 'Co najmniej jeden z Twoich certyfikatów LoTW wkrótce wygaśnie!';
|
||||
$lang['lotw_cert_expired'] = 'Co najmniej jeden z Twoich certyfikatów LoTW wygasł!';
|
||||
|
||||
// Lotw User
|
||||
$lang['lotw_user'] = 'This station uses LoTW.';
|
||||
$lang['lotw_last_upload'] = 'Last upload';
|
||||
// Użytkownik Lotw
|
||||
$lang['lotw_user'] = 'Ta stacja używa LoTW.';
|
||||
$lang['lotw_last_upload'] = 'Ostatnie przesłanie';
|
||||
|
|
|
|||
|
|
@ -1,41 +1,41 @@
|
|||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Bezpośredni dostęp do skryptu nie jest dozwolony');
|
||||
|
||||
$lang['menu_badge_developer_mode'] = 'Developer Mode';
|
||||
$lang['menu_badge_developer_mode'] = 'Tryb programisty';
|
||||
|
||||
$lang['menu_logbook'] = 'Logbook';
|
||||
$lang['menu_overview'] = 'Overview';
|
||||
$lang['menu_advanced'] = 'Advanced';
|
||||
$lang['menu_overview'] = 'Przegląd';
|
||||
$lang['menu_advanced'] = 'Zaawansowane';
|
||||
|
||||
$lang['menu_qso'] = 'QSO';
|
||||
$lang['menu_live_qso'] = 'Live QSO';
|
||||
$lang['menu_post_qso'] = 'Post QSO';
|
||||
$lang['menu_fast_log_entry'] = "Simple Fast Log Entry";
|
||||
$lang['menu_live_contest_logging'] = 'Live Contest Logging';
|
||||
$lang['menu_post_contest_logging'] = 'Post Contest Logging';
|
||||
$lang['menu_bandmap'] = 'Bandmap';
|
||||
$lang['menu_view_qsl'] = 'View QSL Cards';
|
||||
$lang['menu_view_eqsl'] = 'View eQSL Cards';
|
||||
$lang['menu_view_sstv'] = 'View SSTV Images';
|
||||
$lang['menu_live_qso'] = 'QSO na żywo';
|
||||
$lang['menu_post_qso'] = 'Opublikuj QSO';
|
||||
$lang['menu_fast_log_entry'] = "Prosty szybki wpis do dziennika";
|
||||
$lang['menu_live_contest_logging'] = 'Rejestrowanie zawodów na żywo';
|
||||
$lang['menu_post_contest_logging'] = 'Rejestrowanie po konkursie';
|
||||
$lang['menu_bandmap'] = 'Mapa pasma';
|
||||
$lang['menu_view_qsl'] = 'Wyświetl karty QSL';
|
||||
$lang['menu_view_eqsl'] = 'Wyświetl karty eQSL';
|
||||
$lang['menu_view_sstv'] = 'Wyświetl obrazy SSTV';
|
||||
|
||||
$lang['menu_notes'] = 'Notes';
|
||||
$lang['menu_notes'] = 'Notatki';
|
||||
|
||||
$lang['menu_analytics'] = 'Analytics';
|
||||
$lang['menu_statistics'] = 'Statistics';
|
||||
$lang['menu_gridsquares'] = 'Gridsquares';
|
||||
$lang['menu_gridmap'] = 'Gridsquare Map';
|
||||
$lang['menu_activated_gridsquares'] = 'Activated Gridsquares';
|
||||
$lang['menu_gridsquare_activators'] = 'Gridsquare Activators';
|
||||
$lang['menu_distances_worked'] = 'Distances Worked';
|
||||
$lang['menu_days_with_qsos'] = 'Days with QSOs';
|
||||
$lang['menu_timeline'] = 'Timeline';
|
||||
$lang['menu_accumulated_statistics'] = 'Accumulated Statistics';
|
||||
$lang['menu_timeplotter'] = 'Timeplotter';
|
||||
$lang['menu_custom_maps'] = 'Custom Maps';
|
||||
$lang['menu_continents'] = 'Continents';
|
||||
$lang['menu_analytics'] = 'Analizy';
|
||||
$lang['menu_statistics'] = 'Statystyki';
|
||||
$lang['menu_gridsquares'] = 'Kwadraty siatki';
|
||||
$lang['menu_gridmap'] = 'Mapa kwadratów siatki';
|
||||
$lang['menu_activated_gridsquares'] = 'Aktywowane kwadraty siatki';
|
||||
$lang['menu_gridsquare_activators'] = 'Aktywatory kwadratów siatki';
|
||||
$lang['menu_distances_worked'] = 'Przebyte odległości';
|
||||
$lang['menu_days_with_qsos'] = 'Dni z QSO';
|
||||
$lang['menu_timeline'] = 'Oś czasu';
|
||||
$lang['menu_accumulated_statistics'] = 'Skumulowane statystyki';
|
||||
$lang['menu_timeplotter'] = 'Ploter czasu';
|
||||
$lang['menu_custom_maps'] = 'Niestandardowe mapy';
|
||||
$lang['menu_continents'] = 'Kontynenty';
|
||||
|
||||
$lang['menu_awards'] = 'Awards';
|
||||
$lang['menu_awards'] = 'Nagrody';
|
||||
$lang['menu_cq'] = 'CQ';
|
||||
$lang['menu_dl_gridmaster'] = 'DL Gridmaster';
|
||||
$lang['menu_dok'] = 'DOK';
|
||||
|
|
@ -45,54 +45,54 @@ $lang['menu_lx_gridmaster'] = 'LX Gridmaster';
|
|||
$lang['menu_pota'] = 'POTA';
|
||||
$lang['menu_sig'] = 'SIG';
|
||||
$lang['menu_sota'] = 'SOTA';
|
||||
$lang['menu_us_counties'] = 'US Counties';
|
||||
$lang['menu_us_counties'] = 'Okręgi USA';
|
||||
$lang['menu_us_gridmaster'] = 'US Gridmaster';
|
||||
$lang['menu_vucc'] = 'VUCC';
|
||||
$lang['menu_waja'] = 'WAJA';
|
||||
$lang['menu_was'] = 'WAS';
|
||||
$lang['menu_was'] = 'BYŁ';
|
||||
$lang['menu_wwff'] = 'WWFF';
|
||||
|
||||
$lang['menu_admin'] = 'Admin';
|
||||
$lang['menu_user_account'] = 'User Accounts';
|
||||
$lang['menu_global_options'] = 'Global Options';
|
||||
$lang['menu_modes'] = 'Modes';
|
||||
$lang['menu_contests'] = 'Contests';
|
||||
$lang['menu_themes'] = 'Themes';
|
||||
$lang['menu_backup'] = 'Backup';
|
||||
$lang['menu_update_country_files'] = 'Update Country Files';
|
||||
$lang['menu_debug_information'] = 'Debug Information';
|
||||
$lang['menu_admin'] = 'Administrator';
|
||||
$lang['menu_user_account'] = 'Konta użytkowników';
|
||||
$lang['menu_global_options'] = 'Opcje globalne';
|
||||
$lang['menu_modes'] = 'Tryby';
|
||||
$lang['menu_contests'] = 'Konkursy';
|
||||
$lang['menu_themes'] = 'Motywy';
|
||||
$lang['menu_backup'] = 'Kopia zapasowa';
|
||||
$lang['menu_update_country_files'] = 'Aktualizuj pliki krajowe';
|
||||
$lang['menu_debug_information'] = 'Informacje debugowania';
|
||||
|
||||
$lang['menu_search_text'] = 'Search Callsign';
|
||||
$lang['menu_search_text_quicklog'] = "Add/Search Callsign";
|
||||
$lang['menu_search_text'] = 'Wyszukaj znak wywoławczy';
|
||||
$lang['menu_search_text_quicklog'] = "Dodaj/wyszukaj znak wywoławczy";
|
||||
|
||||
$lang['menu_search_button'] = 'Search';
|
||||
$lang['menu_search_button_qicksearch_log'] = "Log";
|
||||
$lang['menu_login_button'] = 'Login';
|
||||
$lang['menu_search_button'] = 'Wyszukaj';
|
||||
$lang['menu_search_button_qicksearch_log'] = "Dziennik";
|
||||
$lang['menu_login_button'] = 'Zaloguj';
|
||||
|
||||
$lang['menu_account'] = 'Account';
|
||||
$lang['menu_station_logbooks'] = 'Station Logbooks';
|
||||
$lang['menu_station_locations'] = 'Station Locations';
|
||||
$lang['menu_bands'] = 'Bands';
|
||||
$lang['menu_adif_import_export'] = 'ADIF Import / Export';
|
||||
$lang['menu_kml_export'] = 'KML Export';
|
||||
$lang['menu_dx_atlas_gridsquare_export'] = 'DX Atlas Gridsquare Export';
|
||||
$lang['menu_sota_csv_export'] = 'SOTA CSV Export';
|
||||
$lang['menu_cabrillo_export'] = 'Cabrillo Export';
|
||||
$lang['menu_oqrs_requests'] = 'OQRS Requests';
|
||||
$lang['menu_print_requested_qsls'] = 'Print Requested QSLs';
|
||||
$lang['menu_labels'] = 'Labels';
|
||||
$lang['menu_logbook_of_the_world'] = 'Logbook of the World';
|
||||
$lang['menu_eqsl_import_export'] = 'eQSL Import / Export';
|
||||
$lang['menu_qrz_logbook'] = 'QRZ Logbook';
|
||||
$lang['menu_hrd_logbook'] = 'HRDLog Logbook';
|
||||
$lang['menu_qo_100_dx_club_upload'] = 'QO-100 Dx Club Upload';
|
||||
$lang['menu_api_keys'] = 'API Keys';
|
||||
$lang['menu_hardware_interfaces'] = 'Hardware Interfaces';
|
||||
$lang['menu_help'] = 'Help';
|
||||
$lang['menu_account'] = 'Konto';
|
||||
$lang['menu_station_logbooks'] = 'Dzienniki stacji';
|
||||
$lang['menu_station_locations'] = 'Lokalizacje stacji';
|
||||
$lang['menu_bands'] = 'Pasma';
|
||||
$lang['menu_adif_import_export'] = 'Import/eksport ADIF';
|
||||
$lang['menu_kml_export'] = 'Eksport KML';
|
||||
$lang['menu_dx_atlas_gridsquare_export'] = 'Eksport siatki kwadratów atlasu DX';
|
||||
$lang['menu_sota_csv_export'] = 'Eksport SOTA CSV';
|
||||
$lang['menu_cabrillo_export'] = 'Eksport Cabrillo';
|
||||
$lang['menu_oqrs_requests'] = 'Żądania OQRS';
|
||||
$lang['menu_print_requested_qsls'] = 'Drukuj zamówione karty QSL';
|
||||
$lang['menu_labels'] = 'Etykiety';
|
||||
$lang['menu_logbook_of_the_world'] = 'Dziennik świata';
|
||||
$lang['menu_eqsl_import_export'] = 'Import/eksport eQSL';
|
||||
$lang['menu_qrz_logbook'] = 'Dziennik QRZ';
|
||||
$lang['menu_hrd_logbook'] = 'Dziennik HRDLog';
|
||||
$lang['menu_qo_100_dx_club_upload'] = 'Przesyłanie QO-100 Dx Club';
|
||||
$lang['menu_api_keys'] = 'Klucze API';
|
||||
$lang['menu_hardware_interfaces'] = 'Interfejsy sprzętowe';
|
||||
$lang['menu_help'] = 'Pomoc';
|
||||
$lang['menu_forum'] = 'Forum';
|
||||
$lang['menu_logout'] = 'Logout';
|
||||
$lang['menu_logout'] = 'Wyloguj';
|
||||
|
||||
$lang['menu_ffma'] = "Fred Fish Memorial Award";
|
||||
$lang['menu_ffma'] = "Nagroda im. Freda Fisha";
|
||||
$lang['menu_ja_gridmaster'] = 'JA Gridmaster';
|
||||
$lang['menu_maintenance']='Maintenance';
|
||||
$lang['menu_maintenance']='Konserwacja';
|
||||
$lang['menu_uk_gridmaster'] = 'UK Gridmaster';
|
||||
|
|
@ -1,18 +1,18 @@
|
|||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Bezpośredni dostęp do skryptu nie jest dozwolony');
|
||||
|
||||
$lang['notes_menu_notes'] = 'Notatki';
|
||||
$lang['notes_edit_note'] = 'Edytuj notatkę';
|
||||
$lang['notes_your_notes'] = 'Twoje notatki';
|
||||
|
||||
$lang['notes_welcome'] = "Nie masz jeszcze żadnej notatki, są one fantastyczną drogą do przechowywana pomocnych danych takich jak np. ustawienia skrzynki antenowej, bikony, i ogólne notatki. Są lepsze niż papierowe, bo nigdy nie giną. !";
|
||||
$lang['notes_welcome'] = "Nie masz jeszcze żadnych notatek, są one fantastyczne drogą do przechowywanych pomocnych danych takich jak np. urządzenia skrzynki antenowej, bikony, i ogólne notatki. Są lepsze niż papierowe, bo nigdy nie giną.!";
|
||||
|
||||
$lang['notes_create_note'] = 'Utwórz notatkę';
|
||||
|
||||
$lang['notes_input_title'] = 'Tyuł';
|
||||
$lang['notes_input_category'] = 'Kategoria';
|
||||
$lang['notes_input_notes_content'] = 'Zawartość notatki';
|
||||
$lang['notes_input_notes_content'] = 'Zawartość notatek';
|
||||
$lang['notes_input_btn_save_note'] = 'Zapisz notatkę';
|
||||
$lang['notes_input_btn_edit_note'] = 'Edytuj notatkę';
|
||||
$lang['notes_input_btn_delete_note'] = 'Usuń notatkę';
|
||||
|
|
|
|||
|
|
@ -1,126 +1,136 @@
|
|||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Bezpośredni dostęp do skryptu nie jest dozwolony');
|
||||
|
||||
$lang['options_cloudlog_options'] = 'Cloudlog Options';
|
||||
$lang['options_message1'] = 'Cloudlog Options are global settings used for all users of the installation, which are overridden if there\'s a setting on a user level.';
|
||||
$lang['options_cloudlog_options'] = 'Opcje Cloudlog';
|
||||
$lang['options_message1'] = 'Opcje Cloudlog to globalne ustawienia używane dla wszystkich użytkowników instalacji, które są zastępowane, jeśli istnieje ustawienie na poziomie użytkownika.';
|
||||
|
||||
$lang['options_appearance'] = 'Appearance';
|
||||
$lang['options_theme'] = 'Theme';
|
||||
$lang['options_global_theme_choice_this_is_used_when_users_arent_logged_in'] = 'Global Theme Choice, this is used when users arent logged in.';
|
||||
$lang['options_public_search_bar'] = 'Public Search Bar';
|
||||
$lang['options_this_allows_non_logged_in_users_to_access_the_search_functions'] = 'This allows non logged in users to access the search functions.';
|
||||
$lang['options_dashboard_notification_banner'] = 'Dashboard Notification Banner';
|
||||
$lang['options_this_allows_to_disable_the_global_notification_banner_on_the_dashboard'] = 'This allows to disable the global notification banner on the dashboard.';
|
||||
$lang['options_dashboard_map'] = 'Dashboard Map';
|
||||
$lang['options_this_allows_the_map_on_the_dashboard_to_be_disabled_or_placed_on_the_right'] = 'This allows the map on the dashboard to be disabled or placed on the right.';
|
||||
$lang['options_logbook_map'] = 'Logbook Map';
|
||||
$lang['options_this_allows_to_disable_the_map_in_the_logbook'] = 'This allows to disable the map in the logbook.';
|
||||
$lang['options_theme_changed_to'] = 'Theme changed to ';
|
||||
$lang['options_global_search_changed_to'] = 'Global Search changed to ';
|
||||
$lang['options_dashboard_banner_changed_to'] = 'Dashboard banner changed to ';
|
||||
$lang['options_dashboard_map_changed_to'] = 'Dashboard map changed to ';
|
||||
$lang['options_logbook_map_changed_to'] = 'Logbook map changed to ';
|
||||
$lang['options_appearance'] = 'Wygląd';
|
||||
$lang['options_theme'] = 'Motyw';
|
||||
$lang['options_global_theme_choice_this_is_used_when_users_arent_logged_in'] = 'Globalny wybór motywu, jest używany, gdy użytkownicy nie są zalogowani.';
|
||||
$lang['options_public_search_bar'] = 'Publiczny pasek wyszukiwania';
|
||||
$lang['options_this_allows_non_logged_in_users_to_access_the_search_functions'] = 'Umożliwia to niezalogowanym użytkownikom dostęp do funkcji wyszukiwania.';
|
||||
$lang['options_dashboard_notification_banner'] = 'Baner powiadomień na pulpicie';
|
||||
$lang['options_this_allows_to_disable_the_global_notification_banner_on_the_dashboard'] = 'Umożliwia to wyłączenie globalnego banera powiadomień na pulpicie.';
|
||||
$lang['options_dashboard_map'] = 'Mapa pulpitu';
|
||||
$lang['options_this_allows_the_map_on_the_dashboard_to_be_disabled_or_placed_on_the_right'] = 'Umożliwia to wyłączenie mapy na pulpicie lub umieszczenie jej po prawej stronie.';
|
||||
$lang['options_logbook_map'] = 'Mapa dziennika';
|
||||
$lang['options_this_allows_to_disable_the_map_in_the_logbook'] = 'Pozwala wyłączyć mapę w dzienniku.';
|
||||
$lang['options_theme_changed_to'] = 'Motyw zmieniony na ';
|
||||
$lang['options_global_search_changed_to'] = 'Wyszukiwanie globalne zmienione na ';
|
||||
$lang['options_dashboard_banner_changed_to'] = 'Baner pulpitu zmieniony na ';
|
||||
$lang['options_dashboard_map_changed_to'] = 'Mapa pulpitu zmieniona na ';
|
||||
$lang['options_logbook_map_changed_to'] = 'Mapa dziennika zmieniona na ';
|
||||
|
||||
$lang['options_radios'] = 'Radios';
|
||||
$lang['options_radio_settings'] = 'Radio Settings';
|
||||
$lang['options_radio_timeout_warning'] = 'Radio Timeout Warning';
|
||||
$lang['options_the_radio_timeout_warning_is_used_on_the_qso_entry_panel_to_alert_you_to_radio_interface_disconnects'] = 'The Radio Timeout Warning is used on the QSO entry panel to alert you to radio interface disconnects.';
|
||||
$lang['options_this_number_is_in_seconds'] = 'This number is in seconds.';
|
||||
$lang['options_radio_timeout_warning_changed_to'] = 'Radio Timeout Warning changed to ';
|
||||
$lang['options_radios'] = 'Radia';
|
||||
$lang['options_radio_settings'] = 'Ustawienia radia';
|
||||
$lang['options_radio_timeout_warning'] = 'Ostrzeżenie o przekroczeniu limitu czasu radia';
|
||||
$lang['options_the_radio_timeout_warning_is_used_on_the_qso_entry_panel_to_alert_you_to_radio_interface_disconnects'] = 'Ostrzeżenie o przekroczeniu limitu czasu radia jest używane na panelu wejściowym QSO, aby informować o rozłączeniach interfejsu radiowego.';
|
||||
$lang['options_this_number_is_in_seconds'] = 'Ta liczba jest w sekundach.';
|
||||
$lang['options_radio_timeout_warning_changed_to'] = 'Ostrzeżenie o przekroczeniu limitu czasu radia zmieniono na ';
|
||||
|
||||
$lang['options_email'] = 'Email';
|
||||
$lang['options_outgoing_protocol'] = 'Outgoing Protocol';
|
||||
$lang['options_smtp_encryption'] = 'SMTP Encryption';
|
||||
$lang['options_email_address'] = 'Email Address';
|
||||
$lang['options_email_sender_name'] = 'Email Sender Name';
|
||||
$lang['options_smtp_host'] = 'SMTP Host';
|
||||
$lang['options_smtp_port'] = 'SMTP Port';
|
||||
$lang['options_smtp_username'] = 'SMTP Username';
|
||||
$lang['options_smtp_password'] = 'SMTP Password';
|
||||
$lang['options_mail_settings_saved'] = "The settings were saved successfully.";
|
||||
$lang['options_mail_settings_failed'] = "Something went wrong with saving the settings. Try again.";
|
||||
$lang['options_outgoing_protocol_hint'] = "The protocol that will be used to send out emails.";
|
||||
$lang['options_smtp_encryption_hint'] = "Choose whether emails should be sent with TLS or SSL.";
|
||||
$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'cloudlog@example.com'";
|
||||
$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Cloudlog'";
|
||||
$lang['options_smtp_host_hint'] = "The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' or 'tls://')";
|
||||
$lang['options_smtp_port_hint'] = "The SMTP port of the mail server, e.g. if TLS is used -> '587', if SSL is used -> '465'";
|
||||
$lang['options_smtp_username_hint'] = "The username to log in to the mail server, usually this is the email address that is used.";
|
||||
$lang['options_smtp_password_hint'] = "The password to log in to the mail server.";
|
||||
$lang['options_send_testmail'] = "Send Test-Mail";
|
||||
$lang['options_send_testmail_hint'] = "The email will be sent to the address defined in your account settings.";
|
||||
$lang['options_send_testmail_failed'] = "Testmail failed. Something went wrong.";
|
||||
$lang['options_send_testmail_success'] = "Testmail sent. Email settings seem to be correct.";
|
||||
$lang['options_email'] = 'E-mail';
|
||||
$lang['options_outgoing_protocol'] = 'Protokół wychodzący';
|
||||
$lang['options_smtp_encryption'] = 'Szyfrowanie SMTP';
|
||||
$lang['options_email_address'] = 'Adres e-mail';
|
||||
$lang['options_email_sender_name'] = 'Nazwa nadawcy e-mail';
|
||||
$lang['options_smtp_host'] = 'Host SMTP';
|
||||
$lang['options_smtp_port'] = 'Port SMTP';
|
||||
$lang['options_smtp_username'] = 'Nazwa użytkownika SMTP';
|
||||
$lang['options_smtp_password'] = 'Hasło SMTP';
|
||||
$lang['options_mail_settings_saved'] = "Ustawienia zostały pomyślnie zapisane.";
|
||||
$lang['options_mail_settings_failed'] = "Wystąpił błąd podczas zapisywania ustawień. Spróbuj ponownie.";
|
||||
$lang['options_outgoing_protocol_hint'] = "Protokół, który będzie używany do wysyłania wiadomości e-mail.";
|
||||
$lang['options_smtp_encryption_hint'] = "Wybierz, czy wiadomości e-mail mają być wysyłane przy użyciu protokołu TLS czy SSL.";
|
||||
$lang['options_email_address_hint'] = "Adres e-mail, z którego wiadomości e-mail są wysyłane, np. 'cloudlog@example.com'";
|
||||
$lang['options_email_sender_name_hint'] = "Nazwa nadawcy wiadomości e-mail, np. 'Cloudlog'";
|
||||
$lang['options_smtp_host_hint'] = "Nazwa hosta serwera pocztowego, np. 'mail.example.com' (bez 'ssl://' lub 'tls://')";
|
||||
$lang['options_smtp_port_hint'] = "Port SMTP serwera pocztowego, np. jeśli używany jest TLS -> '587', jeśli używany jest SSL -> '465'";
|
||||
$lang['options_smtp_username_hint'] = "Nazwa użytkownika do logowania się na serwerze pocztowym, zwykle jest to używany adres e-mail.";
|
||||
$lang['options_smtp_password_hint'] = "Hasło do logowania się na serwerze pocztowym.";
|
||||
$lang['options_send_testmail'] = "Wyślij wiadomość testową";
|
||||
$lang['options_send_testmail_hint'] = "E-mail zostanie wysłany na adres zdefiniowany w ustawieniach konta.";
|
||||
|
||||
$lang['options_oqrs'] = 'OQRS Options';
|
||||
$lang['options_global_text'] = 'Global text';
|
||||
$lang['options_this_text_is_an_optional_text_that_can_be_displayed_on_top_of_the_oqrs_page'] = 'This text is an optional text that can be displayed on top of the OQRS page.';
|
||||
$lang['options_grouped_search'] = 'Grouped search';
|
||||
$lang['options_when_this_is_on_all_station_locations_with_oqrs_active_will_be_searched_at_once'] = 'When this is on, all station locations with OQRS active, will be searched at once.';
|
||||
$lang['options_grouped_search_show_station_name'] = "Show station location name in grouped search results";
|
||||
$lang['options_grouped_search_show_station_name_hint'] = "If grouped search is ON, you can decide if the name of the station location shall be shown in the results table.";
|
||||
$lang['options_oqrs_options_have_been_saved'] = 'OQRS options have been saved.';
|
||||
$lang['options_send_testmail_failed'] = "Testmail nie powiódł się. Coś poszło nie tak.";
|
||||
|
||||
$lang['options_send_testmail_success'] = "Testmail został wysłany. Ustawienia e-maila wydają się być poprawne.";
|
||||
|
||||
$lang['options_oqrs'] = 'Opcje OQRS';
|
||||
|
||||
$lang['options_global_text'] = 'Tekst globalny';
|
||||
|
||||
$lang['options_this_text_is_an_optional_text_that_can_be_displayed_on_top_of_the_oqrs_page'] = 'Ten tekst jest opcjonalnym tekstem, który można wyświetlić na górze strony OQRS.';
|
||||
|
||||
$lang['options_grouped_search'] = 'Wyszukiwanie grupowe';
|
||||
$lang['options_when_this_is_on_all_station_locations_with_oqrs_active_will_be_searched_at_once'] = 'Gdy ta opcja jest włączona, wszystkie lokalizacje stacji z aktywnym OQRS zostaną przeszukane jednocześnie.';
|
||||
$lang['options_grouped_search_show_station_name'] = "Pokaż nazwę lokalizacji stacji w wynikach wyszukiwania grupowego";
|
||||
$lang['options_grouped_search_show_station_name_hint'] = "Jeśli wyszukiwanie grupowe jest włączone, możesz zdecydować, czy nazwa lokalizacji stacji ma być wyświetlana w tabeli wyników.";
|
||||
$lang['options_oqrs_options_have_been_saved'] = 'Opcje OQRS zostały zapisane.';
|
||||
$lang['options_dxcluster'] = 'DXCluster';
|
||||
$lang['options_dxcluster_provider'] = 'Provider of DXClusterCache';
|
||||
$lang['options_dxcluster_longtext'] = 'The Provider of the DXCluster-Cache. You can set up your own Cache with <a href="https://github.com/int2001/DXClusterAPI">DXClusterAPI</a> or use a public one';
|
||||
$lang['options_dxcluster_hint'] = 'URL of the DXCluster-Cache. e.g. https://dxc.jo30.de/dxcache';
|
||||
$lang['options_dxcluster_provider'] = 'Dostawca DXClusterCache';
|
||||
$lang['options_dxcluster_longtext'] = 'Dostawca DXCluster-Cache. Możesz skonfigurować własną pamięć podręczną za pomocą <a href="https://github.com/int2001/DXClusterAPI">DXClusterAPI</a> lub użyć publicznej';
|
||||
$lang['options_dxcluster_hint'] = 'Adres URL pamięci podręcznej DXCluster. np. https://dxc.jo30.de/dxcache';
|
||||
$lang['options_dxcluster_settings'] = 'DXCluster';
|
||||
$lang['options_dxcache_url_changed_to'] = 'DXCluster Cache URL changed to ';
|
||||
$lang['options_dxcluster_maxage'] = 'Maximum Age of spots taken care of';
|
||||
$lang['options_dxcluster_maxage_hint'] = 'The Age in Minutes of spots, that will be taken care at bandplan/lookup';
|
||||
$lang['options_dxcluster_decont'] = 'Show spots which are spotted from following continent';
|
||||
$lang['options_dxcluster_maxage_changed_to']='Maximum age of spots changed to ';
|
||||
$lang['options_dxcluster_decont_changed_to']='de continent changed to ';
|
||||
$lang['options_dxcluster_decont_hint']='Only spots by spotters from this continent are shown';
|
||||
$lang['options_dxcache_url_changed_to'] = 'Adres URL pamięci podręcznej DXCluster zmieniono na ';
|
||||
$lang['options_dxcluster_maxage'] = 'Maksymalny wiek obsługiwanych spotów';
|
||||
$lang['options_dxcluster_maxage_hint'] = 'Wiek w minutach spotów, które zostaną uwzględnione w bandplanie/wyszukiwaniu';
|
||||
$lang['options_dxcluster_decont'] = 'Pokaż spoty, które zostały oznaczone z następującego kontynentu';
|
||||
$lang['options_dxcluster_maxage_changed_to']='Maksymalny wiek spotów zmieniono na ';
|
||||
$lang['options_dxcluster_decont_changed_to']='kontynent zmieniono na ';
|
||||
$lang['options_dxcluster_decont_hint']='Pokazywane są tylko spoty spotterów z tego kontynentu';
|
||||
|
||||
$lang['options_version_dialog'] = "Version Info";
|
||||
$lang['options_version_dialog_close'] = "Close";
|
||||
$lang['options_version_dialog_dismiss'] = "Don't show again";
|
||||
$lang['options_version_dialog_settings'] = "Version Info Settings";
|
||||
$lang['options_version_dialog_header'] = "Version Info Header";
|
||||
$lang['options_version_dialog_header_hint'] = "You can change the header of the version info dialog.";
|
||||
$lang['options_version_dialog_header_changed_to'] = "Version Info Header changed to";
|
||||
$lang['options_version_dialog_mode'] = "Version Info Mode";
|
||||
$lang['options_version_dialog_mode_release_notes'] = "Only Release Notes";
|
||||
$lang['options_version_dialog_mode_custom_text'] = "Only Custom Text";
|
||||
$lang['options_version_dialog_mode_both'] = "Release Notes and Custom Text";
|
||||
$lang['options_version_dialog_mode_disabled'] = "Disabled";
|
||||
$lang['options_version_dialog_mode_hint'] = "The Version Info is shown to every user. The user has the option to dismiss the dialog after they read it. Select if you want to show only release notes (fetched from github), only custom text or both.";
|
||||
$lang['options_version_dialog_custom_text'] = "Version Info Custom Text";
|
||||
$lang['options_version_dialog_custom_text_hint'] = "This is the custom text which is shown in the dialog.";
|
||||
$lang['options_version_dialog_mode_changed_to'] = "Version Info Mode changed to";
|
||||
$lang['options_version_dialog_custom_text_saved'] = "Version Info Custom Text saved!";
|
||||
$lang['options_version_dialog_success_show_all'] = "Version Info will be shown to all users again";
|
||||
$lang['options_version_dialog_success_hide_all'] = "Version Info will not be shown to any user";
|
||||
$lang['options_version_dialog_show_hide'] = "Show/Hide Version Info Dialog for all Users";
|
||||
$lang['options_version_dialog_show_all'] = "Show for all Users";
|
||||
$lang['options_version_dialog_hide_all'] = "Hide for all Users";
|
||||
$lang['options_version_dialog_show_all_hint'] = "This will show the version dialog automatically to all users on their next page reload.";
|
||||
$lang['options_version_dialog_hide_all_hint'] = "This will deactivate the automatic popup of the version dialog for all users.";
|
||||
$lang['options_version_dialog'] = "Informacje o wersji";
|
||||
$lang['options_version_dialog_close'] = "Zamknij";
|
||||
$lang['options_version_dialog_dismiss'] = "Nie pokazuj ponownie";
|
||||
$lang['options_version_dialog_settings'] = "Ustawienia informacji o wersji";
|
||||
$lang['options_version_dialog_header'] = "Nagłówek informacji o wersji";
|
||||
$lang['options_version_dialog_header_hint'] = "Możesz zmienić nagłówek okna dialogowego informacji o wersji.";
|
||||
$lang['options_version_dialog_header_changed_to'] = "Nagłówek informacji o wersji został zmieniony na";
|
||||
$lang['options_version_dialog_mode'] = "Tryb informacji o wersji";
|
||||
$lang['options_version_dialog_mode_release_notes'] = "Tylko informacje o wydaniu";
|
||||
$lang['options_version_dialog_mode_custom_text'] = "Tylko tekst niestandardowy";
|
||||
$lang['options_version_dialog_mode_both'] = "Informacje o wydaniu i tekst niestandardowy";
|
||||
$lang['options_version_dialog_mode_disabled'] = "Wyłączone";
|
||||
$lang['options_version_dialog_mode_hint'] = "Informacje o wersji są wyświetlane każdemu użytkownikowi. Użytkownik ma możliwość zamknięcia okna dialogowego po jego przeczytaniu. Wybierz, czy chcesz wyświetlić tylko informacje o wydaniu (pobrane z github), tylko tekst niestandardowy czy oba.";
|
||||
$lang['options_version_dialog_custom_text'] = "Niestandardowy tekst informacji o wersji";
|
||||
$lang['options_version_dialog_custom_text_hint'] = "To jest niestandardowy tekst wyświetlany w oknie dialogowym.";
|
||||
$lang['options_version_dialog_mode_changed_to'] = "Zmieniono tryb informacji o wersji na";
|
||||
$lang['options_version_dialog_custom_text_saved'] = "Niestandardowy tekst informacji o wersji zapisano!";
|
||||
$lang['options_version_dialog_success_show_all'] = "Informacje o wersji zostaną ponownie wyświetlone wszystkim użytkownikom";
|
||||
$lang['options_version_dialog_success_hide_all'] = "Informacje o wersji nie zostaną wyświetlone żadnemu użytkownikowi";
|
||||
$lang['options_version_dialog_show_hide'] = "Pokaż/ukryj okno dialogowe informacji o wersji dla wszystkich użytkowników";
|
||||
$lang['options_version_dialog_show_all'] = "Pokaż dla wszystkich użytkowników";
|
||||
$lang['options_version_dialog_hide_all'] = "Ukryj dla wszystkich użytkowników";
|
||||
$lang['options_version_dialog_show_all_hint'] = "Spowoduje to automatyczne wyświetlenie okna dialogowego wersji wszystkim użytkownikom przy następnym przeładowaniu strony.";
|
||||
$lang['options_version_dialog_hide_all_hint'] = "Spowoduje to wyłączenie automatycznego wyświetlania okna dialogowego wersji dla wszystkich użytkowników.";
|
||||
|
||||
$lang['options_save'] = 'Save';
|
||||
$lang['options_save'] = 'Zapisz';
|
||||
|
||||
// Bands
|
||||
// Pasma
|
||||
|
||||
$lang['options_bands'] = "Pasma";
|
||||
$lang['options_bands_text_ln1'] = "Używając listy pasm możesz kontrolować, które pasma są wyświetlane podczas tworzenia nowego QSO.";
|
||||
$lang['options_bands_text_ln2'] = "Aktywne pasma będą wyświetlane w rozwijanym menu QSO 'Pasmo', natomiast nieaktywne pasma będą ukryte i nie będzie można ich wybrać.";
|
||||
$lang['options_bands_create'] = "Utwórz pasmo";
|
||||
$lang['options_bands_edit'] = "Edytuj pasmo";
|
||||
$lang['options_bands_activate_all'] = "Aktywuj wszystkie";
|
||||
$lang['options_bands_activateall_warning'] = "Ostrzeżenie! Czy na pewno chcesz aktywować wszystkie pasma?";
|
||||
$lang['options_bands_deactivate_all'] = "Dezaktywuj wszystkie";
|
||||
$lang['options_bands_deactivateall_warning'] = "Ostrzeżenie! Czy na pewno chcesz dezaktywować wszystkie pasma?";
|
||||
|
||||
$lang['options_bands'] = "Bands";
|
||||
$lang['options_bands_text_ln1'] = "Using the band list you can control which bands are shown when creating a new QSO.";
|
||||
$lang['options_bands_text_ln2'] = "Active bands will be shown in the QSO 'Band' drop-down, while inactive bands will be hidden and cannot be selected.";
|
||||
$lang['options_bands_create'] = "Create a band";
|
||||
$lang['options_bands_edit'] = "Edit Band";
|
||||
$lang['options_bands_activate_all'] = "Activate All";
|
||||
$lang['options_bands_activateall_warning'] = "Warning! Are you sure you want to activate all bands?";
|
||||
$lang['options_bands_deactivate_all'] = "Deactivate All";
|
||||
$lang['options_bands_deactivateall_warning'] = "Warning! Are you sure you want to deactivate all bands?";
|
||||
$lang['options_bands_ssb_qrg'] = "SSB QRG";
|
||||
$lang['options_bands_ssb_qrg_hint'] = "Frequency for SSB QRG in band (must be in Hz)";
|
||||
|
||||
$lang['options_bands_ssb_qrg_hint'] = "Częstotliwość dla SSB QRG w paśmie (musi być w Hz)";
|
||||
|
||||
$lang['options_bands_data_qrg'] = "DATA QRG";
|
||||
$lang['options_bands_data_qrg_hint'] = "Frequency for DATA QRG in band (must be in Hz)";
|
||||
|
||||
$lang['options_bands_data_qrg_hint'] = "Częstotliwość dla DATA QRG w paśmie (musi być w Hz)";
|
||||
|
||||
$lang['options_bands_cw_qrg'] = "CW QRG";
|
||||
$lang['options_bands_cw_qrg_hint'] = "Frequency for CW QRG in band (must be in Hz)";
|
||||
|
||||
$lang['options_bands_name_band'] = "Name of Band (E.g. 20m)";
|
||||
$lang['options_bands_name_bandgroup'] = "Name of bandgroup (E.g. hf, vhf, uhf, shf)";
|
||||
$lang['options_bands_delete_warning'] = "Warning! Are you sure you want to delete the following band: ";
|
||||
$lang['options_bands_cw_qrg_hint'] = "Częstotliwość dla CW QRG w paśmie (musi być w Hz)";
|
||||
|
||||
$lang['options_bands_name_band'] = "Nazwa pasma (np. 20m)";
|
||||
$lang['options_bands_name_bandgroup'] = "Nazwa grupy pasm (np. hf, vhf, uhf, shf)";
|
||||
$lang['options_bands_delete_warning'] = "Ostrzeżenie! Czy na pewno chcesz usunąć następujące pasmo: ";
|
||||
|
||||
|
|
|
|||
|
|
@ -1,39 +1,39 @@
|
|||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Bezpośredni dostęp do skryptu nie jest dozwolony');
|
||||
|
||||
// Tiles
|
||||
// Płytki
|
||||
$lang['qslcard_string_your_are_using'] = 'Używasz';
|
||||
$lang['qslcard_string_disk_space'] = 'żeby przechować dane kart QSL';
|
||||
|
||||
$lang['qslcard_info'] = 'QSL Info';
|
||||
$lang['qslcard_sent'] = 'QSL Card has been sent';
|
||||
$lang['qslcard_info'] = 'Informacje o QSL';
|
||||
$lang['qslcard_sent'] = 'Karta QSL została wysłana';
|
||||
$lang['qslcard_sent_bureau'] = 'Karta QSL została wysłana przez biuro';
|
||||
$lang['qslcard_sent_direct'] = 'Karta QSL została wysłana bezpośrednio';
|
||||
$lang['qslcard_sent_electronic'] = 'QSL Card has been sent electronically';
|
||||
$lang['qslcard_sent_manager'] = 'QSL Card has been sent via manager';
|
||||
$lang['qslcard_rcvd'] = 'QSL Card has been received';
|
||||
$lang['qslcard_rcvd_bureau'] = 'Karta QSL została otrzymana przez biuro';
|
||||
$lang['qslcard_rcvd_direct'] = 'Karta QSL została otrzymana bezpośrednio';
|
||||
$lang['qslcard_rcvd_electronic'] = 'QSL Card has been received electronically';
|
||||
$lang['qslcard_rcvd_manager'] = 'QSL Card has been received via manager';
|
||||
$lang['qslcard_sent_electronic'] = 'Karta QSL została wysłana drogą elektroniczną';
|
||||
$lang['qslcard_sent_manager'] = 'Karta QSL została wysłana przez managera';
|
||||
$lang['qslcard_rcvd'] = 'Karta QSL została odebrana';
|
||||
$lang['qslcard_rcvd_bureau'] = 'Karta QSL została odebrana przez biuro';
|
||||
$lang['qslcard_rcvd_direct'] = 'Karta QSL została odebrana bezpośrednio';
|
||||
$lang['qslcard_rcvd_electronic'] = 'Karta QSL została odebrana elektronicznie';
|
||||
$lang['qslcard_rcvd_manager'] = 'Karta QSL została odebrana przez managera';
|
||||
|
||||
$lang['qslcard_upload_front'] = 'Wyślij awers karty QSL';
|
||||
$lang['qslcard_upload_back'] = 'Wyślij rewers karty QSL';
|
||||
|
||||
$lang['qslcard_upload_button'] = 'Wyślij informacje.';
|
||||
|
||||
$lang['qslcard_qslprint_header'] = "Export Requested QSLs for Printing";
|
||||
$lang['qslcard_qslprint_text_line1'] = "Here you can export requested QSLs as CSV or ADIF files for printing and, optionally, mark them as sent.";
|
||||
$lang['qslcard_qslprint_text_line2'] = "Requested QSLs are any QSOs with a value of 'Requested' or 'Queued' in their 'QSL Sent' field.";
|
||||
$lang['qslcard_qslprint_send_method'] = "Send Method";
|
||||
$lang['qslcard_qslprint_mark_as_sent'] = "Mark as sent";
|
||||
$lang['qslcard_qslprint_mark_selected_as_printed'] = "Mark selected QSOs as printed";
|
||||
$lang['qslcard_qslprint_remove_selected_from_queue'] = "Remove selected QSOs from the queue";
|
||||
$lang['qslcard_qslprint_export_csv'] = "Export requested QSLs to CSV-file";
|
||||
$lang['qslcard_qslprint_export_adif'] = "Export requested QSLs to ADIF-file";
|
||||
$lang['qslcard_qslprint_mark_requested_as_sent'] = "Mark requested QSLs as sent";
|
||||
$lang['qslcard_qslprint_no_qsls_found'] = "No QSLs to print were found!";
|
||||
$lang['qslcard_qslprint_add_to_queue'] = "Add to print queue";
|
||||
$lang['qslcard_qslprint_no_additional_qso_found'] = "No additional QSO's were found. That means they are probably already in the queue.";
|
||||
$lang['qslcard_qslprint_header'] = "Eksportuj zamówione QSL-e do druku";
|
||||
$lang['qslcard_qslprint_text_line1'] = "Tutaj możesz wyeksportować zamówione QSL-e jako pliki CSV lub ADIF do druku i opcjonalnie oznaczyć je jako wysłane.";
|
||||
$lang['qslcard_qslprint_text_line2'] = "Zamówione QSL-e to wszystkie QSO z wartością 'Zamówione' lub 'W kolejce' w polu 'Wysłane QSL'.";
|
||||
$lang['qslcard_qslprint_send_method'] = "Metoda wysyłania";
|
||||
$lang['qslcard_qslprint_mark_as_sent'] = "Oznacz jako wysłane";
|
||||
$lang['qslcard_qslprint_mark_selected_as_printed'] = "Oznacz wybrane QSO jako wydrukowane";
|
||||
$lang['qslcard_qslprint_remove_selected_from_queue'] = "Usuń wybrane QSO z kolejki";
|
||||
$lang['qslcard_qslprint_export_csv'] = "Eksportuj zamówione QSL-e do pliku CSV";
|
||||
$lang['qslcard_qslprint_export_adif'] = "Eksportuj zamówione QSL-e do pliku ADIF";
|
||||
$lang['qslcard_qslprint_mark_requested_as_sent'] = "Oznacz zamówione QSL-e jako wysłane";
|
||||
$lang['qslcard_qslprint_no_qsls_found'] = "Nie znaleziono żadnych QSL-ów do wydrukowania!";
|
||||
$lang['qslcard_qslprint_add_to_queue'] = "Dodaj do kolejki drukowania";
|
||||
$lang['qslcard_qslprint_no_additional_qso_found'] = "Nie znaleziono żadnych dodatkowych QSO. Oznacza to, że prawdopodobnie są już w kolejce.";
|
||||
|
||||
|
|
|
|||
|
|
@ -1,20 +1,20 @@
|
|||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Brak bezpośredniego dostępu do skryptu');
|
||||
|
||||
// Tiles
|
||||
// Kafelki
|
||||
$lang['qso_title_qso_map'] = 'Mapa łączności';
|
||||
$lang['qso_title_suggestions'] = 'Sugestie';
|
||||
$lang['qso_title_previous_contacts'] = 'Poprzednie łączności';
|
||||
$lang['qso_title_times_worked_before'] = "times worked before";
|
||||
$lang['qso_title_image'] = 'Profile Picture';
|
||||
$lang['qso_previous_max_shown'] = "Max. 5 previous contacts are shown";
|
||||
$lang['qso_title_times_worked_before'] = "times working before";
|
||||
$lang['qso_title_image'] = 'Zdjęcie profilowe';
|
||||
$lang['qso_previous_max_shown'] = "Wyświetlono maks. 5 poprzednich kontaktów";
|
||||
|
||||
// Quicklog on Dashboard
|
||||
// Quicklog na pulpicie nawigacyjnym
|
||||
$lang['qso_quicklog_enter_callsign'] = 'QUICKLOG Enter Callsign';
|
||||
|
||||
// Input Help Text on the /QSO Display
|
||||
$lang['qso_transmit_power_helptext'] = 'Wpisz wartość mocy w watach. W polu podaj same cyfry.';
|
||||
// Wprowadź tekst pomocy na wyświetlaczu /QSO
|
||||
$lang['qso_transmit_power_helptext'] = 'Wpisz wartość mocy w zegarku. W polu podaj same cyfry.';
|
||||
|
||||
$lang['qso_sota_ref_helptext'] = 'Na przykład: GM/NS-001.';
|
||||
$lang['qso_wwff_ref_helptext'] = 'Na przykład: DLFF-0069.';
|
||||
|
|
@ -25,75 +25,73 @@ $lang['qso_sig_info_helptext'] = 'Na przykład: DA/NW-357';
|
|||
|
||||
$lang['qso_dok_helptext'] = 'Na przykład: Q03';
|
||||
|
||||
$lang['qso_notes_helptext'] = 'Notatka jest widoczna tylko w Cloudlog, nie jest wysyłana z potwierdzeniami.';
|
||||
$lang['qsl_notes_helptext'] = 'This note content is exported to QSL services like eqsl.cc.';
|
||||
$lang['qso_notes_helptext'] = 'Notatka jest tylko udostępniona w Cloudlog, nie jest wysyłana z potwierdzeniem.';
|
||||
$lang['qsl_notes_helptext'] = 'Treść tej notatki jest eksportowana do usług QSL, takich jak eqsl.cc.';
|
||||
|
||||
$lang['qso_eqsl_qslmsg_helptext'] = "Get the default message for eQSL, for this station.";
|
||||
$lang['qso_eqsl_qslmsg_helptext'] = "Pobierz domyślną wiadomość dla eQSL dla tej stacji.";
|
||||
|
||||
// error text //
|
||||
$lang['qso_error_timeoff_less_timeon'] = "TimeOff is less than TimeOn";
|
||||
// tekst błędu //
|
||||
$lang['qso_error_timeoff_less_timeon'] = "Czas wolny jest krótszy niż czas włączenia";
|
||||
|
||||
// Button Text on /qso Display
|
||||
// Tekst przycisku na wyświetlaczu /qso
|
||||
|
||||
$lang['qso_btn_reset_qso'] = 'Resetuj';
|
||||
$lang['qso_btn_save_qso'] = 'Zapisz QSO';
|
||||
$lang['qso_btn_edit_qso'] = 'Edytuj QSO';
|
||||
$lang['qso_delete_warning'] = "Warning! Are you sure you want delete QSO with ";
|
||||
$lang['qso_delete_warning'] = "Uwaga! Czy na pewno chcesz usunąć QSO z ";
|
||||
|
||||
// QSO Details
|
||||
// Szczegóły QSO
|
||||
|
||||
$lang['qso_details'] = 'Szczegóły QSO';
|
||||
|
||||
$lang['fav_add'] = 'Add Band/Mode to Favs';
|
||||
$lang['qso_operator_callsign'] = 'Operator Callsign';
|
||||
$lang['fav_add'] = 'Dodaj pasmo/moduł do ulubionych';
|
||||
$lang['qso_operator_callsign'] = 'Znak wywoławczy operatora';
|
||||
|
||||
// Simple FLE (FastLogEntry)
|
||||
// Prosty FLE (FastLogEntry)
|
||||
|
||||
$lang['qso_simplefle_info'] = "What is that?";
|
||||
$lang['qso_simplefle_info_ln1'] = "Simple Fast Log Entry (FLE)";
|
||||
$lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system to log QSOs very quickly and efficiently. Due to its syntax, only a minimum of input is required to log many QSOs with as little effort as possible.";
|
||||
$lang['qso_simplefle_info_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs.";
|
||||
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
||||
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
||||
$lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used.";
|
||||
$lang['qso_simplefle_qso_list'] = "QSO List";
|
||||
$lang['qso_simplefle_qso_list_total'] = "Total";
|
||||
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
||||
$lang['qso_simplefle_info'] = "Co to jest?";
|
||||
$lang['qso_simplefle_info_ln1'] = "Prosty szybki wpis do dziennika (FLE)";
|
||||
$lang['qso_simplefle_info_ln2'] = "'Szybki wpis do dziennika' lub po prostu 'FLE' to system do bardzo szybkiego i wydajnego rejestrowania QSO. Ze względu na składnię, do rejestrowania wielu QSO przy jak najmniejszym wysiłku wymagane jest tylko minimalne wprowadzanie danych.";
|
||||
$lang['qso_simplefle_info_ln3'] = "FLE został pierwotnie napisany przez DF3CB. Oferuje on program dla systemu Windows na swojej stronie internetowej. Simple FLE został napisany przez OK2CQR na podstawie FLE DF3CB i zapewnia interfejs sieciowy do rejestrowania QSO.";
|
||||
$lang['qso_simplefle_info_ln4'] = "Powszechnym przypadkiem użycia jest importowanie dzienników papierowych z sesji na świeżym powietrzu, a teraz SimpleFLE jest również dostępny w Cloudlog. Informacje o składni i sposobie działania FLE można znaleźć <a href='https://df3cb.com/fle/documentation/' target='_blank'>tutaj</a>.";
|
||||
$lang['qso_simplefle_qso_data'] = "Dane QSO";
|
||||
$lang['qso_simplefle_qso_date_hint'] = "Jeśli nie wybierzesz daty, zostanie użyta dzisiejsza data.";
|
||||
$lang['qso_simplefle_qso_list'] = "Lista QSO";
|
||||
$lang['qso_simplefle_qso_list_total'] = "Suma";
|
||||
$lang['qso_simplefle_qso_date'] = "Data QSO";
|
||||
$lang['qso_simplefle_operator'] = "Operator";
|
||||
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
||||
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
||||
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
||||
$lang['qso_simplefle_utc_time'] = "Current UTC Time";
|
||||
$lang['qso_simplefle_enter_the_data'] = "Enter the Data";
|
||||
$lang['qso_simplefle_syntax_help_close_w_sample'] = "Close and Load Sample Data";
|
||||
$lang['qso_simplefle_reload'] = "Reload QSO List";
|
||||
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
||||
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
||||
$lang['qso_simplefle_refs_hint'] = "The Refs can be either <u>S</u>OTA, <u>I</u>OTA, <u>P</u>OTA or <u>W</u>WFF";
|
||||
$lang['qso_simplefle_operator_hint'] = "np. OK2CQR";
|
||||
$lang['qso_simplefle_station_call_location'] = "Wywołanie stacji/Lokalizacja";
|
||||
$lang['qso_simplefle_station_call_location_hint'] = "Jeśli operujesz z nowej lokalizacji, najpierw utwórz nową <a href=". site_url('station') . ">Lokalizację stacji</a>";
|
||||
$lang['qso_simplefle_utc_time'] = "Bieżący czas UTC";
|
||||
$lang['qso_simplefle_enter_the_data'] = "Wprowadź dane";
|
||||
$lang['qso_simplefle_syntax_help_close_w_sample'] = "Zamknij i wczytaj przykładowe dane";
|
||||
$lang['qso_simplefle_reload'] = "Ponownie wczytaj listę QSO";
|
||||
$lang['qso_simplefle_save'] = "Zapisz w Cloudlog";
|
||||
$lang['qso_simplefle_clear'] = "Wyczyść sesję rejestrowania";
|
||||
$lang['qso_simplefle_refs_hint'] = "Referencje mogą być <u>S</u>OTA, <u>I</u>OTA, <u>P</u>OTA lub <u>W</u>WFF";
|
||||
|
||||
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
||||
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
||||
$lang['qso_simplefle_error_time'] = "Time is not set!";
|
||||
$lang['qso_simplefle_error_stationcall'] = "Station Call is not selected";
|
||||
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
||||
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
||||
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
||||
$lang['qso_simplefle_warning_missing_time'] = "Warning! You can't log the QSO List, because some QSO don't have a time defined!";
|
||||
$lang['qso_simplefle_warning_example_data'] = "Attention! The Data Field containes example data. First Clear Logging Session!";
|
||||
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
||||
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
||||
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
||||
$lang['qso_simplefle_error_date'] = "Invalid date";
|
||||
$lang['qso_simplefle_error_band'] = "Brakuje pasma!";
|
||||
$lang['qso_simplefle_error_mode'] = "Brakuje trybu!";
|
||||
$lang['qso_simplefle_error_time'] = "Czas nie jest ustawiony!";
|
||||
$lang['qso_simplefle_error_stationcall'] = "Wywołanie stacji nie jest wybrane";
|
||||
$lang['qso_simplefle_error_operator'] = "Pole 'Operator' jest puste";
|
||||
$lang['qso_simplefle_warning_reset'] = "Ostrzeżenie! Czy na pewno chcesz zresetować wszystko?";
|
||||
$lang['qso_simplefle_warning_missing_band_mode'] = "Ostrzeżenie! Nie możesz zalogować listy QSO, ponieważ niektóre QSO nie mają zdefiniowanego pasma i/lub trybu!";
|
||||
$lang['qso_simplefle_warning_missing_time'] = "Ostrzeżenie! Nie możesz zalogować listy QSO, ponieważ niektóre QSO nie mają zdefiniowanego czasu!";$lang['qso_simplefle_warning_example_data'] = "Uwaga! Pole danych zawiera przykładowe dane. Najpierw wyczyść sesję rejestrowania!";
|
||||
$lang['qso_simplefle_confirm_save_to_log'] = "Czy na pewno chcesz dodać te QSO do dziennika i wyczyścić sesję?";
|
||||
$lang['qso_simplefle_success_save_to_log_header'] = "QSO zarejestrowane!";
|
||||
$lang['qso_simplefle_success_save_to_log'] = "QSO zostały pomyślnie zarejestrowane w dzienniku!";
|
||||
$lang['qso_simplefle_error_date'] = "Nieprawidłowa data";
|
||||
|
||||
$lang['qso_simplefle_syntax_help_button'] = "Syntax Help";
|
||||
$lang['qso_simplefle_syntax_help_title'] = "Syntax for FLE";
|
||||
$lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please note the basic rules.";
|
||||
$lang['qso_simplefle_syntax_help_ln2'] = "- Each new QSO should be on a new line.";
|
||||
$lang['qso_simplefle_syntax_help_ln3'] = "- On each new line, only write data that has changed from the previous QSO.";
|
||||
$lang['qso_simplefle_syntax_help_ln4'] = "To begin, ensure you have already filled in the form on the left with the date, station call, and operator's call. The main data includes the band (or QRG in MHz, e.g., '7.145'), mode, and time. After the time, you provide the first QSO, which is essentially the callsign.";
|
||||
$lang['qso_simplefle_syntax_help_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 2M0SQL on 20m SSB.";
|
||||
$lang['qso_simplefle_syntax_help_ln6'] = "If you don't provide any RST information, the syntax will use 59 (599 for data). Our next QSO wasn't 59 on both sides, so we provide the information with the sent RST first. It was 2 minutes later than the first QSO.";
|
||||
$lang['qso_simplefle_syntax_help_ln7'] = "The first QSO was at 21:34, and the second one 2 minutes later at 21:36. We write down 6 because this is the only data that changed here. The information about band and mode didn't change, so this data is omitted.";
|
||||
$lang['qso_simplefle_syntax_help_ln8'] = "For our next QSO at 21:40 on 14th May, 2021, we changed the band to 40m but still on SSB. If no RST information is given, the syntax will use 59 for every new QSO. Therefore we can add another QSO which took place at the exact same time two days later. The date must be in format YYYY-MM-DD.";
|
||||
$lang['qso_simplefle_syntax_help_ln9'] = "For further information about the syntax, please check the website of DF3CB <a href='https://df3cb.com/fle/documentation/' target='_blank'>here.</a>";
|
||||
|
||||
$lang['qso_simplefle_syntax_help_button'] = "Pomoc dotycząca składni";
|
||||
$lang['qso_simplefle_syntax_help_title'] = "Składnia dla FLE";
|
||||
$lang['qso_simplefle_syntax_help_ln1'] = "Przed rozpoczęciem rejestrowania QSO zapoznaj się z podstawowymi zasadami.";
|
||||
$lang['qso_simplefle_syntax_help_ln2'] = "- Każde nowe QSO powinno znajdować się w nowym wierszu.";
|
||||
$lang['qso_simplefle_syntax_help_ln3'] = "- W każdym nowym wierszu zapisuj tylko dane, które uległy zmianie od poprzedniego QSO.";
|
||||
$lang['qso_simplefle_syntax_help_ln4'] = "Na początek upewnij się, że wypełniłeś formularz po lewej stronie, podając datę, wywołanie stacji i wywołanie operatora. Główne dane obejmują pasmo (lub QRG w MHz, np. '7.145'), tryb i czas. Po czasie podajesz pierwsze QSO, które jest zasadniczo znakiem wywoławczym.";
|
||||
$lang['qso_simplefle_syntax_help_ln5'] = "Na przykład QSO, które rozpoczęło się o 21:34 (UTC) z 2M0SQL na 20m SSB.";
|
||||
$lang['qso_simplefle_syntax_help_ln6'] = "Jeśli nie podasz żadnych informacji RST, składnia użyje 59 (599 dla danych). Nasze następne QSO nie było 59 po obu stronach, więc najpierw podajemy informacje z wysłanym RST. Było to 2 minuty później niż pierwsze QSO.";
|
||||
$lang['qso_simplefle_syntax_help_ln7'] = "Pierwsze QSO było o 21:34, a drugie 2 minuty później o 21:36. Zapisujemy 6, ponieważ są to jedyne dane, które się tutaj zmieniły. Informacje o paśmie i trybie nie uległy zmianie, więc te dane są pomijane.";
|
||||
$lang['qso_simplefle_syntax_help_ln8'] = "W przypadku naszego następnego QSO o 21:40 14 maja 2021 r. zmieniliśmy pasmo na 40 m, ale nadal na SSB. Jeśli nie podano informacji RST, składnia będzie używać 59 dla każdego nowego QSO. Dlatego możemy dodać kolejne QSO, które miało miejsce dokładnie o tej samej porze dwa dni później. Data musi być w formacie RRRR-MM-DD.";
|
||||
$lang['qso_simplefle_syntax_help_ln9'] = "Aby uzyskać więcej informacji na temat składni, sprawdź stronę internetową DF3CB <a href='https://df3cb.com/fle/documentation/' target='_blank'>tutaj.</a>";
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Bezpośredni dostęp do skryptu nie jest dozwolony');
|
||||
|
||||
$lang['sstv_string_disk_space'] = 'of disk space to store SSTV image assets';
|
||||
$lang['sstv_string_disk_space'] = 'miejsca na dysku do przechowywania zasobów obrazu SSTV';
|
||||
|
|
@ -1,117 +1,113 @@
|
|||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Brak bezpośredniego dostępu do skryptu');
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Station Logbooks
|
||||
______________________________________________________________________________________________________
|
||||
Dzienniki stacji
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['station_logbooks'] = "Station Logbooks";
|
||||
$lang['station_logbooks_description_header'] = "What are Station Logbooks";
|
||||
$lang['station_logbooks_description_text'] = "Station Logbooks allow you to group Station Locations, this allows you to see all the locations across one session from the logbook areas to the analytics. Great for when your operating in multiple locations but they are part of the same DXCC or VUCC Circle.";
|
||||
$lang['station_logbooks_create'] = "Create Station Logbook";
|
||||
$lang['station_logbooks'] = "Dzienniki stacji";
|
||||
$lang['station_logbooks_description_header'] = "Czym są dzienniki stacji";
|
||||
$lang['station_logbooks_description_text'] = "Dzienniki stacji umożliwiają grupowanie lokalizacji stacji, co pozwala zobaczyć wszystkie lokalizacje w jednej sesji, od obszarów dziennika po analizy. Świetne rozwiązanie, gdy działasz w wielu lokalizacjach, ale są one częścią tego samego okręgu DXCC lub VUCC.";
|
||||
$lang['station_logbooks_create'] = "Utwórz dziennik stacji";
|
||||
$lang['station_logbooks_status'] = "Status";
|
||||
$lang['station_logbooks_link'] = "Link";
|
||||
$lang['station_logbooks_public_search'] = "Public Search";
|
||||
$lang['station_logbooks_set_active'] = "Set as Active Logbook";
|
||||
$lang['station_logbooks_active_logbook'] = "Active Logbook";
|
||||
$lang['station_logbooks_edit_logbook'] = "Edit Station Logbook"; // Full sentence will be generated 'Edit Station Logbook: [Logbook Name]'
|
||||
$lang['station_logbooks_confirm_delete'] = "Are you sure you want to delete the following station logbook? You must re-link any locations linked here to another logbook.: ";
|
||||
$lang['station_logbooks_view_public'] = "View Public Page for Logbook: ";
|
||||
$lang['station_logbooks_create_name'] = "Station Logbook Name";
|
||||
$lang['station_logbooks_create_name_hint'] = "You can call a station logbook anything.";
|
||||
$lang['station_logbooks_edit_name_hint'] = "Shortname for the station logbook. For example: Home Log (IO87IP)";
|
||||
$lang['station_logbooks_edit_name_update'] = "Update Station Logbook Name";
|
||||
$lang['station_logbooks_public_slug'] = "Public Slug";
|
||||
$lang['station_logbooks_public_slug_hint'] = "Setting a public slug allows you to share your logbook with anyone via a custom website address, this slug can contain letters & numbers only.";
|
||||
$lang['station_logbooks_public_slug_format1'] = "Later it looks like this:";
|
||||
$lang['station_logbooks_public_slug_format2'] = "[your slug]";
|
||||
$lang['station_logbooks_public_slug_input'] = "Type in Public Slug choice";
|
||||
$lang['station_logbooks_public_slug_visit'] = "Visit Public Page";
|
||||
$lang['station_logbooks_public_search_hint'] = "Enabling public search function offers a search input box on the public logbook page accessed via public slug. Search only covers this logbook.";
|
||||
$lang['station_logbooks_public_search_enabled'] = "Public search enabled";
|
||||
$lang['station_logbooks_select_avail_loc'] = "Select Available Station Locations";
|
||||
$lang['station_logbooks_link_loc'] = "Link Location";
|
||||
$lang['station_logbooks_linked_loc'] = "Linked Locations";
|
||||
$lang['station_logbooks_no_linked_loc'] = "No Linked Locations";
|
||||
$lang['station_logbooks_unlink_station_location'] = "Unlink Station Location";
|
||||
|
||||
|
||||
$lang['station_logbooks_public_search'] = "Wyszukiwanie publiczne";
|
||||
$lang['station_logbooks_set_active'] = "Ustaw jako aktywny dziennik";
|
||||
$lang['station_logbooks_active_logbook'] = "Aktywny dziennik";
|
||||
$lang['station_logbooks_edit_logbook'] = "Edytuj dziennik stacji"; // Zostanie wygenerowane pełne zdanie 'Edytuj dziennik stacji: [Nazwa dziennika]'
|
||||
$lang['station_logbooks_confirm_delete'] = "Czy na pewno chcesz usunąć następujący dziennik stacji? Musisz ponownie połączyć wszystkie lokalizacje połączone tutaj z innym dziennikiem.: ";
|
||||
$lang['station_logbooks_view_public'] = "Wyświetl stronę publiczną dla dziennika: ";
|
||||
$lang['station_logbooks_create_name'] = "Nazwa dziennika stacji";
|
||||
$lang['station_logbooks_create_name_hint'] = "Możesz nazwać dziennik stacji w dowolny sposób.";
|
||||
$lang['station_logbooks_edit_name_hint'] = "Skrócona nazwa dziennika stacji. Na przykład: Home Log (IO87IP)";
|
||||
$lang['station_logbooks_edit_name_update'] = "Aktualizuj nazwę dziennika stacji";
|
||||
$lang['station_logbooks_public_slug'] = "Publiczny slug";
|
||||
$lang['station_logbooks_public_slug_hint'] = "Ustawienie publicznego slug pozwala na udostępnianie dziennika dowolnej osobie za pośrednictwem niestandardowego adresu witryny, ten slug może zawierać tylko litery i cyfry.";
|
||||
$lang['station_logbooks_public_slug_format1'] = "Później wygląda to tak:";
|
||||
$lang['station_logbooks_public_slug_format2'] = "[Twój slug]";
|
||||
$lang['station_logbooks_public_slug_input'] = "Wpisz wybór Public Slug";
|
||||
$lang['station_logbooks_public_slug_visit'] = "Odwiedź stronę publiczną";
|
||||
$lang['station_logbooks_public_search_hint'] = "Włączenie funkcji wyszukiwania publicznego oferuje pole wprowadzania wyszukiwania na stronie dziennika publicznego dostępnej za pośrednictwem publicznego slug. Wyszukiwanie obejmuje tylko ten dziennik.";
|
||||
$lang['station_logbooks_public_search_enabled'] = "Wyszukiwanie publiczne włączone";
|
||||
$lang['station_logbooks_select_avail_loc'] = "Wybierz dostępne lokalizacje stacji";
|
||||
$lang['station_logbooks_link_loc'] = "Lokalizacja łącza";
|
||||
$lang['station_logbooks_linked_loc'] = "Połączone lokalizacje";
|
||||
$lang['station_logbooks_no_linked_loc'] = "Brak połączonych lokalizacji";
|
||||
$lang['station_logbooks_unlink_station_location'] = "Odłącz lokalizację stacji";
|
||||
|
||||
/*
|
||||
___________________________________________________________________________________________
|
||||
Station Locations
|
||||
___________________________________________________________________________________________________________
|
||||
Lokalizacje stacji
|
||||
___________________________________________________________________________________________
|
||||
*/
|
||||
|
||||
$lang['station_location'] = 'Station Location';
|
||||
$lang['station_location_plural'] = "Station Locations";
|
||||
$lang['station_location_header_ln1'] = 'Station Locations define operating locations, such as your QTH, a friends QTH, or a portable station.';
|
||||
$lang['station_location_header_ln2'] = 'Similar to logbooks, a station profile keeps a set of QSOs together.';
|
||||
$lang['station_location_header_ln3'] = 'Only one station may be active at a time. In the table below this is shown with the -Active Station- badge.';
|
||||
$lang['station_location_create_header'] = 'Create Station Location';
|
||||
$lang['station_location_create'] = 'Create a Station Location';
|
||||
$lang['station_location_edit'] = 'Edit Station Location: ';
|
||||
$lang['station_location_updated_suff'] = ' Updated.';
|
||||
$lang['station_location_warning'] = 'Attention: You need to set an active station location. Go to Callsign->Station Location to select one.';
|
||||
$lang['station_location_reassign_at'] = 'Please reassign them at ';
|
||||
$lang['station_location_warning_reassign'] = 'Due to recent changes within Cloudlog you need to reassign QSOs to your station profiles.';
|
||||
$lang['station_location_name'] = 'Profile Name';
|
||||
$lang['station_location_name_hint'] = 'Shortname for the station location. For example: Home (IO87IP)';
|
||||
$lang['station_location_callsign'] = 'Station Callsign';
|
||||
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
|
||||
$lang['station_location_power'] = 'Station Power (W)';
|
||||
$lang['station_location_power_hint'] = 'Default station power in Watt. Overwritten by CAT.';
|
||||
$lang['station_location_emptylog'] = 'Empty Log';
|
||||
$lang['station_location_confirm_active'] = 'Are you sure you want to make the following station the active station: ';
|
||||
$lang['station_location_set_active'] = 'Set Active';
|
||||
$lang['station_location_active'] = 'Active Station';
|
||||
$lang['station_location_claim_ownership'] = 'Claim Ownership';
|
||||
$lang['station_location_confirm_del_qso'] = 'Are you sure you want to delete all QSOs within this station profile?';
|
||||
$lang['station_location_confirm_del_stationlocation'] = 'Are you sure you want delete station profile ';
|
||||
$lang['station_location_confirm_del_stationlocation_qso'] = 'This will delete all QSOs within this station profile?';
|
||||
$lang['station_location_dxcc'] = 'Station DXCC';
|
||||
$lang['station_location_dxcc_hint'] = 'Station DXCC entity. For example: Scotland';
|
||||
$lang['station_location_dxcc_warning'] = "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.";
|
||||
$lang['station_location_city'] = 'Station City';
|
||||
$lang['station_location_city_hint'] = 'Station city. For example: Inverness';
|
||||
$lang['station_location_state'] = 'Station State';
|
||||
$lang['station_location_state_hint'] = 'Station state. Applies to certain countries only. Leave blank if not applicable.';
|
||||
$lang['station_location_county'] = 'Station County';
|
||||
$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';
|
||||
$lang['station_location'] = 'Lokalizacja stacji';
|
||||
$lang['station_location_plural'] = "Lokalizacje stacji";
|
||||
$lang['station_location_header_ln1'] = 'Lokalizacje stacji definiują lokalizacje operacyjne, takie jak Twoje QTH, QTH znajomego lub stacja przenośna.';
|
||||
$lang['station_location_header_ln2'] = 'Podobnie jak dzienniki pokładowe, profil stacji przechowuje zestaw QSO razem.';
|
||||
$lang['station_location_header_ln3'] = 'Tylko jedna stacja może być aktywna w danym momencie. W poniższej tabeli jest to pokazane za pomocą odznaki -Aktywna stacja-.';
|
||||
$lang['station_location_create_header'] = 'Utwórz lokalizację stacji';
|
||||
$lang['station_location_create'] = 'Utwórz lokalizację stacji';
|
||||
$lang['station_location_edit'] = 'Edytuj lokalizację stacji: ';
|
||||
$lang['station_location_updated_suff'] = 'Zaktualizowano.';
|
||||
$lang['station_location_warning'] = 'Uwaga: Musisz ustawić aktywną lokalizację stacji. Przejdź do Callsign->Station Location, aby wybrać jedną.';$lang['station_location_reassign_at'] = 'Przypisz je ponownie w ';
|
||||
$lang['station_location_warning_reassign'] = 'Ze względu na ostatnie zmiany w Cloudlog musisz ponownie przypisać QSO do swoich profili stacji.';
|
||||
$lang['station_location_name'] = 'Nazwa profilu';
|
||||
$lang['station_location_name_hint'] = 'Skrócona nazwa lokalizacji stacji. Na przykład: Home (IO87IP)';
|
||||
$lang['station_location_callsign'] = 'Znak wywoławczy stacji';
|
||||
$lang['station_location_callsign_hint'] = 'Znak wywoławczy stacji. Na przykład: 2M0SQL/P';
|
||||
$lang['station_location_power'] = 'Moc stacji (W)';
|
||||
$lang['station_location_power_hint'] = 'Domyślna moc stacji w watach. Nadpisane przez CAT.';
|
||||
$lang['station_location_emptylog'] = 'Pusty dziennik';
|
||||
$lang['station_location_confirm_active'] = 'Czy na pewno chcesz ustawić następującą stację jako aktywną: ';
|
||||
$lang['station_location_set_active'] = 'Ustaw jako aktywną';
|
||||
$lang['station_location_active'] = 'Aktywna stacja';
|
||||
$lang['station_location_claim_ownership'] = 'Zgłoś własność';
|
||||
$lang['station_location_confirm_del_qso'] = 'Czy na pewno chcesz usunąć wszystkie QSO w tym profilu stacji?';
|
||||
$lang['station_location_confirm_del_stationlocation'] = 'Czy na pewno chcesz usunąć profil stacji ';
|
||||
$lang['station_location_confirm_del_stationlocation_qso'] = 'Czy to spowoduje usunięcie wszystkich QSO w tym profilu stacji?';
|
||||
$lang['station_location_dxcc'] = 'Stacja DXCC';
|
||||
$lang['station_location_dxcc_hint'] = 'Jednostka stacji DXCC. Na przykład: Szkocja';
|
||||
$lang['station_location_dxcc_warning'] = "Zatrzymaj się na chwilę. Wybrany przez Ciebie DXCC jest nieaktualny i nieważny. Sprawdź, który DXCC dla tej konkretnej lokalizacji jest poprawny. Jeśli masz pewność, zignoruj to ostrzeżenie.";$lang['station_location_city'] = 'Miasto stacji';
|
||||
$lang['station_location_city_hint'] = 'Miasto stacji. Na przykład: Inverness';
|
||||
$lang['station_location_state'] = 'Stan stacji';
|
||||
$lang['station_location_state_hint'] = 'Stan stacji. Dotyczy tylko niektórych krajów. Pozostaw puste, jeśli nie dotyczy.';
|
||||
$lang['station_location_county'] = 'Hrabstwo stacji';
|
||||
$lang['station_location_county_hint'] = 'Hrabstwo stacji (używane tylko dla USA/Alaski/Hawajów).';
|
||||
$lang['station_location_gridsquare'] = 'Station Gridsquare';
|
||||
$lang['station_location_gridsquare_hint_ln1'] = "Station gridsquare. For example: IO87IP. If you don't know your grid square then <a href='https://zone-check.eu/?m=loc' target='_blank'>click here</a>!";
|
||||
$lang['station_location_gridsquare_hint_ln2'] = "If you are located on a grid line, enter multiple grid squares separated with commas. For example: IO77,IO78,IO87,IO88.";
|
||||
$lang['station_location_iota_hint_ln1'] = "Station IOTA reference. For example: EU-005";
|
||||
$lang['station_location_iota_hint_ln2'] = "You can look up IOTA references at the <a target='_blank' href='https://www.iota-world.org/iota-directory/annex-f-short-title-iota-reference-number-list.html'>IOTA World</a> website.";
|
||||
$lang['station_location_sota_hint_ln1'] = "Station SOTA reference. You can look up SOTA references at the <a target='_blank' href='https://www.sotamaps.org/'>SOTA Maps</a> website.";
|
||||
$lang['station_location_wwff_hint_ln1'] = "Station WWFF reference. You can look up WWFF references at the <a target='_blank' href='https://www.cqgma.org/mvs/'>GMA Map</a> website.";
|
||||
$lang['station_location_pota_hint_ln1'] = "Station POTA reference. You can look up POTA references at the <a target='_blank' href='https://pota.app/#/map/'>POTA Map</a> website.";
|
||||
$lang['station_location_signature'] = "Signature";
|
||||
$lang['station_location_signature_name'] = "Signature Name";
|
||||
$lang['station_location_signature_name_hint'] = "Station Signature (e.g. GMA)..";
|
||||
$lang['station_location_signature_info'] = "Signature Information";
|
||||
$lang['station_location_signature_info_hint'] = "Station Signature Info (e.g. DA/NW-357).";
|
||||
$lang['station_location_eqsl_hint'] = 'The QTH Nickname which is configured in your eQSL Profile';
|
||||
$lang['station_location_eqsl_defaultqslmsg'] = "Default QSLMSG";
|
||||
$lang['station_location_eqsl_defaultqslmsg_hint'] = "Define a default message that will be populated and sent for each QSO for this station location.";
|
||||
$lang['station_location_qrz_subscription'] = 'Subscription Required';
|
||||
$lang['station_location_qrz_hint'] = "Find your API key on <a href='https://logbook.qrz.com/logbook' target='_blank'>the QRZ.com Logbook settings page";
|
||||
$lang['station_location_qrz_realtime_upload'] = 'QRZ.com Logbook Realtime Upload';
|
||||
$lang['station_location_hrdlog_username'] = "HRDLog.net Username";
|
||||
$lang['station_location_hrdlog_username_hint'] = "The username you are registered with at HRDlog.net (usually your callsign).";
|
||||
$lang['station_location_hrdlog_code'] = "HRDLog.net API Key";
|
||||
$lang['station_location_hrdlog_realtime_upload'] = "HRDLog.net Logbook Realtime Upload";
|
||||
$lang['station_location_hrdlog_code_hint'] = "Create your API Code on <a href='http://www.hrdlog.net/EditUser.aspx' target='_blank'>HRDLog.net Userprofile page";
|
||||
$lang['station_location_qo100_hint'] = "Create your API key on <a href='https://qo100dx.club' target='_blank'>your QO-100 Dx Club's profile page";
|
||||
$lang['station_location_qo100_realtime_upload'] = "QO-100 Dx Club Realtime Upload";
|
||||
$lang['station_location_oqrs_enabled'] = "OQRS Enabled";
|
||||
$lang['station_location_oqrs_email_alert'] = "OQRS Email alert";
|
||||
$lang['station_location_oqrs_email_hint'] = "Make sure email is set up under admin and global options.";
|
||||
$lang['station_location_oqrs_text'] = "OQRS Text";
|
||||
$lang['station_location_oqrs_text_hint'] = "Some info you want to add regarding QSL'ing.";
|
||||
$lang['station_location_clublog_realtime_upload']='ClubLog Realtime Upload';
|
||||
$lang['station_location_gridsquare_hint_ln1'] = "Siatka stacji. Na przykład: IO87IP. Jeśli nie znasz swojego kwadratu siatki, <a href='https://zone-check.eu/?m=loc' target='_blank'>kliknij tutaj</a>!";
|
||||
$lang['station_location_gridsquare_hint_ln2'] = "Jeśli znajdujesz się na linii siatki, wprowadź wiele kwadratów siatki oddzielonych przecinkami. Na przykład: IO77,IO78,IO87,IO88.";
|
||||
$lang['station_location_iota_hint_ln1'] = "Odniesienie do stacji IOTA. Na przykład: EU-005";
|
||||
$lang['station_location_iota_hint_ln2'] = "Możesz sprawdzić odniesienia IOTA na stronie <a target='_blank' href='https://www.iota-world.org/iota-directory/annex-f-short-title-iota-reference-number-list.html'>IOTA World</a>.";
|
||||
$lang['station_location_sota_hint_ln1'] = "Odniesienia do SOTA stacji. Możesz sprawdzić odniesienia SOTA na stronie <a target='_blank' href='https://www.sotamaps.org/'>SOTA Maps</a>.";
|
||||
$lang['station_location_wwff_hint_ln1'] = "Odniesienie do stacji WWFF. Odniesienia do WWFF można sprawdzić na stronie <a target='_blank' href='https://www.cqgma.org/mvs/'>GMA Map</a>.";
|
||||
$lang['station_location_pota_hint_ln1'] = "Odniesienie do stacji POTA. Odniesienia do POTA można sprawdzić na stronie <a target='_blank' href='https://pota.app/#/map/'>POTA Map</a>.";
|
||||
$lang['station_location_signature'] = "Podpis";
|
||||
$lang['station_location_signature_name'] = "Nazwa podpisu";
|
||||
$lang['station_location_signature_name_hint'] = "Podpis stacji (np. GMA).";
|
||||
$lang['station_location_signature_info'] = "Informacje o podpisie";
|
||||
$lang['station_location_signature_info_hint'] = "Informacje o podpisie stacji (np. DA/NW-357).";
|
||||
$lang['station_location_eqsl_hint'] = 'Pseudonim QTH skonfigurowany w profilu eQSL';
|
||||
$lang['station_location_eqsl_defaultqslmsg'] = "Domyślny QSLMSG";
|
||||
$lang['station_location_eqsl_defaultqslmsg_hint'] = "Zdefiniuj domyślną wiadomość, która zostanie wypełniona i wysłana dla każdego QSO dla tej lokalizacji stacji.";
|
||||
$lang['station_location_qrz_subscription'] = 'Wymagana subskrypcja';
|
||||
$lang['station_location_qrz_hint'] = "Znajdź swój klucz API na <a href='https://logbook.qrz.com/logbook' target='_blank'>stronie ustawień dziennika QRZ.com";
|
||||
$lang['station_location_qrz_realtime_upload'] = 'Przesyłanie dziennika QRZ.com w czasie rzeczywistym';
|
||||
$lang['station_location_hrdlog_username'] = "Nazwa użytkownika HRDLog.net";
|
||||
$lang['station_location_hrdlog_username_hint'] = "Nazwa użytkownika, pod którą jesteś zarejestrowany w HRDlog.net (zwykle jest to Twój znak wywoławczy).";
|
||||
$lang['station_location_hrdlog_code'] = "Klucz API HRDLog.net";
|
||||
$lang['station_location_hrdlog_realtime_upload'] = "Przesyłanie dziennika HRDLog.net w czasie rzeczywistym";
|
||||
$lang['station_location_hrdlog_code_hint'] = "Utwórz swój kod API na <a href='http://www.hrdlog.net/EditUser.aspx' target='_blank'>stronie profilu użytkownika HRDLog.net";
|
||||
$lang['station_location_qo100_hint'] = "Utwórz swój klucz API na <a href='https://qo100dx.club' target='_blank'>stronie profilu QO-100 Dx Club";
|
||||
$lang['station_location_qo100_realtime_upload'] = "Przesyłanie danych w czasie rzeczywistym QO-100 Dx Club";
|
||||
$lang['station_location_oqrs_enabled'] = "Włączono OQRS";
|
||||
$lang['station_location_oqrs_email_alert'] = "Alert e-mail OQRS";
|
||||
$lang['station_location_oqrs_email_hint'] = "Upewnij się, że e-mail jest skonfigurowany w opcjach administratora i globalnych.";
|
||||
$lang['station_location_oqrs_text'] = "Tekst OQRS";
|
||||
$lang['station_location_oqrs_text_hint'] = "Kilka informacji, które chcesz dodać odnośnie QSL'ing.";
|
||||
$lang['station_location_clublog_realtime_upload']='Przesyłanie w czasie rzeczywistym ClubLog';
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,74 +1,78 @@
|
|||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Brak bezpośredniego dostępu do skryptu');
|
||||
|
||||
$lang['statistics_statistics'] = 'Statistics';
|
||||
$lang['statistics_statistics'] = 'Statystyki';
|
||||
|
||||
$lang['statistics_explore_the_logbook'] = 'Explore the logbook.';
|
||||
$lang['statistics_explore_the_logbook'] = 'Przeglądaj dziennik.';
|
||||
|
||||
$lang['statistics_years'] = 'Years';
|
||||
$lang['statistics_modes'] = 'Mode';
|
||||
$lang['statistics_bands'] = 'Bands';
|
||||
$lang['statistics_qsos'] = 'QSOs';
|
||||
$lang['statistics_unique_callsigns'] = 'Unique callsigns';
|
||||
$lang['statistics_years'] = 'Lata';
|
||||
|
||||
$lang['statistics_total'] = 'Total';
|
||||
$lang['statistics_modes'] = 'Tryb';
|
||||
|
||||
$lang['statistics_year'] = 'Year';
|
||||
$lang['statistics_bands'] = 'Pasma';
|
||||
|
||||
$lang['statistics_number_of_qso_worked_each_year'] = "Number of QSOs worked each year";
|
||||
$lang['statistics_number_of_qso_worked'] = "# of QSO's worked";
|
||||
$lang['statistics_qsos'] = 'QSO';
|
||||
|
||||
$lang['statistics_unique_callsigns'] = 'Unikalne znaki wywoławcze';
|
||||
|
||||
$lang['statistics_total'] = 'Suma';
|
||||
|
||||
$lang['statistics_year'] = 'Rok';
|
||||
|
||||
$lang['statistics_number_of_qso_worked_each_year'] = "Liczba QSO wykonanych w każdym roku";
|
||||
$lang['statistics_number_of_qso_worked'] = "# wykonanych QSO";
|
||||
|
||||
/*
|
||||
*
|
||||
* Distances
|
||||
* Odległości
|
||||
*
|
||||
*/
|
||||
|
||||
$lang['statistics_distances_bands_all'] = "All";
|
||||
$lang['statistics_distances_modes_all'] = "All";
|
||||
$lang['statistics_distances_worked'] = "Distances Worked";
|
||||
$lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "contacts were plotted.<br /> Your furthest contact was with";
|
||||
$lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "in gridsquare";
|
||||
$lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "The distance was";
|
||||
$lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "The average distance is";
|
||||
$lang['statistics_distances_number_of_qsos'] = "Number of QSOs";
|
||||
$lang['statistics_distances_callsigns_worked'] = "Callsign(s) worked (max 5 shown)";
|
||||
$lang['statistics_distances_qsos_with'] = "QSOs with distance : ";
|
||||
$lang['statistics_distances_and_band'] = ", band : ";
|
||||
$lang['statistics_distances_and_mode'] = ", mode : ";
|
||||
$lang['statistics_distances_and_power'] = ", power : ";
|
||||
$lang['statistics_distances_and_propagation'] = ", propagation : ";
|
||||
$lang['statistics_distances_no_qsos_to_plot'] = "No QSOs found to plot.";
|
||||
$lang['statistics_distances_bands_all'] = "Wszystkie";
|
||||
$lang['statistics_distances_modes_all'] = "Wszystkie";
|
||||
$lang['statistics_distances_worked'] = "Przepracowane odległości";
|
||||
$lang['statistics_distances_part1_contacts_were_plotted_furthest'] = "Kontakty zostały naniesione.<br /> Twój najdalszy kontakt był z";
|
||||
$lang['statistics_distances_part2_contacts_were_plotted_furthest'] = "w siatce kwadratowej";
|
||||
$lang['statistics_distances_part3_contacts_were_plotted_furthest'] = "Odległość wynosiła";
|
||||
$lang['statistics_distances_part4_contacts_were_plotted_furthest'] = "Średnia odległość wynosi";
|
||||
$lang['statistics_distances_number_of_qsos'] = "Liczba QSO";
|
||||
$lang['statistics_distances_callsigns_worked'] = "Znak(i) wywoławczy(e) uzyskany(e) (pokazano maks. 5)";
|
||||
$lang['statistics_distances_qsos_with'] = "QSO z odległością: ";
|
||||
$lang['statistics_distances_and_band'] = ", pasmo : ";
|
||||
$lang['statistics_distances_and_mode'] = ", tryb : ";
|
||||
$lang['statistics_distances_and_power'] = ", moc : ";
|
||||
$lang['statistics_distances_and_propagation'] = ", propagacja : ";
|
||||
$lang['statistics_distances_no_qsos_to_plot'] = "Nie znaleziono QSO do naniesienia.";
|
||||
|
||||
/*
|
||||
*
|
||||
* Timeline
|
||||
* Oś czasu
|
||||
*
|
||||
*/
|
||||
|
||||
$lang['statistics_timeline'] = "Timeline";
|
||||
$lang['statistics_timeline'] = "Oś czasu";
|
||||
|
||||
/*
|
||||
*
|
||||
* Days with QSO
|
||||
* Dni z QSO
|
||||
*
|
||||
*/
|
||||
|
||||
$lang['statistics_tab_yearly'] = "Yearly";
|
||||
$lang['statistics_tab_streaks'] = "Streaks";
|
||||
$lang['statistics_tab_weekdays'] = "Days of the week";
|
||||
$lang['statistics_tab_daily'] = "Daily";
|
||||
$lang['statistics_days_yearly'] = "Number of days with QSOs each year";
|
||||
$lang['statistics_days_with_qso'] = "Days with QSOs";
|
||||
$lang['statistics_qsos_each_day'] = "Number of QSOs each day";
|
||||
$lang['statistics_weekdays_with_qso'] = "QSOs breakdown by day of the week";
|
||||
$lang['statistics_number_of_qsos_this_day'] = "Number of QSOs this day";
|
||||
$lang['statistics_number_of_qsos_this_weekday'] = "Number of QSOs for this day of the week";
|
||||
$lang['statistics_dwq_longest_streak_in_log'] = "Longest streak with QSOs in the log";
|
||||
$lang['statistics_dwq_longest_streak_in_log_hint'] = "A maximum of the 10 longest streaks are shown!";
|
||||
$lang['statistics_dwq_streak_continuous_days'] = "Streak (continuous days with QSOs)";
|
||||
$lang['statistics_dwq_current_streak_in_log'] = "Current streak with QSOs in the log";
|
||||
$lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (continuous days with QSOs)";
|
||||
$lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!";
|
||||
$lang['statistics_dwq_no_current_streak'] = "No current streak found!";
|
||||
$lang['statistics_tab_yearly'] = "Rocznie";
|
||||
$lang['statistics_tab_streaks'] = "Seria";
|
||||
$lang['statistics_tab_weekdays'] = "Dni tygodnia";
|
||||
$lang['statistics_tab_daily'] = "Codziennie";
|
||||
$lang['statistics_days_yearly'] = "Liczba dni z QSO w każdym roku";
|
||||
$lang['statistics_days_with_qso'] = "Dni z QSO";
|
||||
$lang['statistics_qsos_each_day'] = "Liczba QSO każdego dnia";
|
||||
$lang['statistics_weekdays_with_qso'] = "Podział QSO według dnia tygodnia";
|
||||
$lang['statistics_number_of_qsos_this_day'] = "Liczba QSO tego dnia";
|
||||
$lang['statistics_number_of_qsos_this_weekday'] = "Liczba QSO dla tego dnia tygodnia";
|
||||
$lang['statistics_dwq_longest_streak_in_log'] = "Najdłuższa seria QSO w logu";
|
||||
$lang['statistics_dwq_longest_streak_in_log_hint'] = "Pokazano maksymalnie 10 najdłuższych serii!";
|
||||
$lang['statistics_dwq_streak_continuous_days'] = "Seria (ciągłe dni z QSO)";
|
||||
$lang['statistics_dwq_current_streak_in_log'] = "Bieżąca seria QSO w logu";
|
||||
$lang['statistics_dwq_current_streak_continuous_days'] = "Bieżąca seria (ciągłe dni z QSO)";
|
||||
$lang['statistics_dwq_make_qso_to_extend_streak'] = "Jeśli dzisiaj przeprowadzisz QSO, możesz kontynuować przedłużanie swojej serii... w przeciwnym razie Twoja bieżąca seria zostanie przerwana!";
|
||||
$lang['statistics_dwq_no_current_streak'] = "Nie znaleziono bieżącej serii!";
|
||||
|
|
|
|||
|
|
@ -0,0 +1,30 @@
|
|||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
* Tag Cloudlog as 2.6.18
|
||||
*/
|
||||
|
||||
class Migration_tag_2_6_18 extends CI_Migration {
|
||||
|
||||
public function up()
|
||||
{
|
||||
|
||||
// Tag Cloudlog 2.6.18
|
||||
$this->db->where('option_name', 'version');
|
||||
$this->db->update('options', array('option_value' => '2.6.18'));
|
||||
|
||||
// Trigger Version Info Dialog
|
||||
$this->db->where('option_type', 'version_dialog');
|
||||
$this->db->where('option_name', 'confirmed');
|
||||
$this->db->update('user_options', array('option_value' => 'false'));
|
||||
|
||||
}
|
||||
|
||||
public function down()
|
||||
{
|
||||
$this->db->where('option_name', 'version');
|
||||
$this->db->update('options', array('option_value' => '2.6.17'));
|
||||
}
|
||||
}
|
||||
|
|
@ -4244,6 +4244,7 @@ class Logbook_model extends CI_Model
|
|||
# try: $a looks like a call (.\d[A-Z]) and $b doesn't (.\d), they are
|
||||
# swapped. This still does not properly handle calls like DJ1YFK/KH7K where
|
||||
# only the OP's experience says that it's DJ1YFK on KH7K.
|
||||
|
||||
if (!$c && $a && $b) { # $a and $b exist, no $c
|
||||
if (preg_match($lidadditions, $b)) { # check if $b is a lid-addition
|
||||
$b = $a;
|
||||
|
|
@ -4864,10 +4865,91 @@ class Logbook_model extends CI_Model
|
|||
return $row->oldest_qso_date;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Processes a batch of QRZ ADIF records for efficient database updates.
|
||||
*
|
||||
* @param array $batch_data Array of records from the ADIF file.
|
||||
* @return string HTML table rows for the processed batch.
|
||||
*/
|
||||
public function process_qrz_batch($batch_data) {
|
||||
$table = "";
|
||||
$update_batch_data = [];
|
||||
$this->load->model('Stations');
|
||||
|
||||
if (empty($batch_data)) {
|
||||
return '';
|
||||
}
|
||||
|
||||
// Step 1: Build WHERE clause for fetching potential matches
|
||||
$this->db->select($this->config->item('table_name').'.COL_PRIMARY_KEY, '.$this->config->item('table_name').'.COL_CALL, '.$this->config->item('table_name').'.COL_TIME_ON, '.$this->config->item('table_name').'.COL_BAND, '.$this->config->item('table_name').'.COL_MODE, ');
|
||||
$this->db->from($this->config->item('table_name'));
|
||||
$this->db->group_start(); // Start grouping OR conditions
|
||||
foreach ($batch_data as $record) {
|
||||
$this->db->or_group_start(); // Start group for this record's AND conditions
|
||||
$this->db->where($this->config->item('table_name').'.COL_CALL', $record['call']);
|
||||
$this->db->where($this->config->item('table_name').'.COL_TIME_ON', $record['time_on']);
|
||||
$this->db->where($this->config->item('table_name').'.COL_BAND', $record['band']);
|
||||
$this->db->group_end(); // End group for this record's AND conditions
|
||||
}
|
||||
$this->db->group_end(); // End grouping OR conditions
|
||||
|
||||
// Step 2: Fetch Matches
|
||||
$query = $this->db->get();
|
||||
$db_results = $query->result_array();
|
||||
|
||||
// Index DB results for faster lookup
|
||||
$indexed_results = [];
|
||||
foreach ($db_results as $row) {
|
||||
$key = $row['COL_CALL'] . '|' . $row['COL_TIME_ON'] . '|' . $row['COL_BAND'];
|
||||
$indexed_results[$key] = $row['COL_PRIMARY_KEY'];
|
||||
}
|
||||
|
||||
// Step 3 & 4: Prepare Batch Update and Build Table Rows
|
||||
foreach ($batch_data as $record) {
|
||||
$match_key = $record['call'] . '|' . $record['time_on'] . '|' . $record['band'];
|
||||
$log_status = '<span class="badge text-bg-danger">Not Found</span>';
|
||||
$primary_key = null;
|
||||
|
||||
if (isset($indexed_results[$match_key])) {
|
||||
$primary_key = $indexed_results[$match_key];
|
||||
$log_status = '<span class="badge text-bg-success">Confirmed</span>';
|
||||
|
||||
// Prepare data for batch update
|
||||
$update_batch_data[] = [
|
||||
'COL_PRIMARY_KEY' => $primary_key,
|
||||
'COL_QRZCOM_QSO_DOWNLOAD_DATE' => $record['qsl_date'],
|
||||
'COL_QRZCOM_QSO_UPLOAD_STATUS' => $record['qsl_rcvd'] // Should be 'Y' if confirmed
|
||||
];
|
||||
}
|
||||
|
||||
// Build table row
|
||||
$table .= "<tr>";
|
||||
$table .= "<td>" . $record['station_callsign'] . "</td>";
|
||||
$table .= "<td>" . $record['time_on'] . "</td>";
|
||||
$table .= "<td>" . $record['call'] . "</td>";
|
||||
$table .= "<td>" . $record['mode'] . "</td>";
|
||||
$table .= "<td>" . $record['qsl_date'] . "</td>";
|
||||
$table .= "<td>" . ($record['qsl_rcvd'] == 'Y' ? '<span class="badge text-bg-success">Yes</span>' : '<span class="badge text-bg-danger">No</span>') . "</td>";
|
||||
$table .= "</tr>";
|
||||
}
|
||||
|
||||
// Step 5: Execute Batch Update
|
||||
if (!empty($update_batch_data)) {
|
||||
$this->db->update_batch($this->config->item('table_name'), $update_batch_data, 'COL_PRIMARY_KEY');
|
||||
}
|
||||
|
||||
// Step 6: Return Table HTML
|
||||
return $table;
|
||||
}
|
||||
}
|
||||
|
||||
// Function to validate ADIF date format
|
||||
// This function checks if the date is in the correct format (YYYYMMDD) and is a valid date.
|
||||
// It uses the DateTime class to create a date object from the given date string and format. If the date is valid, it returns true; otherwise, it returns false.
|
||||
// The function also allows specifying a different format if needed, defaulting to 'Ymd' (YYYYMMDD).
|
||||
function validateADIFDate($date, $format = 'Ymd')
|
||||
{
|
||||
$d = DateTime::createFromFormat($format, $date);
|
||||
return $d && $d->format($format) == $date;
|
||||
}
|
||||
}
|
||||
|
|
@ -102,7 +102,7 @@
|
|||
<div class="row">
|
||||
<div class="mb-3 col-md-3">
|
||||
<label for="callsign"><?php echo lang('gen_hamradio_callsign'); ?></label>
|
||||
<input type="text" class="form-control form-control-sm" id="callsign" name="callsign" required>
|
||||
<input type="text" class="form-control form-control-sm" id="callsign" name="callsign" required pattern="\S+" title="Whitespace is not allowed">
|
||||
<small id="callsign_info" class="badge text-bg-danger"></small>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
|
||||
<div class="container adif" id="qrz_export">
|
||||
|
||||
<h2><?php echo $page_title; ?></h2>
|
||||
<h2><?php echo $page_title; ?></h2>
|
||||
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<ul class="nav nav-tabs card-header-tabs pull-right" role="tablist">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link active" id="export-tab" data-bs-toggle="tab" href="#export" role="tab" aria-controls="import" aria-selected="true">Upload Logbook</a>
|
||||
|
|
@ -17,18 +16,18 @@
|
|||
</li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="card-body">
|
||||
<div class="card-body">
|
||||
<div class="tab-content">
|
||||
<div class="tab-pane active" id="export" role="tabpanel" aria-labelledby="export-tab">
|
||||
<p>Here you can see and upload all QSOs which have not been previously uploaded to a QRZ logbook.</p>
|
||||
<p>You need to set a QRZ Logbook API key in your station profile. Only station profiles with an API Key set are displayed.</p>
|
||||
<p><span class="badge text-bg-warning">Warning</span> This might take a while as QSO uploads are processed sequentially.</p>
|
||||
<p>Here you can see and upload all QSOs which have not been previously uploaded to a QRZ logbook.</p>
|
||||
<p>You need to set a QRZ Logbook API key in your station profile. Only station profiles with an API Key set are displayed.</p>
|
||||
<p><span class="badge text-bg-warning">Warning</span> This might take a while as QSO uploads are processed sequentially.</p>
|
||||
|
||||
<?php
|
||||
if ($station_profile->result()) {
|
||||
echo '
|
||||
<?php
|
||||
if ($station_profile->result()) {
|
||||
echo '
|
||||
|
||||
<table class="table table-bordered table-hover table-striped table-condensed text-center">
|
||||
<thead>
|
||||
|
|
@ -41,66 +40,59 @@
|
|||
<td>Actions</td>
|
||||
</thead>
|
||||
<tbody>';
|
||||
foreach ($station_profile->result() as $station) { // Fills the table with the data
|
||||
echo '<tr>';
|
||||
echo '<td>' . $station->station_profile_name . '</td>';
|
||||
echo '<td>' . $station->station_callsign . '</td>';
|
||||
echo '<td id ="modcount'.$station->station_id.'">' . $station->modcount . '</td>';
|
||||
echo '<td id ="notcount'.$station->station_id.'">' . $station->notcount . '</td>';
|
||||
echo '<td id ="totcount'.$station->station_id.'">' . $station->totcount . '</td>';
|
||||
echo '<td><button id="qrzUpload" type="button" name="qrzUpload" class="btn btn-primary btn-sm ld-ext-right ld-ext-right-'.$station->station_id.'" onclick="ExportQrz('. $station->station_id .')"><i class="fas fa-cloud-upload-alt"></i> Upload<div class="ld ld-ring ld-spin"></div></button></td>';
|
||||
echo '</tr>';
|
||||
}
|
||||
echo '</tfoot></table>';
|
||||
foreach ($station_profile->result() as $station) { // Fills the table with the data
|
||||
echo '<tr>';
|
||||
echo '<td>' . $station->station_profile_name . '</td>';
|
||||
echo '<td>' . $station->station_callsign . '</td>';
|
||||
echo '<td id ="modcount' . $station->station_id . '">' . $station->modcount . '</td>';
|
||||
echo '<td id ="notcount' . $station->station_id . '">' . $station->notcount . '</td>';
|
||||
echo '<td id ="totcount' . $station->station_id . '">' . $station->totcount . '</td>';
|
||||
echo '<td><button id="qrzUpload" type="button" name="qrzUpload" class="btn btn-primary btn-sm ld-ext-right ld-ext-right-' . $station->station_id . '" onclick="ExportQrz(' . $station->station_id . ')"><i class="fas fa-cloud-upload-alt"></i> Upload<div class="ld ld-ring ld-spin"></div></button></td>';
|
||||
echo '</tr>';
|
||||
}
|
||||
echo '</tfoot></table>';
|
||||
} else {
|
||||
echo '<div class="alert alert-danger" role="alert">Nothing found!</div>';
|
||||
}
|
||||
?>
|
||||
|
||||
}
|
||||
else {
|
||||
echo '<div class="alert alert-danger" role="alert">Nothing found!</div>';
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
<div class="tab-pane fade" id="import" role="tabpanel" aria-labelledby="home-tab">
|
||||
|
||||
</div>
|
||||
<div class="tab-pane fade" id="import" role="tabpanel" aria-labelledby="home-tab">
|
||||
<form class="form" action="<?php echo site_url('qrz/import_qrz'); ?>" method="post" enctype="multipart/form-data">
|
||||
Download QSOs from QRZ Logbook for all Locations<br>
|
||||
<button type="submit" class="btn btn-sm btn-primary" value="Export">Download from QRZ Logbook</button>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<form class="form" action="<?php echo site_url('qrz/import_qrz'); ?>" method="post" enctype="multipart/form-data">
|
||||
<p><span class="badge text-bg-warning">Warning</span> If no startdate is given then all QSOs after last confirmation will be downloaded/updated!</p>
|
||||
<div class="row">
|
||||
<div class="col-md-2">
|
||||
<label for="from"><?php echo lang('gen_from_date') . ": " ?></label>
|
||||
<input name="from" id="from" type="date" class="form-control w-auto">
|
||||
<div class="tab-pane fade" id="mark" role="tabpanel" aria-labelledby="home-tab">
|
||||
|
||||
<form class="form" action="<?php echo site_url('qrz/mark_qrz'); ?>" method="post" enctype="multipart/form-data">
|
||||
<select name="station_profile" class="form-select mb-4 me-sm-4" style="width: 30%;">
|
||||
<option disabled value="0">Select Station Location</option>
|
||||
<?php foreach ($station_profiles->result() as $station) { ?>
|
||||
<option <?php if ($station->station_active) {
|
||||
echo "selected ";
|
||||
} ?>value="<?php echo $station->station_id; ?>">Callsign: <?php echo $station->station_callsign; ?> (<?php echo $station->station_profile_name; ?>)</option>
|
||||
<?php } ?>
|
||||
</select>
|
||||
<p><span class="badge text-bg-warning">Warning</span> If a date range is not selected then all QSOs will be marked!</p>
|
||||
<div class="row">
|
||||
<div class="col-md-2">
|
||||
<label for="from"><?php echo lang('gen_from_date') . ": " ?></label>
|
||||
<input name="from" id="from" type="date" class="form-control w-auto">
|
||||
</div>
|
||||
|
||||
<div class="col-md-2">
|
||||
<label for="to"><?php echo lang('gen_to_date') . ": " ?></label>
|
||||
<input name="to" id="to" type="date" class="form-control w-auto">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
<button type="submit" class="btn btn-sm btn-primary" value="Export">Download from QRZ Logbook</button>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div class="tab-pane fade" id="mark" role="tabpanel" aria-labelledby="home-tab">
|
||||
|
||||
<form class="form" action="<?php echo site_url('qrz/mark_qrz'); ?>" method="post" enctype="multipart/form-data">
|
||||
<select name="station_profile" class="form-select mb-4 me-sm-4" style="width: 30%;">
|
||||
<option disabled value="0">Select Station Location</option>
|
||||
<?php foreach ($station_profiles->result() as $station) { ?>
|
||||
<option <?php if ($station->station_active) { echo "selected "; } ?>value="<?php echo $station->station_id; ?>">Callsign: <?php echo $station->station_callsign; ?> (<?php echo $station->station_profile_name; ?>)</option>
|
||||
<?php } ?>
|
||||
</select>
|
||||
<p><span class="badge text-bg-warning">Warning</span> If a date range is not selected then all QSOs will be marked!</p>
|
||||
<div class="row">
|
||||
<div class="col-md-2">
|
||||
<label for="from"><?php echo lang('gen_from_date') . ": " ?></label>
|
||||
<input name="from" id="from" type="date" class="form-control w-auto">
|
||||
</div>
|
||||
|
||||
<div class="col-md-2">
|
||||
<label for="to"><?php echo lang('gen_to_date') . ": " ?></label>
|
||||
<input name="to" id="to" type="date" class="form-control w-auto">
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
<button type="submit" class="btn btn-sm btn-primary" value="Export">Mark QSOs as exported to QRZ Logbook</button>
|
||||
</form>
|
||||
</div>
|
||||
<br>
|
||||
<button type="submit" class="btn btn-sm btn-primary" value="Export">Mark QSOs as exported to QRZ Logbook</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -433,7 +433,7 @@ function logQso() {
|
|||
|
||||
var data = [[
|
||||
$("#start_date").val() + ' ' + $("#start_time").val(),
|
||||
$("#callsign").val().toUpperCase(),
|
||||
$("#callsign").val($("#callsign").val().replace(/\s+/g, '').toUpperCase()),
|
||||
$("#band").val(),
|
||||
$("#mode").val(),
|
||||
$("#rst_sent").val(),
|
||||
|
|
|
|||
|
|
@ -35,50 +35,50 @@
|
|||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
zdefiniowana('BASEPATH') OR exit('Bezpośredni dostęp do skryptu nie jest dozwolony');
|
||||
|
||||
$lang['cal_su'] = 'Su';
|
||||
$lang['cal_mo'] = 'Mo';
|
||||
$lang['cal_tu'] = 'Tu';
|
||||
$lang['cal_we'] = 'We';
|
||||
$lang['cal_th'] = 'Th';
|
||||
$lang['cal_fr'] = 'Fr';
|
||||
$lang['cal_sa'] = 'Sa';
|
||||
$lang['cal_sun'] = 'Sun';
|
||||
$lang['cal_mon'] = 'Mon';
|
||||
$lang['cal_tue'] = 'Tue';
|
||||
$lang['cal_wed'] = 'Wed';
|
||||
$lang['cal_thu'] = 'Thu';
|
||||
$lang['cal_fri'] = 'Fri';
|
||||
$lang['cal_sat'] = 'Sat';
|
||||
$lang['cal_sunday'] = 'Sunday';
|
||||
$lang['cal_monday'] = 'Monday';
|
||||
$lang['cal_tuesday'] = 'Tuesday';
|
||||
$lang['cal_wednesday'] = 'Wednesday';
|
||||
$lang['cal_thursday'] = 'Thursday';
|
||||
$lang['cal_friday'] = 'Friday';
|
||||
$lang['cal_saturday'] = 'Saturday';
|
||||
$lang['cal_jan'] = 'Jan';
|
||||
$lang['cal_feb'] = 'Feb';
|
||||
$lang['cal_su'] = 'Nd';
|
||||
$lang['cal_mo'] = 'Pn';
|
||||
$lang['cal_tu'] = 'Wt';
|
||||
$lang['cal_we'] = 'Sr';
|
||||
$lang['cal_th'] = 'Cz';
|
||||
$lang['cal_fr'] = 'Pt';
|
||||
$lang['cal_sa'] = 'So';
|
||||
$lang['cal_sun'] = 'Ndz';
|
||||
$lang['cal_mon'] = 'Pon';
|
||||
$lang['cal_tue'] = 'Wtr';
|
||||
$lang['cal_wed'] = 'Śrd';
|
||||
$lang['cal_thu'] = 'Czw';
|
||||
$lang['cal_fri'] = 'Pią';
|
||||
$lang['cal_sat'] = 'Sob';
|
||||
$lang['cal_sunday'] = 'Niedziela';
|
||||
$lang['cal_monday'] = 'Poniedziałek';
|
||||
$lang['cal_tuesday'] = 'Wtorek';
|
||||
$lang['cal_wednesday'] = 'Środa';
|
||||
$lang['cal_thursday'] = 'Czwartek';
|
||||
$lang['cal_friday'] = 'Piątek';
|
||||
$lang['cal_saturday'] = 'Sobota';
|
||||
$lang['cal_jan'] = 'Sty';
|
||||
$lang['cal_feb'] = 'Lut';
|
||||
$lang['cal_mar'] = 'Mar';
|
||||
$lang['cal_apr'] = 'Apr';
|
||||
$lang['cal_may'] = 'May';
|
||||
$lang['cal_jun'] = 'Jun';
|
||||
$lang['cal_jul'] = 'Jul';
|
||||
$lang['cal_aug'] = 'Aug';
|
||||
$lang['cal_sep'] = 'Sep';
|
||||
$lang['cal_oct'] = 'Oct';
|
||||
$lang['cal_nov'] = 'Nov';
|
||||
$lang['cal_dec'] = 'Dec';
|
||||
$lang['cal_january'] = 'January';
|
||||
$lang['cal_february'] = 'February';
|
||||
$lang['cal_march'] = 'March';
|
||||
$lang['cal_april'] = 'April';
|
||||
$lang['cal_mayl'] = 'May';
|
||||
$lang['cal_june'] = 'June';
|
||||
$lang['cal_july'] = 'July';
|
||||
$lang['cal_august'] = 'August';
|
||||
$lang['cal_september'] = 'September';
|
||||
$lang['cal_october'] = 'October';
|
||||
$lang['cal_november'] = 'November';
|
||||
$lang['cal_december'] = 'December';
|
||||
$lang['cal_apr'] = 'Kwi';
|
||||
$lang['cal_may'] = 'Maj';
|
||||
$lang['cal_jun'] = 'Cze';
|
||||
$lang['cal_jul'] = 'Lip';
|
||||
$lang['cal_aug'] = 'Sie';
|
||||
$lang['cal_sep'] = 'Wrz';
|
||||
$lang['cal_oct'] = 'Paź';
|
||||
$lang['cal_nov'] = 'Lis';
|
||||
$lang['cal_dec'] = 'Gru';
|
||||
$lang['cal_january'] = 'Styczeń';
|
||||
$lang['cal_february'] = 'Luty';
|
||||
$lang['cal_march'] = 'Marzec';
|
||||
$lang['cal_april'] = 'Kwiecień';
|
||||
$lang['cal_mayl'] = 'Maj';
|
||||
$lang['cal_june'] = 'Czerwiec';
|
||||
$lang['cal_july'] = 'Lipiec';
|
||||
$lang['cal_august'] = 'Sierpień';
|
||||
$lang['cal_september'] = 'Wrzesień';
|
||||
$lang['cal_october'] = 'Październik';
|
||||
$lang['cal_november'] = 'Listopad';
|
||||
$lang['cal_december'] = 'Grudzień';
|
||||
|
|
|
|||
|
|
@ -35,22 +35,21 @@
|
|||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Bezpośredni dostęp do skryptu nie jest dozwolony');
|
||||
|
||||
$lang['date_year'] = 'Year';
|
||||
$lang['date_years'] = 'Years';
|
||||
$lang['date_month'] = 'Month';
|
||||
$lang['date_months'] = 'Months';
|
||||
$lang['date_week'] = 'Week';
|
||||
$lang['date_weeks'] = 'Weeks';
|
||||
$lang['date_day'] = 'Day';
|
||||
$lang['date_days'] = 'Days';
|
||||
$lang['date_hour'] = 'Hour';
|
||||
$lang['date_hours'] = 'Hours';
|
||||
$lang['date_minute'] = 'Minute';
|
||||
$lang['date_minutes'] = 'Minutes';
|
||||
$lang['date_second'] = 'Second';
|
||||
$lang['date_seconds'] = 'Seconds';
|
||||
$lang['date_year'] = 'Rok';
|
||||
$lang['date_years'] = 'Lata';
|
||||
$lang['date_month'] = 'Miesiące';
|
||||
$lang['date_week'] = 'Tydzień';
|
||||
$lang['date_weeks'] = 'Tygodnie';
|
||||
$lang['date_day'] = 'Dzień';
|
||||
$lang['date_days'] = 'Dni';
|
||||
$lang['date_hour'] = 'Godzina';
|
||||
$lang['date_hours'] = 'Godziny';
|
||||
$lang['date_minute'] = 'Minuta';
|
||||
$lang['date_minut'] = 'Minuty';
|
||||
$lang['data_sekunda'] = 'Sekunda';
|
||||
$lang['date_sekundy'] = 'Sekundy';
|
||||
|
||||
$lang['UM12'] = '(UTC -12:00) Baker/Howland Island';
|
||||
$lang['UM11'] = '(UTC -11:00) Niue';
|
||||
|
|
|
|||
|
|
@ -35,29 +35,29 @@
|
|||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Bezpośredni dostęp do skryptu nie jest dozwolony');
|
||||
|
||||
$lang['db_invalid_connection_str'] = 'Unable to determine the database settings based on the connection string you submitted.';
|
||||
$lang['db_unable_to_connect'] = 'Unable to connect to your database server using the provided settings.';
|
||||
$lang['db_unable_to_select'] = 'Unable to select the specified database: %s';
|
||||
$lang['db_unable_to_create'] = 'Unable to create the specified database: %s';
|
||||
$lang['db_invalid_query'] = 'The query you submitted is not valid.';
|
||||
$lang['db_must_set_table'] = 'You must set the database table to be used with your query.';
|
||||
$lang['db_must_use_set'] = 'You must use the "set" method to update an entry.';
|
||||
$lang['db_must_use_index'] = 'You must specify an index to match on for batch updates.';
|
||||
$lang['db_batch_missing_index'] = 'One or more rows submitted for batch updating is missing the specified index.';
|
||||
$lang['db_must_use_where'] = 'Updates are not allowed unless they contain a "where" clause.';
|
||||
$lang['db_del_must_use_where'] = 'Deletes are not allowed unless they contain a "where" or "like" clause.';
|
||||
$lang['db_field_param_missing'] = 'To fetch fields requires the name of the table as a parameter.';
|
||||
$lang['db_unsupported_function'] = 'This feature is not available for the database you are using.';
|
||||
$lang['db_transaction_failure'] = 'Transaction failure: Rollback performed.';
|
||||
$lang['db_unable_to_drop'] = 'Unable to drop the specified database.';
|
||||
$lang['db_unsupported_feature'] = 'Unsupported feature of the database platform you are using.';
|
||||
$lang['db_unsupported_compression'] = 'The file compression format you chose is not supported by your server.';
|
||||
$lang['db_filepath_error'] = 'Unable to write data to the file path you have submitted.';
|
||||
$lang['db_invalid_cache_path'] = 'The cache path you submitted is not valid or writable.';
|
||||
$lang['db_table_name_required'] = 'A table name is required for that operation.';
|
||||
$lang['db_column_name_required'] = 'A column name is required for that operation.';
|
||||
$lang['db_column_definition_required'] = 'A column definition is required for that operation.';
|
||||
$lang['db_unable_to_set_charset'] = 'Unable to set client connection character set: %s';
|
||||
$lang['db_error_heading'] = 'A Database Error Occurred';
|
||||
$lang['db_invalid_connection_str'] = 'Nie można określić ustawień bazy danych na podstawie przesłanego ciągu połączenia.';
|
||||
$lang['db_unable_to_connect'] = 'Nie można połączyć się z serwerem bazy danych przy użyciu podanych ustawień.';
|
||||
$lang['db_unable_to_select'] = 'Nie można wybrać określonej bazy danych: %s';
|
||||
$lang['db_unable_to_create'] = 'Nie można utworzyć określonej bazy danych: %s';
|
||||
$lang['db_invalid_query'] = 'Przesłane zapytanie jest nieprawidłowe.';
|
||||
$lang['db_must_set_table'] = 'Musisz ustawić tabelę bazy danych, która będzie używana z zapytaniem.';
|
||||
$lang['db_must_use_set'] = 'Aby zaktualizować wpis, należy użyć metody „set”.';
|
||||
$lang['db_must_use_index'] = 'Należy określić indeks, do którego mają być dopasowane aktualizacje wsadowe.';
|
||||
$lang['db_batch_missing_index'] = 'W jednym lub większej liczbie wierszy przesłanych do aktualizacji wsadowej brakuje określonego indeksu.';
|
||||
$lang['db_must_use_where'] = 'Aktualizacje są niedozwolone, chyba że zawierają klauzulę „where”.';
|
||||
$lang['db_del_must_use_where'] = 'Usunięcia są niedozwolone, chyba że zawierają klauzulę „where” lub „like”.';
|
||||
$lang['db_field_param_missing'] = 'Aby pobrać pola, wymagana jest nazwa tabeli jako parametr.';
|
||||
$lang['db_unsupported_function'] = 'Ta funkcja nie jest dostępna dla używanej bazy danych.';
|
||||
$lang['db_transaction_failure'] = 'Błąd transakcji: wykonano wycofanie.';
|
||||
$lang['db_unable_to_drop'] = 'Nie można usunąć określonej bazy danych.';
|
||||
$lang['db_unsupported_feature'] = 'Nieobsługiwana funkcja używanej platformy bazy danych.';
|
||||
$lang['db_unsupported_compression'] = 'Wybrany format kompresji pliku nie jest obsługiwany przez serwer.';
|
||||
$lang['db_filepath_error'] = 'Nie można zapisać danych w przesłanej ścieżce pliku.';
|
||||
$lang['db_invalid_cache_path'] = 'Przesłana ścieżka pamięci podręcznej jest nieprawidłowa lub niemożliwa do zapisu.';
|
||||
$lang['db_table_name_required'] = 'Do tej operacji wymagana jest nazwa tabeli.';
|
||||
$lang['db_column_name_required'] = 'Do tej operacji wymagana jest nazwa kolumny.';
|
||||
$lang['db_column_definition_required'] = 'Do tej operacji wymagana jest definicja kolumny.';
|
||||
$lang['db_unable_to_set_charset'] = 'Nie można ustawić zestawu znaków połączenia klienta: %s';
|
||||
$lang['db_error_heading'] = 'Wystąpił błąd bazy danych';
|
||||
|
|
|
|||
|
|
@ -35,24 +35,24 @@
|
|||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Bezpośredni dostęp do skryptu nie jest dozwolony');
|
||||
|
||||
$lang['email_must_be_array'] = 'The email validation method must be passed an array.';
|
||||
$lang['email_invalid_address'] = 'Invalid email address: %s';
|
||||
$lang['email_attachment_missing'] = 'Unable to locate the following email attachment: %s';
|
||||
$lang['email_attachment_unreadable'] = 'Unable to open this attachment: %s';
|
||||
$lang['email_no_from'] = 'Cannot send mail with no "From" header.';
|
||||
$lang['email_no_recipients'] = 'You must include recipients: To, Cc, or Bcc';
|
||||
$lang['email_send_failure_phpmail'] = 'Unable to send email using PHP mail(). Your server might not be configured to send mail using this method.';
|
||||
$lang['email_send_failure_sendmail'] = 'Unable to send email using PHP Sendmail. Your server might not be configured to send mail using this method.';
|
||||
$lang['email_send_failure_smtp'] = 'Unable to send email using PHP SMTP. Your server might not be configured to send mail using this method.';
|
||||
$lang['email_sent'] = 'Your message has been successfully sent using the following protocol: %s';
|
||||
$lang['email_no_socket'] = 'Unable to open a socket to Sendmail. Please check settings.';
|
||||
$lang['email_no_hostname'] = 'You did not specify a SMTP hostname.';
|
||||
$lang['email_smtp_error'] = 'The following SMTP error was encountered: %s';
|
||||
$lang['email_no_smtp_unpw'] = 'Error: You must assign a SMTP username and password.';
|
||||
$lang['email_failed_smtp_login'] = 'Failed to send AUTH LOGIN command. Error: %s';
|
||||
$lang['email_smtp_auth_un'] = 'Failed to authenticate username. Error: %s';
|
||||
$lang['email_smtp_auth_pw'] = 'Failed to authenticate password. Error: %s';
|
||||
$lang['email_smtp_data_failure'] = 'Unable to send data: %s';
|
||||
$lang['email_exit_status'] = 'Exit status code: %s';
|
||||
$lang['email_must_be_array'] = 'Metodzie walidacji adresu e-mail należy przekazać tablicę.';
|
||||
$lang['email_invalid_address'] = 'Nieprawidłowy adres e-mail: %s';
|
||||
$lang['email_attachment_missing'] = 'Nie można znaleźć następującego załącznika e-mail: %s';
|
||||
$lang['email_attachment_unreadable'] = 'Nie można otworzyć tego załącznika: %s';
|
||||
$lang['email_no_from'] = 'Nie można wysłać wiadomości bez nagłówka „Od”.';
|
||||
$lang['email_no_recipients'] = 'Musisz uwzględnić odbiorców: Do, DW lub UDW';
|
||||
$lang['email_send_failure_phpmail'] = 'Nie można wysłać wiadomości e-mail za pomocą PHP mail(). Twój serwer może nie być skonfigurowany do wysyłania wiadomości e-mail za pomocą tej metody.';
|
||||
$lang['email_send_failure_sendmail'] = 'Nie można wysłać wiadomości e-mail za pomocą PHP Sendmail. Twój serwer może nie być skonfigurowany do wysyłania wiadomości e-mail za pomocą tej metody.';
|
||||
$lang['email_send_failure_smtp'] = 'Nie można wysłać wiadomości e-mail za pomocą PHP SMTP. Twój serwer może nie być skonfigurowany do wysyłania wiadomości e-mail za pomocą tej metody.';
|
||||
$lang['email_sent'] = 'Twoja wiadomość została pomyślnie wysłana za pomocą następującego protokołu: %s';
|
||||
$lang['email_no_socket'] = 'Nie można otworzyć gniazda dla Sendmail. Sprawdź ustawienia.';
|
||||
$lang['email_no_hostname'] = 'Nie określono nazwy hosta SMTP.';
|
||||
$lang['email_smtp_error'] = 'Napotkano następujący błąd SMTP: %s';
|
||||
$lang['email_no_smtp_unpw'] = 'Błąd: Musisz przypisać nazwę użytkownika i hasło SMTP.';
|
||||
$lang['email_failed_smtp_login'] = 'Nie udało się wysłać polecenia AUTH LOGIN. Błąd: %s';
|
||||
$lang['email_smtp_auth_un'] = 'Nie udało się uwierzytelnić nazwy użytkownika. Błąd: %s';
|
||||
$lang['email_smtp_auth_pw'] = 'Nie udało się uwierzytelnić hasła. Błąd: %s';
|
||||
$lang['email_smtp_data_failure'] = 'Nie można wysłać danych: %s';
|
||||
$lang['email_exit_status'] = 'Kod statusu wyjścia: %s';
|
||||
|
|
@ -35,36 +35,36 @@
|
|||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Bezpośredni dostęp do skryptu nie jest dozwolony');
|
||||
|
||||
$lang['form_validation_required'] = 'The "{field}" field is required.';
|
||||
$lang['form_validation_isset'] = 'The "{field}" field must have a value.';
|
||||
$lang['form_validation_valid_email'] = 'The "{field}" field must contain a valid email address.';
|
||||
$lang['form_validation_valid_emails'] = 'The "{field}" field must contain all valid email addresses.';
|
||||
$lang['form_validation_valid_url'] = 'The "{field}" field must contain a valid URL.';
|
||||
$lang['form_validation_valid_ip'] = 'The "{field}" field must contain a valid IP.';
|
||||
$lang['form_validation_valid_mac'] = 'The "{field}" field must contain a valid MAC.';
|
||||
$lang['form_validation_valid_base64'] = 'The "{field}" field must contain a valid Base64 string.';
|
||||
$lang['form_validation_min_length'] = 'The "{field}" field must be at least {param} characters in length.';
|
||||
$lang['form_validation_max_length'] = 'The "{field}" field cannot exceed {param} characters in length.';
|
||||
$lang['form_validation_exact_length'] = 'The "{field}" field must be exactly {param} characters in length.';
|
||||
$lang['form_validation_alpha'] = 'The "{field}" field may only contain alphabetical characters.';
|
||||
$lang['form_validation_alpha_numeric'] = 'The "{field}" field may only contain alpha-numeric characters.';
|
||||
$lang['form_validation_alpha_numeric_spaces'] = 'The "{field}" field may only contain alpha-numeric characters and spaces.';
|
||||
$lang['form_validation_alpha_dash'] = 'The "{field}" field may only contain alpha-numeric characters, underscores, and dashes.';
|
||||
$lang['form_validation_numeric'] = 'The "{field}" field must contain only numbers.';
|
||||
$lang['form_validation_is_numeric'] = 'The "{field}" field must contain only numeric characters.';
|
||||
$lang['form_validation_integer'] = 'The "{field}" field must contain an integer.';
|
||||
$lang['form_validation_regex_match'] = 'The "{field}" field is not in the correct format.';
|
||||
$lang['form_validation_matches'] = 'The "{field}" field does not match the {param} field.';
|
||||
$lang['form_validation_differs'] = 'The "{field}" field must differ from the {param} field.';
|
||||
$lang['form_validation_is_unique'] = 'The "{field}" field must contain a unique value.';
|
||||
$lang['form_validation_is_natural'] = 'The "{field}" field must only contain digits.';
|
||||
$lang['form_validation_is_natural_no_zero'] = 'The "{field}" field must only contain digits and must be greater than zero.';
|
||||
$lang['form_validation_decimal'] = 'The "{field}" field must contain a decimal number.';
|
||||
$lang['form_validation_less_than'] = 'The "{field}" field must contain a number less than {param}.';
|
||||
$lang['form_validation_less_than_equal_to'] = 'The "{field}" field must contain a number less than or equal to {param}.';
|
||||
$lang['form_validation_greater_than'] = 'The "{field}" field must contain a number greater than {param}.';
|
||||
$lang['form_validation_greater_than_equal_to'] = 'The "{field}" field must contain a number greater than or equal to {param}.';
|
||||
$lang['form_validation_error_message_not_set'] = 'Unable to access an error message corresponding to your field name "{field}".';
|
||||
$lang['form_validation_in_list'] = 'The "{field}" field must be one of: {param}.';
|
||||
$lang['form_validation_required'] = 'Pole "{field}" jest wymagane.';
|
||||
$lang['form_validation_isset'] = 'Pole "{field}" musi mieć wartość.';
|
||||
$lang['form_validation_valid_email'] = 'Pole "{field}" musi zawierać prawidłowy adres e-mail.';
|
||||
$lang['form_validation_valid_emails'] = 'Pole "{field}" musi zawierać wszystkie prawidłowe adresy e-mail.';
|
||||
$lang['form_validation_valid_url'] = 'Pole "{field}" musi zawierać prawidłowy adres URL.';
|
||||
$lang['form_validation_valid_ip'] = 'Pole "{field}" musi zawierać prawidłowy adres IP.';
|
||||
$lang['form_validation_valid_mac'] = 'Pole "{field}" musi zawierać prawidłowy kod MAC.';
|
||||
$lang['form_validation_valid_base64'] = 'Pole "{field}" musi zawierać prawidłowy ciąg Base64.';
|
||||
$lang['form_validation_min_length'] = 'Pole "{field}" musi mieć co najmniej {param} znaków długości.';
|
||||
$lang['form_validation_max_length'] = 'Pole "{field}" nie może przekraczać {param} znaków długości.';
|
||||
$lang['form_validation_exact_length'] = 'Pole "{field}" musi mieć dokładnie {param} znaków długości.';
|
||||
$lang['form_validation_alpha'] = 'Pole "{field}" może zawierać tylko znaki alfabetyczne.';
|
||||
$lang['form_validation_alpha_numeric'] = 'Pole "{field}" może zawierać tylko znaki alfanumeryczne.';
|
||||
$lang['form_validation_alpha_numeric_spaces'] = 'Pole "{field}" może zawierać tylko znaki alfanumeryczne i spacje.';
|
||||
$lang['form_validation_alpha_dash'] = 'Pole "{field}" może zawierać tylko znaki alfanumeryczne, podkreślenia i myślniki.';
|
||||
$lang['form_validation_numeric'] = 'Pole "{field}" musi zawierać tylko cyfry.';
|
||||
$lang['form_validation_is_numeric'] = 'Pole "{field}" musi zawierać tylko znaki numeryczne.';
|
||||
$lang['form_validation_integer'] = 'Pole "{field}" musi zawierać liczbę całkowitą.';
|
||||
$lang['form_validation_regex_match'] = 'Pole "{field}" nie ma poprawnego formatu.';
|
||||
$lang['form_validation_matches'] = 'Pole "{field}" nie pasuje do pola {param}.';
|
||||
$lang['form_validation_differs'] = 'Pole "{field}" musi różnić się od pola {param}.';
|
||||
$lang['form_validation_is_unique'] = 'Pole "{field}" musi zawierać unikalną wartość.';
|
||||
$lang['form_validation_is_natural'] = 'Pole "{field}" musi zawierać tylko cyfry.';
|
||||
$lang['form_validation_is_natural_no_zero'] = 'Pole "{field}" musi zawierać tylko cyfry i musi być większe od zera.';
|
||||
$lang['form_validation_decimal'] = 'Pole "{field}" musi zawierać liczbę dziesiętną.';
|
||||
$lang['form_validation_less_than'] = 'Pole "{field}" musi zawierać liczbę mniejszą niż {param}.';
|
||||
$lang['form_validation_less_than_equal_to'] = 'Pole "{field}" musi zawierać liczbę mniejszą lub równą {param}.';
|
||||
$lang['form_validation_greater_than'] = 'Pole "{field}" musi zawierać liczbę większą niż {param}.';
|
||||
$lang['form_validation_greater_than_equal_to'] = 'Pole "{field}" musi zawierać liczbę większą lub równą {param}.';
|
||||
$lang['form_validation_error_message_not_set'] = 'Nie można uzyskać dostępu do komunikatu o błędzie odpowiadającego nazwie pola "{field}".';
|
||||
$lang['form_validation_in_list'] = 'Pole "{field}" musi być jednym z: {param}.';
|
||||
|
|
|
|||
|
|
@ -35,17 +35,17 @@
|
|||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Bezpośredni dostęp do skryptu nie jest dozwolony');
|
||||
|
||||
$lang['ftp_no_connection'] = 'Unable to locate a valid connection ID. Please make sure you are connected before performing any file routines.';
|
||||
$lang['ftp_unable_to_connect'] = 'Unable to connect to your FTP server using the supplied hostname.';
|
||||
$lang['ftp_unable_to_login'] = 'Unable to login to your FTP server. Please check your username and password.';
|
||||
$lang['ftp_unable_to_mkdir'] = 'Unable to create the directory you have specified.';
|
||||
$lang['ftp_unable_to_changedir'] = 'Unable to change directories.';
|
||||
$lang['ftp_unable_to_chmod'] = 'Unable to set file permissions. Please check your path.';
|
||||
$lang['ftp_unable_to_upload'] = 'Unable to upload the specified file. Please check your path.';
|
||||
$lang['ftp_unable_to_download'] = 'Unable to download the specified file. Please check your path.';
|
||||
$lang['ftp_no_source_file'] = 'Unable to locate the source file. Please check your path.';
|
||||
$lang['ftp_unable_to_rename'] = 'Unable to rename the file.';
|
||||
$lang['ftp_unable_to_delete'] = 'Unable to delete the file.';
|
||||
$lang['ftp_unable_to_move'] = 'Unable to move the file. Please make sure the destination directory exists.';
|
||||
$lang['ftp_no_connection'] = 'Nie można zlokalizować prawidłowego identyfikatora połączenia. Przed wykonaniem jakichkolwiek procedur dotyczących plików upewnij się, że jesteś połączony.';
|
||||
$lang['ftp_unable_to_connect'] = 'Nie można połączyć się z serwerem FTP przy użyciu podanej nazwy hosta.';
|
||||
$lang['ftp_unable_to_login'] = 'Nie można zalogować się do serwera FTP. Sprawdź nazwę użytkownika i hasło.';
|
||||
$lang['ftp_unable_to_mkdir'] = 'Nie można utworzyć określonego katalogu.';
|
||||
$lang['ftp_unable_to_changedir'] = 'Nie można zmienić katalogów.';
|
||||
$lang['ftp_unable_to_chmod'] = 'Nie można ustawić uprawnień do pliku. Sprawdź ścieżkę.';
|
||||
$lang['ftp_unable_to_upload'] = 'Nie można przesłać określonego pliku. Sprawdź ścieżkę.';
|
||||
$lang['ftp_unable_to_download'] = 'Nie można pobrać określonego pliku. Sprawdź ścieżkę.';
|
||||
$lang['ftp_no_source_file'] = 'Nie można zlokalizować pliku źródłowego. Sprawdź ścieżkę.';
|
||||
$lang['ftp_unable_to_rename'] = 'Nie można zmienić nazwy pliku.';
|
||||
$lang['ftp_unable_to_delete'] = 'Nie można usunąć pliku.';
|
||||
$lang['ftp_unable_to_move'] = 'Nie można przenieść pliku. Upewnij się, że katalog docelowy istnieje.';
|
||||
|
|
|
|||
|
|
@ -35,24 +35,24 @@
|
|||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Bezpośredni dostęp do skryptu nie jest dozwolony');
|
||||
|
||||
$lang['imglib_source_image_required'] = 'You must specify a source image in your preferences.';
|
||||
$lang['imglib_gd_required'] = 'The GD image library is required for this feature.';
|
||||
$lang['imglib_gd_required_for_props'] = 'Your server must support the GD image library in order to determine the image properties.';
|
||||
$lang['imglib_unsupported_imagecreate'] = 'Your server does not support the GD function required to process this type of image.';
|
||||
$lang['imglib_gif_not_supported'] = 'GIF images are often not supported due to licensing restrictions. You may have to use JPG or PNG images instead.';
|
||||
$lang['imglib_jpg_not_supported'] = 'JPG images are not supported.';
|
||||
$lang['imglib_png_not_supported'] = 'PNG images are not supported.';
|
||||
$lang['imglib_webp_not_supported'] = 'WEBP images are not supported.';
|
||||
$lang['imglib_jpg_or_png_required'] = 'The image resize protocol specified in your preferences only works with JPEG or PNG image types.';
|
||||
$lang['imglib_copy_error'] = 'An error was encountered while attempting to replace the file. Please make sure your file directory is writable.';
|
||||
$lang['imglib_rotate_unsupported'] = 'Image rotation does not appear to be supported by your server.';
|
||||
$lang['imglib_libpath_invalid'] = 'The path to your image library is not correct. Please set the correct path in your image preferences.';
|
||||
$lang['imglib_image_process_failed'] = 'Image processing failed. Please verify that your server supports the chosen protocol and that the path to your image library is correct.';
|
||||
$lang['imglib_rotation_angle_required'] = 'An angle of rotation is required to rotate the image.';
|
||||
$lang['imglib_invalid_path'] = 'The path to the image is not correct.';
|
||||
$lang['imglib_invalid_image'] = 'The provided image is not valid.';
|
||||
$lang['imglib_copy_failed'] = 'The image copy routine failed.';
|
||||
$lang['imglib_missing_font'] = 'Unable to find a font to use.';
|
||||
$lang['imglib_save_failed'] = 'Unable to save the image. Please make sure the image and file directory are writable.';
|
||||
$lang['imglib_source_image_required'] = 'Musisz określić obraz źródłowy w swoich preferencjach.';
|
||||
$lang['imglib_gd_required'] = 'Biblioteka obrazów GD jest wymagana dla tej funkcji.';
|
||||
$lang['imglib_gd_required_for_props'] = 'Twój serwer musi obsługiwać bibliotekę obrazów GD, aby określić właściwości obrazu.';
|
||||
$lang['imglib_unsupported_imagecreate'] = 'Twój serwer nie obsługuje funkcji GD wymaganej do przetworzenia tego typu obrazu.';
|
||||
$lang['imglib_gif_not_supported'] = 'Obrazy GIF często nie są obsługiwane z powodu ograniczeń licencyjnych. Zamiast tego może być konieczne użycie obrazów JPG lub PNG.';
|
||||
$lang['imglib_jpg_not_supported'] = 'Obrazki JPG nie są obsługiwane.';
|
||||
$lang['imglib_png_not_supported'] = 'Obrazki PNG nie są obsługiwane.';
|
||||
$lang['imglib_webp_not_supported'] = 'Obrazki WEBP nie są obsługiwane.';
|
||||
$lang['imglib_jpg_or_png_required'] = 'Protokół zmiany rozmiaru obrazu określony w preferencjach działa tylko z obrazami JPEG lub PNG.';
|
||||
$lang['imglib_copy_error'] = 'Wystąpił błąd podczas próby zastąpienia pliku. Upewnij się, że katalog pliku jest zapisywalny.';
|
||||
$lang['imglib_rotate_unsupported'] = 'Obrót obrazu nie jest obsługiwany przez serwer.';
|
||||
$lang['imglib_libpath_invalid'] = 'Ścieżka do biblioteki obrazów jest nieprawidłowa. Ustaw prawidłową ścieżkę w preferencjach obrazu.';
|
||||
$lang['imglib_image_process_failed'] = 'Przetwarzanie obrazu nie powiodło się. Sprawdź, czy serwer obsługuje wybrany protokół i czy ścieżka do biblioteki obrazów jest prawidłowa.';
|
||||
$lang['imglib_rotation_angle_required'] = 'Do obrócenia obrazu wymagany jest kąt obrotu.';
|
||||
$lang['imglib_invalid_path'] = 'Ścieżka do obrazu jest nieprawidłowa.';
|
||||
$lang['imglib_invalid_image'] = 'Dostarczony obraz jest nieprawidłowy.';
|
||||
$lang['imglib_copy_failed'] = 'Procedura kopiowania obrazu nie powiodła się.';
|
||||
$lang['imglib_missing_font'] = 'Nie można znaleźć czcionki do użycia.';
|
||||
$lang['imglib_save_failed'] = 'Nie można zapisać obrazu. Upewnij się, że obraz i katalog pliku są zapisywalne.';
|
||||
|
|
|
|||
|
|
@ -35,13 +35,13 @@
|
|||
* @since Version 3.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Bezpośredni dostęp do skryptu nie jest dozwolony');
|
||||
|
||||
$lang['migration_none_found'] = 'No migrations were found.';
|
||||
$lang['migration_not_found'] = 'No migration could be found with the version number: %s.';
|
||||
$lang['migration_sequence_gap'] = 'There is a gap in the migration sequence near version number: %s.';
|
||||
$lang['migration_multiple_version'] = 'There are multiple migrations with the same version number: %s.';
|
||||
$lang['migration_class_doesnt_exist'] = 'The migration class "%s" could not be found.';
|
||||
$lang['migration_missing_up_method'] = 'The migration class "%s" is missing an "up" method.';
|
||||
$lang['migration_missing_down_method'] = 'The migration class "%s" is missing a "down" method.';
|
||||
$lang['migration_invalid_filename'] = 'Migration "%s" has an invalid filename.';
|
||||
$lang['migration_none_found'] = 'Nie znaleziono migracji.';
|
||||
$lang['migration_not_found'] = 'Nie znaleziono migracji o numerze wersji: %s.';
|
||||
$lang['migration_sequence_gap'] = 'W sekwencji migracji jest przerwa w pobliżu numeru wersji: %s.';
|
||||
$lang['migration_multiple_version'] = 'Istnieją liczne migracje o tym samym numerze wersji: %s.';
|
||||
$lang['migration_class_doesnt_exist'] = 'Nie znaleziono klasy migracji "%s".';
|
||||
$lang['migration_missing_up_method'] = 'W klasie migracji "%s" brakuje metody "up".';
|
||||
$lang['migration_missing_down_method'] = 'Klasa migracji "%s" nie ma metody "down".';
|
||||
$lang['migration_invalid_filename'] = 'Migracja "%s" ma nieprawidłową nazwę pliku.';
|
||||
|
|
|
|||
|
|
@ -35,10 +35,10 @@
|
|||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Bezpośredni dostęp do skryptu nie jest dozwolony');
|
||||
|
||||
$lang['terabyte_abbr'] = 'TB';
|
||||
$lang['gigabyte_abbr'] = 'GB';
|
||||
$lang['megabyte_abbr'] = 'MB';
|
||||
$lang['kilobyte_abbr'] = 'KB';
|
||||
$lang['bytes'] = 'Bytes';
|
||||
$lang['bytes'] = 'Bajty';
|
||||
|
|
|
|||
|
|
@ -35,9 +35,9 @@
|
|||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Bezpośredni dostęp do skryptu nie jest dozwolony');
|
||||
|
||||
$lang['pagination_first_link'] = '‹ First';
|
||||
$lang['pagination_first_link'] = '‹ Pierwszy';
|
||||
$lang['pagination_next_link'] = '>';
|
||||
$lang['pagination_prev_link'] = '<';
|
||||
$lang['pagination_last_link'] = 'Last ›';
|
||||
$lang['pagination_last_link'] = 'Ostatni ›';
|
||||
|
|
|
|||
|
|
@ -35,26 +35,26 @@
|
|||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Brak bezpośredniego dostępu do skryptu');
|
||||
|
||||
$lang['profiler_database'] = 'DATABASE';
|
||||
$lang['profiler_controller_info'] = 'CLASS/METHOD';
|
||||
$lang['profiler_benchmarks'] = 'BENCHMARKS';
|
||||
$lang['profiler_queries'] = 'QUERIES';
|
||||
$lang['profiler_get_data'] = 'GET DATA';
|
||||
$lang['profiler_post_data'] = 'POST DATA';
|
||||
$lang['profiler_uri_string'] = 'URI STRING';
|
||||
$lang['profiler_memory_usage'] = 'MEMORY USAGE';
|
||||
$lang['profiler_config'] = 'CONFIG VARIABLES';
|
||||
$lang['profiler_session_data'] = 'SESSION DATA';
|
||||
$lang['profiler_headers'] = 'HTTP HEADERS';
|
||||
$lang['profiler_no_db'] = 'Database driver is not currently loaded';
|
||||
$lang['profiler_no_queries'] = 'No queries were run';
|
||||
$lang['profiler_no_post'] = 'No POST data exists';
|
||||
$lang['profiler_no_get'] = 'No GET data exists';
|
||||
$lang['profiler_no_uri'] = 'No URI data exists';
|
||||
$lang['profiler_no_memory'] = 'Memory Usage Unavailable';
|
||||
$lang['profiler_no_profiles'] = 'No Profile data - all Profiler sections have been disabled.';
|
||||
$lang['profiler_section_hide'] = 'Hide';
|
||||
$lang['profiler_section_show'] = 'Show';
|
||||
$lang['profiler_seconds'] = 'seconds';
|
||||
$lang['profiler_database'] = 'BAZA DANYCH';
|
||||
$lang['profiler_controller_info'] = 'KLASA/METODA';
|
||||
$lang['profiler_benchmarks'] = 'TESTY PORÓWNAWCZE';
|
||||
$lang['profiler_queries'] = 'ZAPYTANIA';
|
||||
$lang['profiler_get_data'] = 'POBIERZ DANE';
|
||||
$lang['profiler_post_data'] = 'POST DANE';
|
||||
$lang['profiler_uri_string'] = 'CIĄG URI';
|
||||
$lang['profiler_memory_usage'] = 'UŻYCIE PAMIĘCI';
|
||||
$lang['profiler_config'] = 'ZMIENNE KONFIGURACJI';
|
||||
$lang['profiler_session_data'] = 'DANE SESJI';
|
||||
$lang['profiler_headers'] = 'NAGŁÓWKI HTTP';
|
||||
$lang['profiler_no_db'] = 'Sterownik bazy danych nie jest obecnie załadowany';
|
||||
$lang['profiler_no_queries'] = 'Nie uruchomiono żadnych zapytań';
|
||||
$lang['profiler_no_post'] = 'Brak danych POST';
|
||||
$lang['profiler_no_get'] = 'Brak danych GET';
|
||||
$lang['profiler_no_uri'] = 'Brak danych URI';
|
||||
$lang['profiler_no_memory'] = 'Użycie pamięci niedostępne';
|
||||
$lang['profiler_no_profiles'] = 'Brak danych profilu — wszystkie sekcje Profilera zostały wyłączone.';
|
||||
$lang['profiler_section_hide'] = 'Ukryj';
|
||||
$lang['profiler_section_show'] = 'Pokaż';
|
||||
$lang['profiler_seconds'] = 'sekundy';
|
||||
|
|
|
|||
|
|
@ -35,24 +35,24 @@
|
|||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Bezpośredni dostęp do skryptu nie jest dozwolony');
|
||||
|
||||
$lang['ut_test_name'] = 'Test Name';
|
||||
$lang['ut_test_datatype'] = 'Test Datatype';
|
||||
$lang['ut_res_datatype'] = 'Expected Datatype';
|
||||
$lang['ut_result'] = 'Result';
|
||||
$lang['ut_undefined'] = 'Undefined Test Name';
|
||||
$lang['ut_file'] = 'File Name';
|
||||
$lang['ut_line'] = 'Line Number';
|
||||
$lang['ut_passed'] = 'Passed';
|
||||
$lang['ut_failed'] = 'Failed';
|
||||
$lang['ut_boolean'] = 'Boolean';
|
||||
$lang['ut_test_name'] = 'Nazwa testu';
|
||||
$lang['ut_test_datatype'] = 'Typ danych testu';
|
||||
$lang['ut_res_datatype'] = 'Oczekiwany typ danych';
|
||||
$lang['ut_result'] = 'Wynik';
|
||||
$lang['ut_undefined'] = 'Niezdefiniowana nazwa testu';
|
||||
$lang['ut_file'] = 'Nazwa pliku';
|
||||
$lang['ut_line'] = 'Numer wiersza';
|
||||
$lang['ut_passed'] = 'Zaliczone';
|
||||
$lang['ut_failed'] = 'Niezaliczone';
|
||||
$lang['ut_boolean'] = 'Wartość logiczna';
|
||||
$lang['ut_integer'] = 'Integer';
|
||||
$lang['ut_float'] = 'Float';
|
||||
$lang['ut_double'] = 'Float'; // can be the same as float
|
||||
$lang['ut_double'] = 'Float'; // może być taki sam jak float
|
||||
$lang['ut_string'] = 'String';
|
||||
$lang['ut_array'] = 'Array';
|
||||
$lang['ut_object'] = 'Object';
|
||||
$lang['ut_resource'] = 'Resource';
|
||||
$lang['ut_resource'] = 'Zasób';
|
||||
$lang['ut_null'] = 'Null';
|
||||
$lang['ut_notes'] = 'Notes';
|
||||
$lang['ut_notes'] = 'Notatki';
|
||||
|
|
|
|||
|
|
@ -35,21 +35,21 @@
|
|||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('Bezpośredni dostęp do skryptu nie jest dozwolony');
|
||||
|
||||
$lang['upload_userfile_not_set'] = 'Unable to find a post variable called userfile.';
|
||||
$lang['upload_file_exceeds_limit'] = 'The uploaded file exceeds the maximum allowed size in your PHP configuration file.';
|
||||
$lang['upload_file_exceeds_form_limit'] = 'The uploaded file exceeds the maximum size allowed by the submission form.';
|
||||
$lang['upload_file_partial'] = 'The file was only partially uploaded.';
|
||||
$lang['upload_no_temp_directory'] = 'The temporary folder is missing.';
|
||||
$lang['upload_unable_to_write_file'] = 'The file could not be written to disk.';
|
||||
$lang['upload_stopped_by_extension'] = 'The file upload was stopped by extension.';
|
||||
$lang['upload_no_file_selected'] = 'You did not select a file to upload.';
|
||||
$lang['upload_invalid_filetype'] = 'The filetype you are attempting to upload is not allowed.';
|
||||
$lang['upload_invalid_filesize'] = 'The file you are attempting to upload is larger than the permitted size.';
|
||||
$lang['upload_invalid_dimensions'] = 'The image you are attempting to upload doesn\'t fit into the allowed dimensions.';
|
||||
$lang['upload_destination_error'] = 'A problem was encountered while attempting to move the uploaded file to the final destination.';
|
||||
$lang['upload_no_filepath'] = 'The upload path does not appear to be valid.';
|
||||
$lang['upload_no_file_types'] = 'You have not specified any allowed file types.';
|
||||
$lang['upload_bad_filename'] = 'The file name you submitted already exists on the server.';
|
||||
$lang['upload_not_writable'] = 'The upload destination folder does not appear to be writable.';
|
||||
$lang['upload_userfile_not_set'] = 'Nie można znaleźć zmiennej post o nazwie userfile.';
|
||||
$lang['upload_file_exceeds_limit'] = 'Przesłany plik przekracza maksymalny dozwolony rozmiar w pliku konfiguracji PHP.';
|
||||
$lang['upload_file_exceeds_form_limit'] = 'Przesłany plik przekracza maksymalny rozmiar dozwolony w formularzu zgłoszeniowym.';
|
||||
$lang['upload_file_partial'] = 'Plik został przesłany tylko częściowo.';
|
||||
$lang['upload_no_temp_directory'] = 'Brakuje folderu tymczasowego.';
|
||||
$lang['upload_unable_to_write_file'] = 'Nie można zapisać pliku na dysku.';
|
||||
$lang['upload_stopped_by_extension'] = 'Przesyłanie pliku zostało zatrzymane przez rozszerzenie.';
|
||||
$lang['upload_no_file_selected'] = 'Nie wybrano pliku do przesłania.';
|
||||
$lang['upload_invalid_filetype'] = 'Typ pliku, który próbujesz przesłać, jest niedozwolony.';
|
||||
$lang['upload_invalid_filesize'] = 'Plik, który próbujesz przesłać, jest większy niż dozwolony rozmiar.';
|
||||
$lang['upload_invalid_dimensions'] = 'Obraz, który próbujesz przesłać, nie mieści się w dozwolonych wymiarach.';
|
||||
$lang['upload_destination_error'] = 'Wystąpił problem podczas próby przeniesienia przesłanego pliku do miejsca docelowego.';
|
||||
$lang['upload_no_filepath'] = 'Ścieżka przesyłania wydaje się nieprawidłowa.';
|
||||
$lang['upload_no_file_types'] = 'Nie określono żadnych dozwolonych typów plików.';
|
||||
$lang['upload_bad_filename'] = 'Przesłana nazwa pliku już istnieje na serwerze.';
|
||||
$lang['upload_not_writable'] = 'Folder docelowy przesyłania nie wydaje się być zapisywalny.';
|
||||
|
|
|
|||
正在加载…
在新工单中引用