Merge pull request #9 from int2001/rename_cl

A small step for me, a huge step for the WL-Team ;)
This commit is contained in:
Joerg (DJ7NT)
2024-01-19 12:16:47 +01:00
committed by GitHub
275 changed files with 686 additions and 708 deletions

6
.github/FUNDING.yml vendored
View File

@@ -1,4 +1,4 @@
# These are supported funding model platforms
# github: mot defined
# patreon: mot defined
# custom: mot defined
# github: not defined
# patreon: not defined
# custom: not defined

View File

@@ -1,6 +1,6 @@
MIT License
Copyright (c) 2024 Peter Goodhall
Copyright (c) 2024 by DF2ET, DJ7NT, HB9HIL, LA8AJA
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@@ -2,6 +2,6 @@
## Reporting a Vulnerability
If you discover a security vulnerability within Cloudlog, please send an e-mail to Peter Goodhall, 2M0SQL via [peter@magicbug.co.uk](mailto:peter@magicbug.co.uk).
If you discover a security vulnerability within Wavelog, please send an e-mail to us via [support@wavelog.org](mailto:support@wavelog.org).
All security vulnerabilities will be promptly addressed.

View File

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 31 KiB

View File

@@ -80,7 +80,7 @@ $autoload['helper'] = array('url', 'security', 'language');
|
*/
$autoload['config'] = array('cloudlog', 'bands', 'lotw');
$autoload['config'] = array('wavelog', 'bands', 'lotw');
/*

View File

@@ -7,14 +7,12 @@ defined('BASEPATH') OR exit('No direct script access allowed');
| Install Options
|--------------------------------------------------------------------------
|
| 'app_name' Name of the App 'Cloudlog'
| 'app_version' Set by the dev team.
| 'directory' directory where cloudlog is installed eg "logger"
| 'app_name' Name of the App 'Wavelog'
| 'directory' directory where wavelog is installed eg "logger"
| 'callbook' Selects which Callbook lookup to use defaults "hamqth" but supports "qrz"
*/
$config['app_name'] = "Cloudlog";
$config['app_version'] = "2.4.5";
$config['app_name'] = "Wavelog";
$config['directory'] = "logbook";
$config['callbook'] = "hamqth"; // Options are hamqth or qrz
$config['datadir'] = null; // default to install directory
@@ -508,7 +506,7 @@ $config['encryption_key'] = 'flossie1234555541';
|
*/
$config['sess_driver'] = 'files';
$config['sess_cookie_name'] = 'ci_cloudlog';
$config['sess_cookie_name'] = 'ci_wavelog';
$config['sess_expiration'] = 0;
$config['sess_save_path'] = '/tmp';
$config['sess_match_ip'] = FALSE;

View File

@@ -1,7 +1,7 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
Data lookup functions used within Cloudlog
Data lookup functions used within Wavelog
*/
class Activatorsmap extends CI_Controller {

View File

@@ -132,19 +132,19 @@ class API extends CI_Controller {
$this->load->model('api_model');
$this->load->model('stations');
header("Content-type: application/json");
if(substr($this->api_model->access($key),0,1) == 'r') { /* Checkpermission for _r_eading */
if(substr($this->api_model->access($key),0,1) == 'r') { /* Check permission for reading */
$this->api_model->update_last_used($key);
$userid = $this->api_model->key_userid($key);
$station_ids = array();
$station_ids = array();
$stations=$this->stations->all_of_user($userid);
foreach ($stations->result() as $row) {
foreach ($stations->result() as $row) {
$result['station_id']=$row->station_id;
$result['station_profile_name']=$row->station_profile_name;
$result['station_gridsquare']=$row->station_gridsquare;
$result['station_callsign']=$row->station_callsign;;
$result['station_active']=$row->station_active;
array_push($station_ids, $result);
}
array_push($station_ids, $result);
}
echo json_encode($station_ids);
} else {
http_response_code(401);
@@ -153,10 +153,10 @@ class API extends CI_Controller {
}
/*
/*
*
* Function: QSO
* Task: allows passing of ADIF data to Cloudlog
* Task: allows passing of ADIF data to Wavelog
*/
function qso($dryrun = false) {
header('Content-type: application/json');
@@ -287,7 +287,7 @@ class API extends CI_Controller {
{
// Get associated station locations for mysql queries
$logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($logbook_id);
if (!$logbooks_locations_array) {
// Logbook not found
http_response_code(404);
@@ -366,7 +366,7 @@ class API extends CI_Controller {
{
// Get associated station locations for mysql queries
$logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($logbook_id);
if (!$logbooks_locations_array) {
// Logbook not found
http_response_code(404);
@@ -471,7 +471,7 @@ class API extends CI_Controller {
$this->output->enable_profiler(TRUE);
/*
*
* Callsign lookup function for Cloudlogs logging page or thirdparty systems
* Callsign lookup function for Wavelogs logging page or thirdparty systems
* which want to show previous QSO data on their system.
*
* TODO

View File

@@ -298,7 +298,7 @@ class Awards extends CI_Controller {
$searchmode = $this->input->post('searchmode') == null ? '' : $this->security->xss_clean($this->input->post('searchmode'));
$data['results'] = $this->logbook_model->qso_details($searchphrase, $band, $mode, $type, $qsl, $searchmode);
// This is done because we have two different ways to get dxcc info in Cloudlog. Once is using the name (in awards), and the other one is using the ADIF DXCC.
// This is done because we have two different ways to get dxcc info in Wavelog. Once is using the name (in awards), and the other one is using the ADIF DXCC.
// We replace the values to make it look a bit nicer
if ($type == 'DXCC2') {
$type = 'DXCC';

View File

@@ -50,7 +50,7 @@ class Bandmap extends CI_Controller {
// If Logged in and session exists
$pageData['custom_date_format'] = $CI->session->userdata('user_date_format');
} else {
// Get Default date format from /config/cloudlog.php
// Get Default date format from /config/wavelog.php
$pageData['custom_date_format'] = $CI->config->item('qso_date_format');
}

View File

@@ -1,5 +1,5 @@
<?php
use Cloudlog\Dxcc\Dxcc;
use Wavelog\Dxcc\Dxcc;
if ( ! defined('BASEPATH')) exit('No direct script access allowed');

View File

@@ -63,7 +63,7 @@ class Dashboard extends CI_Controller {
$setup_required = false;
if($setup_required) {
$data['page_title'] = "Cloudlog Setup Checklist";
$data['page_title'] = "Wavelog Setup Checklist";
$this->load->view('interface_assets/header', $data);
$this->load->view('setup/check_list');

View File

@@ -285,7 +285,7 @@ class eqsl extends CI_Controller {
# Set up the single record file
$adif = "https://www.eqsl.cc/qslcard/importADIF.cfm?";
$adif .= "ADIFData=CloudlogUpload%20";
$adif .= "ADIFData=WavelogUpload%20";
/* Handy reference of escaping chars
"<" = 3C
@@ -750,7 +750,7 @@ class eqsl extends CI_Controller {
}
}
// Functions for storage, these need shifted to a libary to use across Cloudlog
// Functions for storage, these need shifted to a libary to use across Wavelog
function folderSize($dir){
$count_size = 0;
$count = 0;

View File

@@ -8,7 +8,7 @@ class Hrdlog extends CI_Controller {
/*
* Upload QSO to hrdlog.net
* When called from the url cloudlog/hrdlog/upload, the function loops through all station_id's with a hrdlog code defined.
* When called from the url wavelog/hrdlog/upload, the function loops through all station_id's with a hrdlog code defined.
* All QSOs not previously uploaded, will then be uploaded, one at a time
*/
public function upload() {

View File

@@ -1,9 +1,9 @@
<?php
require_once './src/Label/vendor/autoload.php';
use Cloudlog\Label\PDF_Label;
use Cloudlog\Label\tfpdf;
use Cloudlog\Label\font\unifont\ttfonts;
use Wavelog\Label\PDF_Label;
use Wavelog\Label\tfpdf;
use Wavelog\Label\font\unifont\ttfonts;
if ( ! defined('BASEPATH')) exit('No direct script access allowed');

View File

@@ -695,7 +695,7 @@ class Logbook extends CI_Controller {
// If Logged in and session exists
$custom_date_format = $this->session->userdata('user_date_format');
} else {
// Get Default date format from /config/cloudlog.php
// Get Default date format from /config/wavelog.php
$custom_date_format = $this->config->item('qso_date_format');
}

View File

@@ -1,6 +1,6 @@
<?php
use Cloudlog\QSLManager\QSO;
use Wavelog\QSLManager\QSO;
if ( ! defined('BASEPATH')) exit('No direct script access allowed');
@@ -62,7 +62,7 @@ class Logbookadvanced extends CI_Controller {
// If Logged in and session exists
$pageData['custom_date_format'] = $CI->session->userdata('user_date_format');
} else {
// Get Default date format from /config/cloudlog.php
// Get Default date format from /config/wavelog.php
$pageData['custom_date_format'] = $CI->config->item('qso_date_format');
}
@@ -348,7 +348,7 @@ class Logbookadvanced extends CI_Controller {
// If Logged in and session exists
$custom_date_format = $CI->session->userdata('user_date_format');
} else {
// Get Default date format from /config/cloudlog.php
// Get Default date format from /config/wavelog.php
$custom_date_format = $CI->config->item('qso_date_format');
}

View File

@@ -2,7 +2,7 @@
/*
Data lookup functions used within Cloudlog
Data lookup functions used within Wavelog
*/

View File

@@ -11,7 +11,7 @@ class Lotw extends CI_Controller {
|
| Note:
| If you plan on using any of the code within this class please credit
| Cloudlog or Peter, 2M0SQL, a lot of hard work went into building the
| Peter, 2M0SQL. A lot of hard work went into building the
| signing of files.
|
| Big Thanks to Rodrigo PY2RAF for all the help and information about OpenSSL
@@ -269,7 +269,7 @@ class Lotw extends CI_Controller {
}
// Build Filename
$filename_for_saving = './uploads/lotw/'.preg_replace('/[^a-z0-9]+/', '-', strtolower($data['lotw_cert_info']->callsign))."-".date("Y-m-d-H-i-s")."-cloudlog.tq8";
$filename_for_saving = './uploads/lotw/'.preg_replace('/[^a-z0-9]+/', '-', strtolower($data['lotw_cert_info']->callsign))."-".date("Y-m-d-H-i-s")."-wavelog.tq8";
$gzdata = gzencode($adif_to_save, 9);
$fp = fopen($filename_for_saving, "w");
@@ -409,7 +409,7 @@ class Lotw extends CI_Controller {
if($worked) {
// Reading p12 successful
$new_password = "cloudlog"; // set default password
$new_password = "wavelog"; // set default password
$result = null;
$worked = openssl_pkey_export($results['pkey'], $result, $new_password);
@@ -957,7 +957,7 @@ class Lotw extends CI_Controller {
$key = $sign_key;
$pkeyid = openssl_pkey_get_private($key, 'cloudlog');
$pkeyid = openssl_pkey_get_private($key, 'wavelog');
//openssl_sign($plaintext, $signature, $pkeyid, OPENSSL_ALGO_SHA1 );
//openssl_free_key($pkeyid);

View File

@@ -33,7 +33,7 @@ class Options extends CI_Controller {
//echo $this->optionslib->get_option('theme');
$data['page_title'] = $this->lang->line('options_cloudlog_options');
$data['page_title'] = $this->lang->line('options_wavelog_options');
$this->load->view('interface_assets/header', $data);
$this->load->view('options/index');
@@ -47,7 +47,7 @@ class Options extends CI_Controller {
$directory = 'application/language';
$data['language_options'] = array_diff(scandir($directory), array('..', '.'));
$data['page_title'] = $this->lang->line('options_cloudlog_options');
$data['page_title'] = $this->lang->line('options_wavelog_options');
$data['sub_heading'] = $this->lang->line('options_appearance');
$this->load->model('Themes_model');
@@ -66,7 +66,7 @@ class Options extends CI_Controller {
$directory = 'application/language';
$data['language_options'] = array_diff(scandir($directory), array('..', '.'));
$data['page_title'] = $this->lang->line('options_cloudlog_options');
$data['page_title'] = $this->lang->line('options_wavelog_options');
$data['sub_heading'] = $this->lang->line('options_appearance');
$this->load->helper(array('form', 'url'));
@@ -138,7 +138,7 @@ class Options extends CI_Controller {
// function used to display the /dxcluster url
function dxcluster() {
$data['page_title'] = $this->lang->line('options_cloudlog_options');
$data['page_title'] = $this->lang->line('options_wavelog_options');
$data['sub_heading'] = $this->lang->line('options_dxcluster_settings');
$this->load->view('interface_assets/header', $data);
@@ -151,7 +151,7 @@ class Options extends CI_Controller {
// Get Language Options
$data['page_title'] = $this->lang->line('options_cloudlog_options');
$data['page_title'] = $this->lang->line('options_wavelog_options');
$data['sub_heading'] = $this->lang->line('options_dxcluster_settings');
$this->load->helper(array('form', 'url'));
@@ -188,7 +188,7 @@ class Options extends CI_Controller {
// function used to display the /radio url
function radio() {
$data['page_title'] = $this->lang->line('options_cloudlog_options');
$data['page_title'] = $this->lang->line('options_wavelog_options');
$data['sub_heading'] = $this->lang->line('options_radio_settings');
$this->load->view('interface_assets/header', $data);
@@ -201,7 +201,7 @@ class Options extends CI_Controller {
// Get Language Options
$data['page_title'] = $this->lang->line('options_cloudlog_options');
$data['page_title'] = $this->lang->line('options_wavelog_options');
$data['sub_heading'] = $this->lang->line('options_radio_settings');
$this->load->helper(array('form', 'url'));
@@ -234,7 +234,7 @@ class Options extends CI_Controller {
// function used to display the /appearance url
function email() {
$data['page_title'] = $this->lang->line('options_cloudlog_options');
$data['page_title'] = $this->lang->line('options_wavelog_options');
$data['sub_heading'] = $this->lang->line('options_email');
$this->load->view('interface_assets/header', $data);
@@ -247,7 +247,7 @@ class Options extends CI_Controller {
// Get Language Options
$data['page_title'] = $this->lang->line('options_cloudlog_options');
$data['page_title'] = $this->lang->line('options_wavelog_options');
$data['sub_heading'] = $this->lang->line('options_email');
$this->load->helper(array('form', 'url'));
@@ -274,7 +274,7 @@ class Options extends CI_Controller {
// Update email sender name within the options system
$emailSenderName_value = $this->input->post('emailSenderName');
if (empty($emailSenderName_value)) {
$emailSenderName_value = 'Cloudlog';
$emailSenderName_value = 'Wavelog';
}
$emailSenderNameupdate = $this->optionslib->update('emailSenderName', $emailSenderName_value, 'yes');
@@ -317,7 +317,7 @@ class Options extends CI_Controller {
function oqrs() {
$data['page_title'] = $this->lang->line('options_cloudlog_options');
$data['page_title'] = $this->lang->line('options_wavelog_options');
$data['sub_heading'] = $this->lang->line('options_oqrs');
$this->load->view('interface_assets/header', $data);
@@ -327,7 +327,7 @@ class Options extends CI_Controller {
function oqrs_save() {
$data['page_title'] = $this->lang->line('options_cloudlog_options');
$data['page_title'] = $this->lang->line('options_wavelog_options');
$data['sub_heading'] = $this->lang->line('options_oqrs');
$this->load->helper(array('form', 'url'));
@@ -377,7 +377,7 @@ class Options extends CI_Controller {
$this->email->from($this->optionslib->get_option('emailAddress'), $this->optionslib->get_option('emailSenderName'));
$this->email->to($email);
$this->email->subject('Cloudlog Test-Mail');
$this->email->subject('Wavelog Test-Mail');
$this->email->message($message);
if (! $this->email->send()){
@@ -395,7 +395,7 @@ class Options extends CI_Controller {
// function used to display the /version_dialog url
function version_dialog() {
$data['page_title'] = $this->lang->line('options_cloudlog_options');
$data['page_title'] = $this->lang->line('options_wavelog_options');
$data['sub_heading'] = $this->lang->line('options_version_dialog_settings');
$this->load->view('interface_assets/header', $data);
@@ -407,7 +407,7 @@ class Options extends CI_Controller {
// Get Language Options
$data['page_title'] = $this->lang->line('options_cloudlog_options');
$data['page_title'] = $this->lang->line('options_wavelog_options');
$data['sub_heading'] = $this->lang->line('options_version_dialog_settings');
$this->load->helper(array('form', 'url'));

View File

@@ -190,7 +190,7 @@ class Oqrs extends CI_Controller {
$this->email->to($email);
$this->email->reply_to($this->security->xss_clean($postdata['email']), strtoupper($data['callsign']));
$this->email->subject('Cloudlog OQRS from ' . strtoupper($data['callsign']));
$this->email->subject('Wavelog OQRS from ' . strtoupper($data['callsign']));
$this->email->message($message);
if (! $this->email->send()) {

View File

@@ -1,7 +1,7 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
Data lookup functions used within Cloudlog
Data lookup functions used within Wavelog
*/
class Qrbcalc extends CI_Controller {

View File

@@ -13,7 +13,7 @@ class Qrz extends CI_Controller {
/*
* Upload QSO to QRZ.com
* When called from the url cloudlog/qrz/upload, the function loops through all station_id's with a qrz api key defined.
* When called from the url wavelog/qrz/upload, the function loops through all station_id's with a qrz api key defined.
* All QSOs not previously uploaded, will then be uploaded, one at a time
*/
public function upload() {

View File

@@ -183,7 +183,7 @@ class Qsl extends CI_Controller {
}
// Functions for storage, these need shifted to a libary to use across Cloudlog
// Functions for storage, these need shifted to a libary to use across Wavelog
function folderSize($dir){
$count_size = 0;
$count = 0;

View File

@@ -2,7 +2,7 @@
class Update extends CI_Controller {
/*
Controls Updating Elements of Cloudlog
Controls Updating Elements of Wavelog
Functions:
dxcc - imports the latest clublog cty.xml data
lotw_users - imports lotw users
@@ -354,7 +354,7 @@ class Update extends CI_Controller {
$f = fopen('./updates/lotw_users.csv', "r");
$result = false;
while ($row = fgetcsv($f)) {
if ($row[0] == '2M0SQL/MM') {
if ($row[0] == '4W7EST/MM') {
$result = $row[0];
echo "found";
break;
@@ -442,7 +442,7 @@ class Update extends CI_Controller {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $csvfile);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_USERAGENT, 'Cloudlog Updater');
curl_setopt($ch, CURLOPT_USERAGENT, 'Wavelog Updater');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$csv = curl_exec($ch);
curl_close($ch);
@@ -486,7 +486,7 @@ class Update extends CI_Controller {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $csvfile);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_USERAGENT, 'Cloudlog Updater');
curl_setopt($ch, CURLOPT_USERAGENT, 'Wavelog Updater');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$csv = curl_exec($ch);
curl_close($ch);

View File

@@ -783,7 +783,7 @@ class User extends CI_Controller {
$this->email->from($this->optionslib->get_option('emailAddress'), $this->optionslib->get_option('emailSenderName'));
$this->email->to($this->input->post('email', true));
$this->email->subject('Cloudlog Account Password Reset');
$this->email->subject('Wavelog Account Password Reset');
$this->email->message($message);
if (! $this->email->send())
@@ -869,7 +869,7 @@ class User extends CI_Controller {
$this->email->from($this->optionslib->get_option('emailAddress'), $this->optionslib->get_option('emailSenderName'));
$this->email->to($data->user_email);
$this->email->subject('Cloudlog Account Password Reset');
$this->email->subject('Wavelog Account Password Reset');
$this->email->message($message);
if (! $this->email->send())

View File

@@ -5,7 +5,7 @@ class Webadif extends CI_Controller {
/*
* Upload QSO to webADIF
* When called from the url cloudlog/webadif/upload, the function loops through all station_id's with a webADIF
* When called from the url wavelog/webadif/upload, the function loops through all station_id's with a webADIF
* api key defined.
* All QSOs not previously uploaded, will then be uploaded, one at a time
*/

View File

@@ -3,7 +3,7 @@
/*
Path: application\controllers\Welcome.php
Displays the welcome to Cloudlog version 2.0 view to help users with migration from version 1.0
Displays the welcome to Wavelog version 2.0 view to help users with migration from version 1.0
*/
@@ -17,7 +17,7 @@ class Welcome extends CI_Controller {
public function index() {
if($this->optionslib->get_option('version2_trigger') == "false") {
$data['page_title'] = "Welcome to Cloudlog Version 2.0";
$data['page_title'] = "Welcome to Wavelog Version 2.0";
// load stations model
$this->load->model('stations');

View File

@@ -7,10 +7,10 @@ defined('BASEPATH') OR exit('No direct script access allowed');
* Extremely simple autoloader helper, has lots of shortcomings
*/
spl_autoload_register(function ($class) {
if (mb_substr($class, 0, 9) !== 'Cloudlog\\') {
if (mb_substr($class, 0, 8) !== 'Wavelog\\') {
return false;
}
$class=substr($class,9);
$class=substr($class,8);
$file = str_replace('\\', DIRECTORY_SEPARATOR, $class).'.php';
$file = __DIR__ . "/../../src/" . $file;
if (file_exists($file)) {

View File

@@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio";
$lang['account_callsign'] = 'Callsign';
$lang['account_gridsquare'] = 'Gridsquare';
$lang['account_cloudlog_preferences'] = 'Cloudlog Preferences';
$lang['account_wavelog_preferences'] = 'Wavelog Preferences';
$lang['account_timezone'] = 'Timezone';
$lang['account_date_format'] = 'Date Format';
$lang['account_log_end_time'] = 'Log End Times for QSOs Separately';
@@ -48,8 +48,8 @@ $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_wavelog_language'] = 'Wavelog Language';
$lang['account_choose_wavelog_language'] = 'Choose Wavelog language.';
$lang['account_main_menu'] = 'Menu Options';
$lang['account_show_notes_in_the_main_menu'] = 'Show notes in the main menu.';
@@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Confirm Password';
$lang['account_forgot_your_password'] = 'Forgot your password?';
$lang['account_login_to_cloudlog'] = 'Login to Cloudlog';
$lang['account_login_to_wavelog'] = 'Login to Wavelog';
$lang['account_login'] = 'Login';
$lang['account_mastodon'] = 'Mastodonserver';
@@ -114,7 +114,7 @@ $lang['account_gridmap_default_band'] = 'Default Band';
$lang['account_qsl_settings'] = 'Default QSL-Methods';
$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_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at <a href='https://github.com/wavelog/wavelog/wiki/Winkey' target='_blank'>https://github.com/wavelog/wavelog/wiki/Winkey</a> before enabling.";
$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled";
$lang['account_map_params'] = "Map Settings";

View File

@@ -41,12 +41,12 @@ $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_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_dxcc_from_adif_hint'] = "If not selected, Wavelog will attempt to determine DXCC information automatically.";
$lang['adif_always_use_login_call_as_op'] = "Always use login-callsign as operator-name on import";
$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_ignore_station_call_hint'] = "If selected, Wavelog will try to import <b>all</b> QSO's of the ADIF, regardless if they match to the chosen station-location.";
$lang['adif_upload'] = "Upload";
@@ -94,10 +94,10 @@ $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['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_hint'] = "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log.";
$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['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Wavelog will be displayed.";
/*
___________________________________________________________________________________________

View File

@@ -2,8 +2,8 @@
defined('BASEPATH') OR exit('Не е разрешен директен достъп до скрипта');
$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_line1'] = 'Wavelog 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 Wavelog 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.";

View File

@@ -49,7 +49,7 @@ ________________________________________________________________________________
$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_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 Wavelog. Be aware that these DXCC entities are outdated and no longer valid.";
/*
@@ -95,7 +95,7 @@ ________________________________________________________________________________
*/
$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_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog.";
$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.";

View File

@@ -110,8 +110,8 @@ $lang['general_total_distance'] = 'Общо разстояние';
// PHP Upload Warning
$lang['gen_max_file_upload_size'] = 'Maximum file upload size is ';
// Cloudlog Terms
$lang['cloudlog_station_profile'] = 'Местоположение на станцията';
// Wavelog Terms
$lang['wavelog_station_profile'] = 'Местоположение на станцията';
// ham radio terms
$lang['gen_hamradio_cq'] = "CQ";

View File

@@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = 'Log files must have the file type .adi'
$lang['lotw_pull_lotw_data_for_me'] = 'Pull LoTW data for me';
$lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for';
$lang['lotw_report_download_overview_helptext'] = 'Cloudlog will use the LoTW username and password stored in your user profile to download a report from LoTW for you. The report Cloudlog downloads will have all confirmations since chosen date, or since your last LoTW confirmation (fetched from your log), up until now.';
$lang['lotw_report_download_overview_helptext'] = 'Wavelog will use the LoTW username and password stored in your user profile to download a report from LoTW for you. The report Wavelog downloads will have all confirmations since chosen date, or since your last LoTW confirmation (fetched from your log), up until now.';
// Buttons
$lang['lotw_btn_lotw_import'] = 'LoTW импорт';

View File

@@ -2,8 +2,8 @@
defined('BASEPATH') OR exit('Не е разрешен директен достъп до скрипта');
$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_wavelog_options'] = 'Wavelog Options';
$lang['options_message1'] = 'Wavelog 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_appearance'] = 'Appearance';
$lang['options_theme'] = 'Theme';
@@ -42,8 +42,8 @@ $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_email_address_hint'] = "The email address from which the emails are sent, e.g. 'wavelog@example.com'";
$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Wavelog'";
$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.";

View File

@@ -25,7 +25,7 @@ $lang['qso_sig_info_helptext'] = 'Например: DA/NW-357';
$lang['qso_dok_helptext'] = 'Например: Q03';
$lang['qso_notes_helptext'] = 'Съдържанието на бележката се използва само в Cloudlog и не се експортира в други услуги.';
$lang['qso_notes_helptext'] = 'Съдържанието на бележката се използва само в Wavelog и не се експортира в други услуги.';
$lang['qsl_notes_helptext'] = 'This note content is exported to QSL services like eqsl.cc.';
$lang['qso_eqsl_qslmsg_helptext'] = "Get the default message for eQSL, for this station.";
@@ -53,7 +53,7 @@ $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_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 Wavelog. 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";
@@ -67,7 +67,7 @@ $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_save'] = "Save in Wavelog";
$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";
@@ -91,7 +91,7 @@ $lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please n
$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_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST 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.";

View File

@@ -22,7 +22,7 @@ $lang['station_logbooks_confirm_delete'] = "Are you sure you want to delete the
$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_hint'] = "Shortname for the station logbook. For example: Home Log (HM54ip)";
$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.";
@@ -57,11 +57,11 @@ $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_warning_reassign'] = 'Due to recent changes within Wavelog 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_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)';
$lang['station_location_callsign'] = 'Station Callsign';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/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';
@@ -82,7 +82,7 @@ $lang['station_location_state_hint'] = 'Station state. Applies to certain countr
$lang['station_location_county'] = 'Station County';
$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';
$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_ln1'] = "Station gridsquare. For example: HM54ip. 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.";

View File

@@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "HAM信息";
$lang['account_callsign'] = '呼号';
$lang['account_gridsquare'] = '网格坐标';
$lang['account_cloudlog_preferences'] = '偏好';
$lang['account_wavelog_preferences'] = '偏好';
$lang['account_timezone'] = '时区';
$lang['account_date_format'] = '日期格式';
$lang['account_log_end_time'] = '单独记录QSO结束时间';
@@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "查询呼号";
$lang['account_measurement_preferences'] = '距离单位选择';
$lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = '选择您登录账户时显示偏好的日期格式';
$lang['account_choose_which_unit_distances_will_be_shown_in'] = '选择距离单位';
$lang['account_cloudlog_language'] = 'Cloudlog语言';
$lang['account_choose_cloudlog_language'] = '选择Cloudlog语言';
$lang['account_wavelog_language'] = 'Wavelog语言';
$lang['account_choose_wavelog_language'] = '选择Wavelog语言';
$lang['account_main_menu'] = '主菜单';
$lang['account_show_notes_in_the_main_menu'] = '在主菜单显示便签';
@@ -102,7 +102,7 @@ $lang['account_confirm_password'] = '确认密码';
$lang['account_forgot_your_password'] = '忘记密码?';
$lang['account_login_to_cloudlog'] = '登录Cloudlog';
$lang['account_login_to_wavelog'] = '登录Wavelog';
$lang['account_login'] = '登录';
$lang['account_mastodon'] = 'Mastodon服务器';
@@ -114,7 +114,7 @@ $lang['account_gridmap_default_band'] = '默认波段';
$lang['account_qsl_settings'] = '默认QSL方式';
$lang['account_winkeyer'] = 'Winkeyer';
$lang['account_winkeyer_hint'] = "Cloudlog 中对 Winkeyer 的支持是实验性的,请在使用前先阅读 <a href='https://github.com/magicbug/Cloudlog/wiki/Winkey' target='_blank'>https://github.com/magicbug/Cloudlog/wiki/Winkey</a>";
$lang['account_winkeyer_hint'] = "Wavelog 中对 Winkeyer 的支持是实验性的,请在使用前先阅读 <a href='https://github.com/wavelog/wavelog/wiki/Winkey' target='_blank'>https://github.com/wavelog/wavelog/wiki/Winkey</a>";
$lang['account_winkeyer_enabled'] = "启用 Winkeyer 功能";
$lang['account_map_params'] = "地图设置";

View File

@@ -41,12 +41,12 @@ $lang['adif_mark_imported_qrz'] = "标记导入的QSO为已上传至 QRZ Logbook
$lang['adif_mark_imported_clublog'] = "标记导入的QSO为已上传至 Clublog Logbook";
$lang['adif_dxcc_from_adif'] = "使用ADIF文件中的DXCC信息";
$lang['adif_dxcc_from_adif_hint'] = "如果不选择,Cloudlog将会自动判断QSO的DXCC";
$lang['adif_dxcc_from_adif_hint'] = "如果不选择,Wavelog将会自动判断QSO的DXCC";
$lang['adif_always_use_login_call_as_op'] = "总是在导入时使用登录的呼号作为操作者名称";
$lang['adif_ignore_station_call'] = "导入时忽略台站的呼号";
$lang['adif_ignore_station_call_hint'] = "如果选择,Cloudlog会尝试导入ADIF文件中的 <b>所有</b> QSO而不判断是否与所选台站位置匹配";
$lang['adif_ignore_station_call_hint'] = "如果选择,Wavelog会尝试导入ADIF文件中的 <b>所有</b> QSO而不判断是否与所选台站位置匹配";
$lang['adif_upload'] = "上传";
@@ -94,10 +94,10 @@ $lang['only_confirmed_qsos'] = "仅导入在 DCL 上确认的 QSO 的 DOK 数据
$lang['only_confirmed_qsos_hint'] = "如果您还想使用 DCL 中未经确认的 QSO 的数据更新 DOK请取消选中";
$lang['overwrite_by_dcl'] = "用 DCL 覆盖日志中现有的 DOC如果不同";
$lang['overwrite_by_dcl_hint'] = "如果选中,Cloudlog 将使用 DCL 日志中的 DOK 强制覆盖现有的 DOK 信息。";
$lang['overwrite_by_dcl_hint'] = "如果选中,Wavelog 将使用 DCL 日志中的 DOK 强制覆盖现有的 DOK 信息。";
$lang['ignore_ambiguous'] = "忽略无法匹配的 QSO";
$lang['ignore_ambiguous_hint'] = "如果不勾选,会显示 Cloudlog 中无法匹配的 QSO 信息";
$lang['ignore_ambiguous_hint'] = "如果不勾选,会显示 Wavelog 中无法匹配的 QSO 信息";
/*
___________________________________________________________________________________________

View File

@@ -2,8 +2,8 @@
defined('BASEPATH') OR exit('No direct script access allowed');
$lang['admin_user_line1'] = 'Cloudlog至少需要配置一个用户才能运行。';
$lang['admin_user_line2'] = '用户可以被分配不同的角色,这些角色赋予他们不同的权限,例如向日志簿添加 QSO 和访问Cloudlog API。';
$lang['admin_user_line1'] = 'Wavelog至少需要配置一个用户才能运行。';
$lang['admin_user_line2'] = '用户可以被分配不同的角色,这些角色赋予他们不同的权限,例如向日志簿添加 QSO 和访问Wavelog API。';
$lang['admin_user_line3'] = '页面右上方显示当前登录的用户。';
$lang['admin_user_line4'] = "通过'重置密码'按钮,你可以向用户发送一封带有重置密码链接的邮件。您需要确保全局设定中的邮件设置配置正确";

View File

@@ -49,7 +49,7 @@ ________________________________________________________________________________
$lang['awards_dxcc_description_ln1'] = "DXCC 奖状";
$lang['awards_dxcc_description_ln2'] = "DXCC 代表“DX Century Club”这是一个基于通联国家/地区的奖项 DXCC 列表基于 W1CBD 的 Clinton B. DeSoto 于 1935 编写的一篇文章,标题为<a href='http://www.arrl.org/desoto' target='_blank'>“如何计算通联过的国家/地区, 新的 DX 评分系统'</a>";
$lang['awards_dxcc_description_ln3'] = "您可以在 <a href='https://www.arrl.org/dxcc-rules' target='_blank'>ARRL 网站</a>上找到有关 DXCC 奖的所有信息";
$lang['awards_dxcc_description_ln4'] = "重要提示随着时间的推移DXCC 列表的标准已经发生变化 该列表将保持不变,直到实体不再满足添加该实体时所依据的标准,此时该实体将被移至“已删除列表” 您还会在 Cloudlog 的列表中找到已删除的 DXCC 实体 请注意,这些 DXCC 实体已过时且不再有效(如 伪满洲国曾经也是一个合法的DXCC实体";
$lang['awards_dxcc_description_ln4'] = "重要提示随着时间的推移DXCC 列表的标准已经发生变化 该列表将保持不变,直到实体不再满足添加该实体时所依据的标准,此时该实体将被移至“已删除列表” 您还会在 Wavelog 的列表中找到已删除的 DXCC 实体 请注意,这些 DXCC 实体已过时且不再有效(如 伪满洲国曾经也是一个合法的DXCC实体";
/*
@@ -95,7 +95,7 @@ ________________________________________________________________________________
*/
$lang['awards_sig_description_ln1'] = "SIG 信息";
$lang['awards_sig_description_ln2'] = "SIG 或签名类别提供了对 Cloudlog 中未实施的奖励使用任何类型的“奖励签名”的可能";
$lang['awards_sig_description_ln2'] = "SIG 或签名类别提供了对 Wavelog 中未实施的奖励使用任何类型的“奖励签名”的可能";
$lang['awards_sig_description_ln3'] = "其原因是常见的 ADIF 格式仅为某些奖项提供了几个专用字段 SIG 仍然可以使用和评估所有其他类型的签名标记";
$lang['awards_sig_description_ln4'] = "在 QSO 处理中您会发现两个字段“SIG”包含实际标记在奖励评估中也可见“SIG INFO”包含签名的描述 这两个字段都可以自由定制";

View File

@@ -110,8 +110,8 @@ $lang['general_total_distance'] = '总计距离';
// PHP Upload Warning
$lang['gen_max_file_upload_size'] = '最大上传文件大小是';
// Cloudlog Terms
$lang['cloudlog_station_profile'] = '电台站地址';
// Wavelog Terms
$lang['wavelog_station_profile'] = '电台站地址';
// ham radio terms
$lang['gen_hamradio_cq'] = "CQ";

View File

@@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = '日志文件的类型必须为 .adi';
$lang['lotw_pull_lotw_data_for_me'] = '为我拉取 LoTW 数据';
$lang['lotw_select_callsign'] = '选择呼号以获取 LoTW 确认';
$lang['lotw_report_download_overview_helptext'] ='Cloudlog 将会使用储存在你个人用户信息当中的 LoTW 用户名和密码从 LoTW 上为你下载报告Cloudlog 下载的这份报告将会包括自你所选之日以来的或者你最后的 LoTW 确认信息(目前日志当中)以来的所有确认';
$lang['lotw_report_download_overview_helptext'] ='Wavelog 将会使用储存在你个人用户信息当中的 LoTW 用户名和密码从 LoTW 上为你下载报告Wavelog 下载的这份报告将会包括自你所选之日以来的或者你最后的 LoTW 确认信息(目前日志当中)以来的所有确认';
// Buttons
$lang['lotw_btn_lotw_import'] = 'LoTW 导入';

View File

@@ -2,7 +2,7 @@
defined('BASEPATH') OR exit('No direct script access allowed');
$lang['options_cloudlog_options'] = 'Cloudlog 设置';
$lang['options_wavelog_options'] = 'Wavelog 设置';
$lang['options_message1'] = '本设置是针对所有用户的全局设置,会覆盖对于单个用户的设置。';
$lang['options_appearance'] = '外观';
@@ -42,8 +42,8 @@ $lang['options_mail_settings_saved'] = "设置已保存";
$lang['options_mail_settings_failed'] = "保存时出现问题,请重试";
$lang['options_outgoing_protocol_hint'] = "发送邮件时使用的协议";
$lang['options_smtp_encryption_hint'] = "选择邮件将会通过TLS还是SSL发送";
$lang['options_email_address_hint'] = "发送邮件的邮箱地址,例如:'cloudlog@example.com'";
$lang['options_email_sender_name_hint'] = "发送者的名字,例如:'Cloudlog'";
$lang['options_email_address_hint'] = "发送邮件的邮箱地址,例如:'wavelog@example.com'";
$lang['options_email_sender_name_hint'] = "发送者的名字,例如:'Wavelog'";
$lang['options_smtp_host_hint'] = "邮件服务器的域名,例如:'mail.example.com' (不带'ssl://'或'tls://')";
$lang['options_smtp_port_hint'] = "邮件服务器的SMTP端口例如如果使用了TLS -> '587'如果使用了SSL -> '465'";
$lang['options_smtp_username_hint'] = "登录邮件服务器的用户名,通常情况下,这和发送邮件的邮箱地址相同";

View File

@@ -25,7 +25,7 @@ $lang['qso_sig_info_helptext'] = '例如: DA/NW-357';
$lang['qso_dok_helptext'] = '例如: Q03';
$lang['qso_notes_helptext'] = '仅在 Cloudlog 使用而不上传到其他的服务的笔记。';
$lang['qso_notes_helptext'] = '仅在 Wavelog 使用而不上传到其他的服务的笔记。';
$lang['qsl_notes_helptext'] = '此笔记内容被导出到QSL服务如 eqsl.cc。';
$lang['qso_eqsl_qslmsg_helptext'] = "获取该站的 eQSL 默认消息。";
@@ -53,7 +53,7 @@ $lang['qso_simplefle_info'] = "这是什么?";
$lang['qso_simplefle_info_ln1'] = "简单快速日志输入 (FLE)";
$lang['qso_simplefle_info_ln2'] = "“快速日志输入”或简称“FLE”是一个非常快速、高效地记录 QSO 的系统。 由于其语法,只需最少的输入即可以尽可能少的努力记录许多 QSO。";
$lang['qso_simplefle_info_ln3'] = "FLE 最初由 DF3CB 编写。 他在他的网站上提供了一个适用于 Windows 的程序。 Simple FLE 是 OK2CQR 基于 DF3CB 的 FLE 编写的,并提供了一个 Web 界面来记录 QSO。";
$lang['qso_simplefle_info_ln4'] = "一个常见的用例是,如果您必须野架之后将纸质日志导入电脑,现在 Cloudlog 中也提供了 SimpleFLE。 有关语法和 FLE 工作原理的信息可以在<a href='https://df3cb.com/fle/documentation/' target='_blank'>此处</a>找到。";
$lang['qso_simplefle_info_ln4'] = "一个常见的用例是,如果您必须野架之后将纸质日志导入电脑,现在 Wavelog 中也提供了 SimpleFLE。 有关语法和 FLE 工作原理的信息可以在<a href='https://df3cb.com/fle/documentation/' target='_blank'>此处</a>找到。";
$lang['qso_simplefle_qso_data'] = "QSO 数据";
$lang['qso_simplefle_qso_date_hint'] = "如果您不选择日期,则将使用今天的日期。";
$lang['qso_simplefle_qso_list'] = "QSO 列表";

View File

@@ -22,7 +22,7 @@ $lang['station_logbooks_confirm_delete'] = "确定删除此台站日志?你可
$lang['station_logbooks_view_public'] = "浏览日志公开页: ";
$lang['station_logbooks_create_name'] = "台站日志名称";
$lang['station_logbooks_create_name_hint'] = "你可以随意称呼你的台站日志";
$lang['station_logbooks_edit_name_hint'] = "台站位置简称例如Home Log (IO87IP)";
$lang['station_logbooks_edit_name_hint'] = "台站位置简称例如Home Log (HM54ip)";
$lang['station_logbooks_edit_name_update'] = "更新台站日志名称";
$lang['station_logbooks_public_slug'] = "自定义日志链接";
$lang['station_logbooks_public_slug_hint'] = "通过自定义日志链接,你可以通过此链接让别人访问你的日志";
@@ -57,11 +57,11 @@ $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_warning_reassign'] = 'Due to recent changes within Wavelog 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_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)';
$lang['station_location_callsign'] = 'Station Callsign';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/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';
@@ -82,7 +82,7 @@ $lang['station_location_state_hint'] = 'Station state. Applies to certain countr
$lang['station_location_county'] = 'Station County';
$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';
$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_ln1'] = "Station gridsquare. For example: HM54ip. 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.";

View File

@@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio";
$lang['account_callsign'] = 'Značka';
$lang['account_gridsquare'] = 'Locátor';
$lang['account_cloudlog_preferences'] = 'Nastavení Cloudlogu';
$lang['account_wavelog_preferences'] = 'Nastavení Wavelogu';
$lang['account_timezone'] = 'Časové pásmo';
$lang['account_date_format'] = 'Formát data';
$lang['account_log_end_time'] = 'Log End Times for QSOs Separately';
@@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Search Callsign";
$lang['account_measurement_preferences'] = 'Nastavení měření';
$lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Vyberte, jak chcete, aby byla data zobrazena při přihlášení do vašeho účtu.';
$lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Vyberte, v jakých jednotkách se budou zobrazovat vzdálenosti.';
$lang['account_cloudlog_language'] = 'Cloudlog Language';
$lang['account_choose_cloudlog_language'] = 'Choose Cloudlog language.';
$lang['account_wavelog_language'] = 'Wavelog Language';
$lang['account_choose_wavelog_language'] = 'Choose Wavelog language.';
$lang['account_main_menu'] = 'Hlavní menu';
$lang['account_show_notes_in_the_main_menu'] = 'Zobrazovat poznámky v hlavním menu.';
@@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Potvrzení hesla';
$lang['account_forgot_your_password'] = 'Zapomněli jste heslo?';
$lang['account_login_to_cloudlog'] = 'Přihlásit se do Cloudlogu';
$lang['account_login_to_wavelog'] = 'Přihlásit se do Wavelogu';
$lang['account_login'] = 'Přihlásit se';
$lang['account_mastodon'] = 'Mastodon server';
@@ -114,7 +114,7 @@ $lang['account_gridmap_default_band'] = 'Výchozí pásma';
$lang['account_qsl_settings'] = 'Default QSL-Methods';
$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_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at <a href='https://github.com/wavelog/wavelog/wiki/Winkey' target='_blank'>https://github.com/wavelog/wavelog/wiki/Winkey</a> before enabling.";
$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled";
$lang['account_map_params'] = "Map Settings";

View File

@@ -41,12 +41,12 @@ $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_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_dxcc_from_adif_hint'] = "If not selected, Wavelog will attempt to determine DXCC information automatically.";
$lang['adif_always_use_login_call_as_op'] = "Always use login-callsign as operator-name on import";
$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_ignore_station_call_hint'] = "If selected, Wavelog will try to import <b>all</b> QSO's of the ADIF, regardless if they match to the chosen station-location.";
$lang['adif_upload'] = "Upload";
@@ -94,10 +94,10 @@ $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['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_hint'] = "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log.";
$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['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Wavelog will be displayed.";
/*
___________________________________________________________________________________________

View File

@@ -2,8 +2,8 @@
defined('BASEPATH') OR exit('No direct script access allowed');
$lang['admin_user_line1'] = 'Cloudlog potřebuje alespoň jednoho uživatele nastaveného pro svůj provoz.';
$lang['admin_user_line2'] = 'Uživatelům mohou být přiděleny role, které jim udělují různá oprávnění, jako je přidávání QSO do logu a přístup k Cloudlog API.';
$lang['admin_user_line1'] = 'Wavelog potřebuje alespoň jednoho uživatele nastaveného pro svůj provoz.';
$lang['admin_user_line2'] = 'Uživatelům mohou být přiděleny role, které jim udělují různá oprávnění, jako je přidávání QSO do logu a přístup k Wavelog API.';
$lang['admin_user_line3'] = 'Nyní přihlášený uživatel je zobrazen v pravém horním rohu každé stránky.';
$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.";

View File

@@ -49,7 +49,7 @@ ________________________________________________________________________________
$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_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 Wavelog. Be aware that these DXCC entities are outdated and no longer valid.";
/*
@@ -95,7 +95,7 @@ ________________________________________________________________________________
*/
$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_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog.";
$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.";

View File

@@ -110,8 +110,8 @@ $lang['general_total_distance'] = 'Celková vzdálenost';
// PHP Upload Warning
$lang['gen_max_file_upload_size'] = 'Maximum file upload size is ';
// Cloudlog Terms
$lang['cloudlog_station_profile'] = 'Umístění stanice';
// Wavelog Terms
$lang['wavelog_station_profile'] = 'Umístění stanice';
// ham radio terms
$lang['gen_hamradio_cq'] = "CQ";

View File

@@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = 'Deník musí být ve formátu .adi';
$lang['lotw_pull_lotw_data_for_me'] = 'Stáhni data z LoTW';
$lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for';
$lang['lotw_report_download_overview_helptext'] ='Cloudlog použije uživatelské jméno a heslo LoTW uložené ve vašem uživatelském profilu, aby vám stáhl datz LoTW.Stažen budu data od nastaveného datumu nebo od posledního stažení až do teď.';
$lang['lotw_report_download_overview_helptext'] ='Wavelog použije uživatelské jméno a heslo LoTW uložené ve vašem uživatelském profilu, aby vám stáhl datz LoTW.Stažen budu data od nastaveného datumu nebo od posledního stažení až do teď.';
// Buttons
$lang['lotw_btn_lotw_import'] = 'Import z LoTW';

View File

@@ -2,8 +2,8 @@
defined('BASEPATH') OR exit('No direct script access allowed');
$lang['options_cloudlog_options'] = 'Možnosti Cloudlogu';
$lang['options_message1'] = 'Možnosti Cloudlogu jsou globální nastavení používaná pro všechny uživatele instalace, která jsou přepsána, pokud je nastavení na úrovni uživatele.';
$lang['options_wavelog_options'] = 'Možnosti Wavelogu';
$lang['options_message1'] = 'Možnosti Wavelogu jsou globální nastavení používaná pro všechny uživatele instalace, která jsou přepsána, pokud je nastavení na úrovni uživatele.';
$lang['options_appearance'] = 'Vzhled';
$lang['options_theme'] = 'Téma';
@@ -42,8 +42,8 @@ $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_email_address_hint'] = "The email address from which the emails are sent, e.g. 'wavelog@example.com'";
$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Wavelog'";
$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.";

View File

@@ -25,7 +25,7 @@ $lang['qso_sig_info_helptext'] = 'Příklad: DA/NW-357';
$lang['qso_dok_helptext'] = 'Příklad: Q03';
$lang['qso_notes_helptext'] = 'Obsah je užíván pouze Cloudlogu a není exportován do dalších služeb.';
$lang['qso_notes_helptext'] = 'Obsah je užíván pouze Wavelogu a není exportován do dalších služeb.';
$lang['qsl_notes_helptext'] = 'This note content is exported to QSL services like eqsl.cc.';
$lang['qso_eqsl_qslmsg_helptext'] = "Get the default message for eQSL, for this station.";
@@ -53,7 +53,7 @@ $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_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 Wavelog. 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";
@@ -67,7 +67,7 @@ $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_save'] = "Save in Wavelog";
$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";
@@ -91,7 +91,7 @@ $lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please n
$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_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST 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.";

View File

@@ -22,7 +22,7 @@ $lang['station_logbooks_confirm_delete'] = "Are you sure you want to delete the
$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_hint'] = "Shortname for the station logbook. For example: Home Log (HM54ip)";
$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.";
@@ -57,11 +57,11 @@ $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_warning_reassign'] = 'Due to recent changes within Wavelog 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_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)';
$lang['station_location_callsign'] = 'Station Callsign';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/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';
@@ -82,7 +82,7 @@ $lang['station_location_state_hint'] = 'Station state. Applies to certain countr
$lang['station_location_county'] = 'Station County';
$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';
$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_ln1'] = "Station gridsquare. For example: HM54ip. 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.";

View File

@@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio";
$lang['account_callsign'] = 'Callsign';
$lang['account_gridsquare'] = 'Gridsquare';
$lang['account_cloudlog_preferences'] = 'Cloudlog Preferences';
$lang['account_wavelog_preferences'] = 'Wavelog Preferences';
$lang['account_timezone'] = 'Timezone';
$lang['account_date_format'] = 'Date Format';
$lang['account_log_end_time'] = 'Log End Times for QSOs Separately';
@@ -48,8 +48,8 @@ $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_wavelog_language'] = 'Wavelog Language';
$lang['account_choose_wavelog_language'] = 'Choose Wavelog language.';
$lang['account_main_menu'] = 'Menu Options';
$lang['account_show_notes_in_the_main_menu'] = 'Show notes in the main menu.';
@@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Confirm Password';
$lang['account_forgot_your_password'] = 'Forgot your password?';
$lang['account_login_to_cloudlog'] = 'Login to Cloudlog';
$lang['account_login_to_wavelog'] = 'Login to Wavelog';
$lang['account_login'] = 'Login';
$lang['account_mastodon'] = 'Mastodonserver';
@@ -114,7 +114,7 @@ $lang['account_gridmap_default_band'] = 'Default Band';
$lang['account_qsl_settings'] = 'Default QSL-Methods';
$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_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at <a href='https://github.com/wavelog/wavelog/wiki/Winkey' target='_blank'>https://github.com/wavelog/wavelog/wiki/Winkey</a> before enabling.";
$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled";
$lang['account_map_params'] = "Map Settings";

View File

@@ -41,12 +41,12 @@ $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_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_dxcc_from_adif_hint'] = "If not selected, Wavelog will attempt to determine DXCC information automatically.";
$lang['adif_always_use_login_call_as_op'] = "Always use login-callsign as operator-name on import";
$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_ignore_station_call_hint'] = "If selected, Wavelog will try to import <b>all</b> QSO's of the ADIF, regardless if they match to the chosen station-location.";
$lang['adif_upload'] = "Upload";
@@ -94,10 +94,10 @@ $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['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_hint'] = "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log.";
$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['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Wavelog will be displayed.";
/*
___________________________________________________________________________________________

View File

@@ -2,8 +2,8 @@
defined('BASEPATH') OR exit('Directe toegang tot scripts is niet toegestaan');
$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_line1'] = 'Wavelog 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 Wavelog 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.";

View File

@@ -49,7 +49,7 @@ ________________________________________________________________________________
$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_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 Wavelog. Be aware that these DXCC entities are outdated and no longer valid.";
/*
@@ -95,7 +95,7 @@ ________________________________________________________________________________
*/
$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_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog.";
$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.";

View File

@@ -110,8 +110,8 @@ $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'] = 'Station Profiel';
// Wavelog Terms
$lang['wavelog_station_profile'] = 'Station Profiel';
// ham radio terms
$lang['gen_hamradio_cq'] = "CQ";

View File

@@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = 'Log files must have the file type .adi'
$lang['lotw_pull_lotw_data_for_me'] = 'Pull LoTW data for me';
$lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for';
$lang['lotw_report_download_overview_helptext'] = 'Cloudlog will use the LoTW username and password stored in your user profile to download a report from LoTW for you. The report Cloudlog downloads will have all confirmations since chosen date, or since your last LoTW confirmation (fetched from your log), up until now.';
$lang['lotw_report_download_overview_helptext'] = 'Wavelog will use the LoTW username and password stored in your user profile to download a report from LoTW for you. The report Wavelog downloads will have all confirmations since chosen date, or since your last LoTW confirmation (fetched from your log), up until now.';
// Buttons
$lang['lotw_btn_lotw_import'] = 'LoTW Import';

View File

@@ -2,8 +2,8 @@
defined('BASEPATH') OR exit('Directe toegang tot scripts is niet toegestaan');
$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_wavelog_options'] = 'Wavelog Options';
$lang['options_message1'] = 'Wavelog 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_appearance'] = 'Appearance';
$lang['options_theme'] = 'Theme';
@@ -42,8 +42,8 @@ $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_email_address_hint'] = "The email address from which the emails are sent, e.g. 'wavelog@example.com'";
$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Wavelog'";
$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.";

View File

@@ -25,7 +25,7 @@ $lang['qso_sig_info_helptext'] = 'Bijvoorbeeld: DA/NW-357';
$lang['qso_dok_helptext'] = 'Bijvoorbeeld: Q03';
$lang['qso_notes_helptext'] = 'Notities worden alleen in Cloudlog gebruikt en worden niet geexporteerd naar andere diensten.';
$lang['qso_notes_helptext'] = 'Notities worden alleen in Wavelog gebruikt en worden niet geexporteerd naar andere diensten.';
$lang['qsl_notes_helptext'] = 'This note content is exported to QSL services like eqsl.cc.';
$lang['qso_eqsl_qslmsg_helptext'] = "Get the default message for eQSL, for this station.";
@@ -53,7 +53,7 @@ $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_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 Wavelog. 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";
@@ -67,7 +67,7 @@ $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_save'] = "Save in Wavelog";
$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";
@@ -91,7 +91,7 @@ $lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please n
$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_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST 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.";

View File

@@ -22,7 +22,7 @@ $lang['station_logbooks_confirm_delete'] = "Are you sure you want to delete the
$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_hint'] = "Shortname for the station logbook. For example: Home Log (HM54ip)";
$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.";
@@ -57,11 +57,11 @@ $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_warning_reassign'] = 'Due to recent changes within Wavelog 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_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)';
$lang['station_location_callsign'] = 'Station Callsign';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/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';
@@ -82,7 +82,7 @@ $lang['station_location_state_hint'] = 'Station state. Applies to certain countr
$lang['station_location_county'] = 'Station County';
$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';
$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_ln1'] = "Station gridsquare. For example: HM54ip. 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.";

View File

@@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio";
$lang['account_callsign'] = 'Callsign';
$lang['account_gridsquare'] = 'Gridsquare';
$lang['account_cloudlog_preferences'] = 'Cloudlog Preferences';
$lang['account_wavelog_preferences'] = 'Wavelog Preferences';
$lang['account_timezone'] = 'Timezone';
$lang['account_date_format'] = 'Date Format';
$lang['account_log_end_time'] = 'Log End Times for QSOs Separately';
@@ -48,8 +48,8 @@ $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_wavelog_language'] = 'Wavelog Language';
$lang['account_choose_wavelog_language'] = 'Choose Wavelog language.';
$lang['account_main_menu'] = 'Menu Options';
$lang['account_show_notes_in_the_main_menu'] = 'Show notes in the main menu.';
@@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Confirm Password';
$lang['account_forgot_your_password'] = 'Forgot your password?';
$lang['account_login_to_cloudlog'] = 'Login to Cloudlog';
$lang['account_login_to_wavelog'] = 'Login to Wavelog';
$lang['account_login'] = 'Login';
$lang['account_mastodon'] = 'Mastodonserver';
@@ -114,7 +114,7 @@ $lang['account_gridmap_default_band'] = 'Default Band';
$lang['account_qsl_settings'] = 'Default QSL-Methods';
$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_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at <a href='https://github.com/wavelog/wavelog/wiki/Winkey' target='_blank'>https://github.com/wavelog/wavelog/wiki/Winkey</a> before enabling.";
$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled";
$lang['account_map_params'] = "Map Settings";

View File

@@ -41,12 +41,12 @@ $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_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_dxcc_from_adif_hint'] = "If not selected, Wavelog will attempt to determine DXCC information automatically.";
$lang['adif_always_use_login_call_as_op'] = "Always use login-callsign as operator-name on import";
$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_ignore_station_call_hint'] = "If selected, Wavelog will try to import <b>all</b> QSO's of the ADIF, regardless if they match to the chosen station-location.";
$lang['adif_upload'] = "Upload";
@@ -94,10 +94,10 @@ $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['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_hint'] = "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log.";
$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['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Wavelog will be displayed.";
/*
___________________________________________________________________________________________

View File

@@ -2,8 +2,8 @@
defined('BASEPATH') OR exit('No direct script access allowed');
$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_line1'] = 'Wavelog 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 Wavelog 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.";

View File

@@ -49,7 +49,7 @@ ________________________________________________________________________________
$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_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 Wavelog. Be aware that these DXCC entities are outdated and no longer valid.";
/*
@@ -95,7 +95,7 @@ ________________________________________________________________________________
*/
$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_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog.";
$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.";

View File

@@ -110,8 +110,8 @@ $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'] = 'Station Location';
// Wavelog Terms
$lang['wavelog_station_profile'] = 'Station Location';
// ham radio terms
$lang['gen_hamradio_cq'] = "CQ";

View File

@@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = 'Log files must have the file type .adi'
$lang['lotw_pull_lotw_data_for_me'] = 'Pull LoTW data for me';
$lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for';
$lang['lotw_report_download_overview_helptext'] = 'Cloudlog will use the LoTW username and password stored in your user profile to download a report from LoTW for you. The report Cloudlog downloads will have all confirmations since chosen date, or since your last LoTW confirmation (fetched from your log), up until now.';
$lang['lotw_report_download_overview_helptext'] = 'Wavelog will use the LoTW username and password stored in your user profile to download a report from LoTW for you. The report Wavelog downloads will have all confirmations since chosen date, or since your last LoTW confirmation (fetched from your log), up until now.';
// Buttons
$lang['lotw_btn_lotw_import'] = 'LoTW Import';

View File

@@ -2,8 +2,8 @@
defined('BASEPATH') OR exit('No direct script access allowed');
$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_wavelog_options'] = 'Wavelog Options';
$lang['options_message1'] = 'Wavelog 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_appearance'] = 'Appearance';
$lang['options_theme'] = 'Theme';
@@ -42,8 +42,8 @@ $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_email_address_hint'] = "The email address from which the emails are sent, e.g. 'wavelog@example.com'";
$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Wavelog'";
$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.";

View File

@@ -25,7 +25,7 @@ $lang['qso_sig_info_helptext'] = 'For example: DA/NW-357';
$lang['qso_dok_helptext'] = 'For example: Q03';
$lang['qso_notes_helptext'] = 'Note content is used within Cloudlog only and is not exported to other services.';
$lang['qso_notes_helptext'] = 'Note content is used within Wavelog only and is not exported to other services.';
$lang['qsl_notes_helptext'] = 'This note content is exported to QSL services like eqsl.cc.';
$lang['qso_eqsl_qslmsg_helptext'] = "Get the default message for eQSL, for this station.";
@@ -53,7 +53,7 @@ $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_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 Wavelog. 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";
@@ -67,7 +67,7 @@ $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_save'] = "Save in Wavelog";
$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";
@@ -91,7 +91,7 @@ $lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please n
$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_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST 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.";

View File

@@ -22,7 +22,7 @@ $lang['station_logbooks_confirm_delete'] = "Are you sure you want to delete the
$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_hint'] = "Shortname for the station logbook. For example: Home Log (HM54ip)";
$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.";
@@ -57,11 +57,11 @@ $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_warning_reassign'] = 'Due to recent changes within Wavelog 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_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)';
$lang['station_location_callsign'] = 'Station Callsign';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/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';
@@ -82,7 +82,7 @@ $lang['station_location_state_hint'] = 'Station state. Applies to certain countr
$lang['station_location_county'] = 'Station County';
$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';
$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_ln1'] = "Station gridsquare. For example: HM54ip. 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.";

View File

@@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio";
$lang['account_callsign'] = 'Radioamatöörikutsu';
$lang['account_gridsquare'] = 'Gridsquare';
$lang['account_cloudlog_preferences'] = 'Cloudlog Asetukset';
$lang['account_wavelog_preferences'] = 'Wavelog Asetukset';
$lang['account_timezone'] = 'Aikavyöhyke';
$lang['account_date_format'] = 'Päivämäärämuoto';
$lang['account_log_end_time'] = 'Log End Times for QSOs Separately';
@@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Search Callsign";
$lang['account_measurement_preferences'] = 'Mittayksikkömuoto';
$lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Valitse, miten haluat päivämäärät näkyvän, kun olet kirjautunut tilillesi.';
$lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Valitse, mitä mittayksikkömuotoa käytetään';
$lang['account_cloudlog_language'] = 'Cloudlog Language';
$lang['account_choose_cloudlog_language'] = 'Choose Cloudlog language.';
$lang['account_wavelog_language'] = 'Wavelog Language';
$lang['account_choose_wavelog_language'] = 'Choose Wavelog language.';
$lang['account_main_menu'] = 'Menu Options';
$lang['account_show_notes_in_the_main_menu'] = 'Näytä "Muistio" päävalikossa.';
@@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Vahvista salasana';
$lang['account_forgot_your_password'] = 'Salasana unohtunut?';
$lang['account_login_to_cloudlog'] = 'Kirjaudu Cloudlogiin';
$lang['account_login_to_wavelog'] = 'Kirjaudu Wavelogiin';
$lang['account_login'] = 'Kirjaudu';
$lang['account_mastodon'] = 'Mastodonserver';
@@ -114,7 +114,7 @@ $lang['account_gridmap_default_band'] = 'Oletusbandi';
$lang['account_qsl_settings'] = 'Default QSL-Methods';
$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_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at <a href='https://github.com/wavelog/wavelog/wiki/Winkey' target='_blank'>https://github.com/wavelog/wavelog/wiki/Winkey</a> before enabling.";
$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled";
$lang['account_map_params'] = "Map Settings";

View File

@@ -41,12 +41,12 @@ $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_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_dxcc_from_adif_hint'] = "If not selected, Wavelog will attempt to determine DXCC information automatically.";
$lang['adif_always_use_login_call_as_op'] = "Always use login-callsign as operator-name on import";
$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_ignore_station_call_hint'] = "If selected, Wavelog will try to import <b>all</b> QSO's of the ADIF, regardless if they match to the chosen station-location.";
$lang['adif_upload'] = "Upload";
@@ -94,10 +94,10 @@ $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['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_hint'] = "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL log.";
$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['ignore_ambiguous_hint'] = "If unchecked information about QSO which could not be found in Wavelog will be displayed.";
/*
___________________________________________________________________________________________

View File

@@ -2,8 +2,8 @@
defined('BASEPATH') OR exit('No direct script access allowed');
$lang['admin_user_line1'] = 'Cloudlog tarvitsee toimiakseen vähintään yhden luodun käyttäjän.';
$lang['admin_user_line2'] = 'Käyttäjille voidaan määrittää rooleja, jotka antavat heille erilaisia käyttöoikeuksia, kuten QSO:n lisääminen lokikirjaan ja pääsy Cloudlog-sovellusliittymiin (API).';
$lang['admin_user_line1'] = 'Wavelog tarvitsee toimiakseen vähintään yhden luodun käyttäjän.';
$lang['admin_user_line2'] = 'Käyttäjille voidaan määrittää rooleja, jotka antavat heille erilaisia käyttöoikeuksia, kuten QSO:n lisääminen lokikirjaan ja pääsy Wavelog-sovellusliittymiin (API).';
$lang['admin_user_line3'] = 'Tällä hetkellä kirjautunut käyttäjä näkyy jokaisen sivun oikeassa yläkulmassa.';
$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.";

View File

@@ -49,7 +49,7 @@ ________________________________________________________________________________
$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_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 Wavelog. Be aware that these DXCC entities are outdated and no longer valid.";
/*
@@ -95,7 +95,7 @@ ________________________________________________________________________________
*/
$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_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog.";
$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.";

View File

@@ -110,8 +110,8 @@ $lang['general_total_distance'] = 'Kokonaismatka';
// PHP Upload Warning
$lang['gen_max_file_upload_size'] = 'Maximum file upload size is ';
// Cloudlog Terms
$lang['cloudlog_station_profile'] = 'Asemaprofiili';
// Wavelog Terms
$lang['wavelog_station_profile'] = 'Asemaprofiili';
// ham radio terms
$lang['gen_hamradio_cq'] = "CQ";

View File

@@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = 'Lokitiedoston pitää olla ADI-tiedosto
$lang['lotw_pull_lotw_data_for_me'] = 'Lataa ja tuo LoTW:n data';
$lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for';
$lang['lotw_report_download_overview_helptext'] ='Cloudlog käyttää profiiliisi tallennettuja LoTW:n käyttäjätietoja lokikoosteen lataamiseen. Lokikooste sisältää tähän päivään asti kaikki kuitatut yhteydet, alkaen valitsemastasi päivästä tai siitä päivästä kun olet viimeksi ne palvelusta ladannut .';
$lang['lotw_report_download_overview_helptext'] ='Wavelog käyttää profiiliisi tallennettuja LoTW:n käyttäjätietoja lokikoosteen lataamiseen. Lokikooste sisältää tähän päivään asti kaikki kuitatut yhteydet, alkaen valitsemastasi päivästä tai siitä päivästä kun olet viimeksi ne palvelusta ladannut .';
// Buttons
$lang['lotw_btn_lotw_import'] = 'LoTW Tuonti';

View File

@@ -6,7 +6,7 @@ $lang['notes_menu_notes'] = 'Muistiinpanot';
$lang['notes_edit_note'] = 'Muokkaa muistiinpanoa';
$lang['notes_your_notes'] = 'Muistiinpanosi';
$lang['notes_welcome'] = "Näyttää siltä, ettei sinulla ole vielä yhtään muistiinpanoa. Tämä Cloudlogin muistio ovat kätevä tapa tallentaa vaikka ATU:n asetukset, taajuudet. Muistiinpanosi säilyvät täällä tallessa, eikä sinun tarvitse etsiä niitä paperipinojesi alta. Näin aika säästyy workkimiseen --... ...-- ";
$lang['notes_welcome'] = "Näyttää siltä, ettei sinulla ole vielä yhtään muistiinpanoa. Tämä Wavelogin muistio ovat kätevä tapa tallentaa vaikka ATU:n asetukset, taajuudet. Muistiinpanosi säilyvät täällä tallessa, eikä sinun tarvitse etsiä niitä paperipinojesi alta. Näin aika säästyy workkimiseen --... ...-- ";
$lang['notes_create_note'] = 'Luo uusi muistiinpano';

View File

@@ -2,8 +2,8 @@
defined('BASEPATH') OR exit('No direct script access allowed');
$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_wavelog_options'] = 'Wavelog Options';
$lang['options_message1'] = 'Wavelog 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_appearance'] = 'Ulkoasu';
$lang['options_theme'] = 'Teema';
@@ -42,8 +42,8 @@ $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_email_address_hint'] = "The email address from which the emails are sent, e.g. 'wavelog@example.com'";
$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Wavelog'";
$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.";

View File

@@ -53,7 +53,7 @@ $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_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 Wavelog. 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";
@@ -67,7 +67,7 @@ $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_save'] = "Save in Wavelog";
$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";
@@ -91,7 +91,7 @@ $lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please n
$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_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST 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.";

View File

@@ -22,7 +22,7 @@ $lang['station_logbooks_confirm_delete'] = "Are you sure you want to delete the
$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_hint'] = "Shortname for the station logbook. For example: Home Log (HM54ip)";
$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.";
@@ -57,11 +57,11 @@ $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_warning_reassign'] = 'Due to recent changes within Wavelog 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_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)';
$lang['station_location_callsign'] = 'Station Callsign';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/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';
@@ -82,7 +82,7 @@ $lang['station_location_state_hint'] = 'Station state. Applies to certain countr
$lang['station_location_county'] = 'Station County';
$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';
$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_ln1'] = "Station gridsquare. For example: HM54ip. 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.";

View File

@@ -32,7 +32,7 @@ $lang['account_last_name'] = "Prénom";
$lang['account_callsign'] = "Indicatif";
$lang['account_gridsquare'] = "Locator";
$lang['account_cloudlog_preferences'] = "Préférences Cloudlog";
$lang['account_wavelog_preferences'] = "Préférences Wavelog";
$lang['account_timezone'] = "Fuseau horaire";
$lang['account_date_format'] = "Format de la date";
$lang['account_log_end_time'] = "Enregistrer les heures de fin des QSO séparément";
@@ -46,8 +46,8 @@ $lang['account_quicklog_enter_search'] = "Recherche l'indicatif";
$lang['account_measurement_preferences'] = "Unité de mesure";
$lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = "(Sélectionnez le format de date à afficher)";
$lang['account_choose_which_unit_distances_will_be_shown_in'] = "(Sélectionner l'unité de mesure à afficher)";
$lang['account_cloudlog_language'] = "Langue utilisée par Cloudlog";
$lang['account_choose_cloudlog_language'] = "(Sélectionner la langue à utiliser)";
$lang['account_wavelog_language'] = "Langue utilisée par Wavelog";
$lang['account_choose_wavelog_language'] = "(Sélectionner la langue à utiliser)";
$lang['account_main_menu'] = "Menu principal";
$lang['account_show_notes_in_the_main_menu'] = "Voir les notes dans le main principal";
@@ -100,7 +100,7 @@ $lang['account_confirm_password'] = "Mot de passe confirmé";
$lang['account_forgot_your_password'] = "Mot de passe oublié ?";
$lang['account_login_to_cloudlog'] = "Connexion à Cloudlog";
$lang['account_login_to_wavelog'] = "Connexion à Wavelog";
$lang['account_login'] = "Login";
$lang['account_mastodon'] = "Mastodon Serveur";
@@ -112,7 +112,7 @@ $lang['account_gridmap_default_band'] = "Bandes";
$lang['account_qsl_settings'] = "Méthode QSL";
$lang['account_winkeyer'] = "Winkeyer";
$lang['account_winkeyer_hint'] = "REMARQUE : La prise en charge de Winkeyer dans Cloudlog est très expérimentale, lisez d'abord le wiki avant de l'activer <a href=\"https://github.com/magicbug/Cloudlog/wiki/Winkey\" target=\"_blank\">https://github.com/magicbug/Cloudlog/wiki/Winkey</a>";
$lang['account_winkeyer_hint'] = "REMARQUE : La prise en charge de Winkeyer dans Wavelog est très expérimentale, lisez d'abord le wiki avant de l'activer <a href=\"https://github.com/wavelog/wavelog/wiki/Winkey\" target=\"_blank\">https://github.com/wavelog/wavelog/wiki/Winkey</a>";
$lang['account_winkeyer_enabled'] = "Activer Winkeyer";
$lang['account_map_params'] = "Paramètre de la carte";

View File

@@ -41,12 +41,12 @@ $lang['adif_mark_imported_qrz'] = "Indiquer que les QSO importés ont été tél
$lang['adif_mark_imported_clublog'] = "Indiquer que les QSO importés ont été téléchargés dans le journal Clublog";
$lang['adif_dxcc_from_adif'] = "Utiliser l'information du DXCC issue du fichier ADIF";
$lang['adif_dxcc_from_adif_hint'] = "(Si cochée, Cloudlog tentera de déterminer automatiquement les informations DXCC.)";
$lang['adif_dxcc_from_adif_hint'] = "(Si cochée, Wavelog tentera de déterminer automatiquement les informations DXCC.)";
$lang['adif_always_use_login_call_as_op'] = "Toujours utiliser l'indicatif de connexion comme nom d'opérateur lors de l'import";
$lang['adif_ignore_station_call'] = "Ignorer l'indicatif de la station lors de l'import";
$lang['adif_ignore_station_call_hint'] = "(Si cochée, Cloudlog tentera d'importer <b><u>TOUS</u></b> les QSO de l'ADIF, qu'ils correspondent ou non à l'emplacement de la station choisie)";
$lang['adif_ignore_station_call_hint'] = "(Si cochée, Wavelog tentera d'importer <b><u>TOUS</u></b> les QSO de l'ADIF, qu'ils correspondent ou non à l'emplacement de la station choisie)";
$lang['adif_upload'] = "Importer";
@@ -94,10 +94,10 @@ $lang['only_confirmed_qsos'] = "Importez uniquement les données DOK des QSO con
$lang['only_confirmed_qsos_hint'] = "(Décoché, si vous souhaitez également mettre à jour DOK, avec les données des QSO non confirmés dans DCL)";
$lang['overwrite_by_dcl'] = "Remplacer le DOC existant dans le journal par DCL (si différent)";
$lang['overwrite_by_dcl_hint'] = "(Si cochée, Cloudlog écrasera de force le DOK existant par le DOK du journal DCL)";
$lang['overwrite_by_dcl_hint'] = "(Si cochée, Wavelog écrasera de force le DOK existant par le DOK du journal DCL)";
$lang['ignore_ambiguous'] = "Ignorer les QSO qui ne correspondent pas";
$lang['ignore_ambiguous_hint'] = "(Si non cochée, les informations sur les QSO qui n'ont pas pu être trouvées dans Cloudlog seront affichées)";
$lang['ignore_ambiguous_hint'] = "(Si non cochée, les informations sur les QSO qui n'ont pas pu être trouvées dans Wavelog seront affichées)";
/*
___________________________________________________________________________________________

View File

@@ -2,8 +2,8 @@
defined('BASEPATH') OR exit('No direct script access allowed');
$lang['admin_user_line1'] = "Cloudlog a besoin d'au moins un utilisateur configuré pour fonctionner.";
$lang['admin_user_line2'] = "Les utilisateurs peuvent se voir attribuer des rôles qui leur donnent différentes autorisations, telles que l'ajout de QSO au journal de trafic et l'accès aux API Cloudlog.";
$lang['admin_user_line1'] = "Wavelog a besoin d'au moins un utilisateur configuré pour fonctionner.";
$lang['admin_user_line2'] = "Les utilisateurs peuvent se voir attribuer des rôles qui leur donnent différentes autorisations, telles que l'ajout de QSO au journal de trafic et l'accès aux API Wavelog.";
$lang['admin_user_line3'] = "L'utilisateur actuellement connecté est affiché en haut à droite de chaque 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.";

View File

@@ -49,7 +49,7 @@ ________________________________________________________________________________
$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_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 Wavelog. Be aware that these DXCC entities are outdated and no longer valid.";
/*
@@ -95,7 +95,7 @@ ________________________________________________________________________________
*/
$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_ln2'] = "The SIG or Signature Category provides the possibility to use any kind of 'Award Signature' for awards that are not implemented in Wavelog.";
$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.";

View File

@@ -110,8 +110,8 @@ $lang['general_total_distance'] = "Distance Totale";
// PHP Upload Warning
$lang['gen_max_file_upload_size'] = "La taille maximum d'un fichier à télécharger est";
// Cloudlog Terms
$lang['cloudlog_station_profile'] = "Profil de la Station";
// Wavelog Terms
$lang['wavelog_station_profile'] = "Profil de la Station";
// ham radio terms
$lang['gen_hamradio_cq'] = "CQ";

View File

@@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = "Les fichiers de log doivent être au fo
$lang['lotw_pull_lotw_data_for_me'] = "Récuperer mes données LoTW";
$lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for';
$lang['lotw_report_download_overview_helptext'] = "Cloudlog utilisera le nom d'utilisateur et le mot de passe LoTW stockés dans votre profil utilisateur pour télécharger le journal vers LoTW.<br/> Les téléchargements du journal Cloudlog auront toutes les confirmations depuis la date choisie, ou depuis votre dernière confirmation LoTW (récupérée de votre journal), jusqu'à présent.";
$lang['lotw_report_download_overview_helptext'] = "Wavelog utilisera le nom d'utilisateur et le mot de passe LoTW stockés dans votre profil utilisateur pour télécharger le journal vers LoTW.<br/> Les téléchargements du journal Wavelog auront toutes les confirmations depuis la date choisie, ou depuis votre dernière confirmation LoTW (récupérée de votre journal), jusqu'à présent.";
// Buttons
$lang['lotw_btn_lotw_import'] = "Import LoTW";

View File

@@ -2,8 +2,8 @@
defined('BASEPATH') OR exit('No direct script access allowed');
$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_wavelog_options'] = 'Wavelog Options';
$lang['options_message1'] = 'Wavelog 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_appearance'] = 'Appearance';
$lang['options_theme'] = 'Theme';
@@ -42,8 +42,8 @@ $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_email_address_hint'] = "The email address from which the emails are sent, e.g. 'wavelog@example.com'";
$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Wavelog'";
$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.";

View File

@@ -25,7 +25,7 @@ $lang['qso_sig_info_helptext'] = 'Par exemple: DA/NW-357';
$lang['qso_dok_helptext'] = 'Par exemple: Q03';
$lang['qso_notes_helptext'] = 'A noter : le contenu est utilisé par Cloudlog uniquement et n\'est pas exporté vers d\'autre services';
$lang['qso_notes_helptext'] = 'A noter : le contenu est utilisé par Wavelog uniquement et n\'est pas exporté vers d\'autre services';
$lang['qsl_notes_helptext'] = 'This note content is exported to QSL services like eqsl.cc.';
$lang['qso_eqsl_qslmsg_helptext'] = "Récupérer le message par défaut pour ce lieu de station.";
@@ -53,7 +53,7 @@ $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_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 Wavelog. 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";
@@ -67,7 +67,7 @@ $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_save'] = "Save in Wavelog";
$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";
@@ -91,7 +91,7 @@ $lang['qso_simplefle_syntax_help_ln1'] = "Before starting to log a QSO, please n
$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_ln5'] = "For example, a QSO that started at 21:34 (UTC) with 4W7EST 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.";

View File

@@ -22,7 +22,7 @@ $lang['station_logbooks_confirm_delete'] = "Are you sure you want to delete the
$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_hint'] = "Shortname for the station logbook. For example: Home Log (HM54ip)";
$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.";
@@ -57,11 +57,11 @@ $lang['station_location_edit'] = 'Edit Station Location: ';
$lang['station_location_updated_suff'] = "mis à jour.";
$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_warning_reassign'] = 'Due to recent changes within Wavelog 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_name_hint'] = 'Shortname for the station location. For example: Home (HM54ip)';
$lang['station_location_callsign'] = 'Station Callsign';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 2M0SQL/P';
$lang['station_location_callsign_hint'] = 'Station callsign. For example: 4W7EST/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';
@@ -82,7 +82,7 @@ $lang['station_location_state_hint'] = 'Station state. Applies to certain countr
$lang['station_location_county'] = 'Station County';
$lang['station_location_county_hint'] = 'Station County (Only used for USA/Alaska/Hawaii).';
$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_ln1'] = "Station gridsquare. For example: HM54ip. 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.";

View File

@@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio";
$lang['account_callsign'] = 'Rufzeichen';
$lang['account_gridsquare'] = 'Planquadrat';
$lang['account_cloudlog_preferences'] = 'Cloudlog Einstellungen';
$lang['account_wavelog_preferences'] = 'Wavelog Einstellungen';
$lang['account_timezone'] = 'Zeitzone';
$lang['account_date_format'] = 'Datumsformat';
$lang['account_log_end_time'] = 'Logge Endzeiten für QSOs separat';
@@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Suche Rufzeichen";
$lang['account_measurement_preferences'] = 'Entfernungsformat';
$lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Wähle, wie Datumsfelder angezeigt werden sollen, wenn du eingeloggt bist.';
$lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Wähle, in welcher Einheit Entfernungen angezeigt werden sollen.';
$lang['account_cloudlog_language'] = 'Cloudlog Sprache';
$lang['account_choose_cloudlog_language'] = 'Wähle eine Sprache für Cloudlog.';
$lang['account_wavelog_language'] = 'Wavelog Sprache';
$lang['account_choose_wavelog_language'] = 'Wähle eine Sprache für Wavelog.';
$lang['account_main_menu'] = 'Menü Optionen';
$lang['account_show_notes_in_the_main_menu'] = 'Zeige Notizen im Hauptmenü';
@@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Bestätige Passwort';
$lang['account_forgot_your_password'] = 'Passwort vergessen?';
$lang['account_login_to_cloudlog'] = 'Anmeldung bei Cloudlog';
$lang['account_login_to_wavelog'] = 'Anmeldung bei Wavelog';
$lang['account_login'] = 'Anmeldung';
$lang['account_mastodon'] = 'Mastodonserver';
@@ -114,7 +114,7 @@ $lang['account_gridmap_default_band'] = 'Standardband';
$lang['account_qsl_settings'] = 'Standard QSL-Methoden';
$lang['account_winkeyer'] = 'Winkeyer';
$lang['account_winkeyer_hint'] = "Die Winkeyer Unterstützung in Cloudlog ist sehr experimentell. Lese zuerst den Wikieintrag auf <a href='https://github.com/magicbug/Cloudlog/wiki/Winkey' target='_blank'>https://github.com/magicbug/Cloudlog/wiki/Winkey</a> bevor du ihn einschaltest.";
$lang['account_winkeyer_hint'] = "Die Winkeyer Unterstützung in Wavelog ist sehr experimentell. Lese zuerst den Wikieintrag auf <a href='https://github.com/wavelog/wavelog/wiki/Winkey' target='_blank'>https://github.com/wavelog/wavelog/wiki/Winkey</a> bevor du ihn einschaltest.";
$lang['account_winkeyer_enabled'] = "Winkeyer Features Eingeschaltet";
$lang['account_map_params'] = "Karten Einstellungen";

View File

@@ -41,12 +41,12 @@ $lang['adif_mark_imported_qrz'] = "Markiere hochgeladene QSO als bereits zu QRZ.
$lang['adif_mark_imported_clublog'] = "Markiere hochgeladene QSO als bereits zu Clublog hochgeladen";
$lang['adif_dxcc_from_adif'] = "Benutze die DXCC Informationen aus der ADIF Datei";
$lang['adif_dxcc_from_adif_hint'] = "Wenn diese Option nicht ausgewählt ist, wird Cloudlog versuchen die DXCC Informationen automatisch zu ermitteln.";
$lang['adif_dxcc_from_adif_hint'] = "Wenn diese Option nicht ausgewählt ist, wird Wavelog versuchen die DXCC Informationen automatisch zu ermitteln.";
$lang['adif_always_use_login_call_as_op'] = "Nutze während des Import immer das eingeloggte Rufzeichen als Operator-Name";
$lang['adif_ignore_station_call'] = "Ignoriere das Stations Rufzeichen beim Import";
$lang['adif_ignore_station_call_hint'] = "Wenn diese Option ausgewählt ist, wirdCloudlog versuchen <b>alle</b> QSO hochzuladen, unabhängig davon, ob sie mit dem aktiven Stationsstandort zusammenpassen.";
$lang['adif_ignore_station_call_hint'] = "Wenn diese Option ausgewählt ist, wirdWavelog versuchen <b>alle</b> QSO hochzuladen, unabhängig davon, ob sie mit dem aktiven Stationsstandort zusammenpassen.";
$lang['adif_upload'] = "Hochladen";
@@ -94,7 +94,7 @@ $lang['only_confirmed_qsos'] = "Importiere nur DOK Informationen von QSOs, die a
$lang['only_confirmed_qsos_hint'] = "Deaktiviere diese Option, um auch DOK Infos von QSOS zu importieren, die auf DCL nicht bestätig sind.";
$lang['overwrite_by_dcl'] = "Überschreibe existierende DOK im Logbuch durch DCL (wenn unterschiedlich).";
$lang['overwrite_by_dcl_hint'] = "Wenn aktiviert, wird Cloudlog den existierenden DOK mit dem DOK aus dem DCL überschreiben.";
$lang['overwrite_by_dcl_hint'] = "Wenn aktiviert, wird Wavelog den existierenden DOK mit dem DOK aus dem DCL überschreiben.";
$lang['ignore_ambiguous'] = "Ignoriere QSOs, die nicht eindeutig zugeordnet werden können.";
$lang['ignore_ambiguous_hint'] = "Wenn deaktiviert, werden auch Infos zu QSOs angezeigt, die im Logbuch nicht gefunden werden konnten.";

View File

@@ -2,8 +2,8 @@
defined('BASEPATH') OR exit('Direkter Zugriff auf Skripte ist nicht erlaubt');
$lang['admin_user_line1'] = 'Es muss mindestens ein Benutzer konfiguriert sein, damit Cloudlog funktioniert.';
$lang['admin_user_line2'] = 'Benutzer können verschiedene Rollen zugewiesen bekommen, die ihnen unterschiedliche Rechte geben wie QSOs zum Logbuch hinzuzufügen und die APIs von Cloudlog zu benutzen';
$lang['admin_user_line1'] = 'Es muss mindestens ein Benutzer konfiguriert sein, damit Wavelog funktioniert.';
$lang['admin_user_line2'] = 'Benutzer können verschiedene Rollen zugewiesen bekommen, die ihnen unterschiedliche Rechte geben wie QSOs zum Logbuch hinzuzufügen und die APIs von Wavelog zu benutzen';
$lang['admin_user_line3'] = 'Der aktuell angemeldete Benutzer wird oben rechts auf jeder Seite angezeigt.';
$lang['admin_user_line4'] = "Mit dem Passwort Reset Knopf kannst du dem Benutzer eine E-Mail mit einem Passwort-Reset Link zuschicken. Dafür müssen die E-Mail Einstellungen in den globalen Optionen korrekt eingerichtet sein.";

View File

@@ -49,7 +49,7 @@ ________________________________________________________________________________
$lang['awards_dxcc_description_ln1'] = "DXCC Diplom";
$lang['awards_dxcc_description_ln2'] = "DXCC steht für 'DX Century Club', eine Auszeichnung, die auf gearbeiteten Ländern basiert. Die DXCC-Liste basiert auf einem Artikel, der 1935 von Clinton B. DeSoto, W1CBD, mit dem Titel <a href='http://www.arrl.org/desoto' target='_blank'>'How to Count Countries Worked, A New DX Scoring System'</a> erstellt wurde.";
$lang['awards_dxcc_description_ln3'] = "Sie finden alle Informationen zum DXCC Diplom auf der <a href='https://www.arrl.org/dxcc-rules' target='_blank'>ARRL-Website</a>.";
$lang['awards_dxcc_description_ln4'] = "Wichtiger Hinweis: Im Laufe der Zeit haben sich die Kriterien für die DXCC-Liste geändert. Die Liste bleibt unverändert, bis eine Einheit die Kriterien nicht mehr erfüllt, woraufhin sie in die Gelöschte Liste verschoben wird. Sie finden gelöschte DXCC-Einheiten auch in den Listen in Cloudlog. Beachten Sie, dass diese DXCC-Einheiten veraltet und nicht mehr gültig sind.";
$lang['awards_dxcc_description_ln4'] = "Wichtiger Hinweis: Im Laufe der Zeit haben sich die Kriterien für die DXCC-Liste geändert. Die Liste bleibt unverändert, bis eine Einheit die Kriterien nicht mehr erfüllt, woraufhin sie in die Gelöschte Liste verschoben wird. Sie finden gelöschte DXCC-Einheiten auch in den Listen in Wavelog. Beachten Sie, dass diese DXCC-Einheiten veraltet und nicht mehr gültig sind.";
/*
@@ -95,7 +95,7 @@ ________________________________________________________________________________
*/
$lang['awards_sig_description_ln1'] = "SIG-Information";
$lang['awards_sig_description_ln2'] = "Die SIG- oder Signature-Kategorie ermöglicht die Verwendung beliebiger 'Diplom-Identifikationen' für Diplome, die nicht in Cloudlog implementiert sind.";
$lang['awards_sig_description_ln2'] = "Die SIG- oder Signature-Kategorie ermöglicht die Verwendung beliebiger 'Diplom-Identifikationen' für Diplome, die nicht in Wavelog implementiert sind.";
$lang['awards_sig_description_ln3'] = "Der Grund dafür ist, dass das gängige ADIF-Format nur wenige dedizierte Felder für bestimmte Diplome bietet. SIG ermöglicht es dennoch, alle anderen Arten von Signaturmarkierungen zu verwenden und auszuwerten.";
$lang['awards_sig_description_ln4'] = "Im QSO-Verarbeitung finden Sie zwei Felder: 'SIG' enthält die tatsächliche Markierung, die auch in der Auswertung der Auszeichnung sichtbar ist, und 'SIG INFO', das eine Beschreibung der Signatur enthält. Beide Felder sind frei anpassbar.";

View File

@@ -110,8 +110,8 @@ $lang['general_total_distance'] = 'Entfernung';
// PHP Upload Warning
$lang['gen_max_file_upload_size'] = 'Die max. Dateigrösse für Uploads beträgt ';
// Cloudlog Terms
$lang['cloudlog_station_profile'] = 'Stationsprofil';
// Wavelog Terms
$lang['wavelog_station_profile'] = 'Stationsprofil';
// ham radio terms
$lang['gen_hamradio_cq'] = "CQ";

Some files were not shown because too many files have changed in this diff Show More