diff --git a/SECURITY.md b/SECURITY.md index 8c4207703..9f628e0b1 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -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 Peter Goodhall, 2M0SQL via [peter@magicbug.co.uk](mailto:peter@magicbug.co.uk). All security vulnerabilities will be promptly addressed. diff --git a/application/config/config.sample.php b/application/config/config.sample.php index 973398985..cc2267310 100644 --- a/application/config/config.sample.php +++ b/application/config/config.sample.php @@ -7,13 +7,13 @@ defined('BASEPATH') OR exit('No direct script access allowed'); | Install Options |-------------------------------------------------------------------------- | -| 'app_name' Name of the App 'Cloudlog' +| 'app_name' Name of the App 'Wavelog' | 'app_version' Set by the dev team. | '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_name'] = "Wavelog"; $config['app_version'] = "2.4.5"; $config['directory'] = "logbook"; $config['callbook'] = "hamqth"; // Options are hamqth or qrz diff --git a/application/controllers/Activatorsmap.php b/application/controllers/Activatorsmap.php index 4d0dcfdb7..c6be538cf 100644 --- a/application/controllers/Activatorsmap.php +++ b/application/controllers/Activatorsmap.php @@ -1,7 +1,7 @@ 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 diff --git a/application/controllers/Awards.php b/application/controllers/Awards.php index 71147af9a..de4fb8dd9 100644 --- a/application/controllers/Awards.php +++ b/application/controllers/Awards.php @@ -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'; diff --git a/application/controllers/Calltester.php b/application/controllers/Calltester.php index 10cf96d0e..84afaa8b3 100644 --- a/application/controllers/Calltester.php +++ b/application/controllers/Calltester.php @@ -1,5 +1,5 @@ load->view('interface_assets/header', $data); $this->load->view('setup/check_list'); diff --git a/application/controllers/Eqsl.php b/application/controllers/Eqsl.php index 76c266b6f..c6a34bc8b 100644 --- a/application/controllers/Eqsl.php +++ b/application/controllers/Eqsl.php @@ -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; diff --git a/application/controllers/Labels.php b/application/controllers/Labels.php index cf0b966c3..a4b789457 100644 --- a/application/controllers/Labels.php +++ b/application/controllers/Labels.php @@ -1,9 +1,9 @@ input->post('emailSenderName'); if (empty($emailSenderName_value)) { - $emailSenderName_value = 'Cloudlog'; + $emailSenderName_value = 'Wavelog'; } $emailSenderNameupdate = $this->optionslib->update('emailSenderName', $emailSenderName_value, 'yes'); @@ -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()){ diff --git a/application/controllers/Oqrs.php b/application/controllers/Oqrs.php index d559cb076..d1539cd03 100644 --- a/application/controllers/Oqrs.php +++ b/application/controllers/Oqrs.php @@ -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()) { diff --git a/application/controllers/Qrbcalc.php b/application/controllers/Qrbcalc.php index ed5d3e4bc..71f4e6715 100644 --- a/application/controllers/Qrbcalc.php +++ b/application/controllers/Qrbcalc.php @@ -1,7 +1,7 @@ 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()) diff --git a/application/controllers/Welcome.php b/application/controllers/Welcome.php index 893be3e9a..077a97338 100644 --- a/application/controllers/Welcome.php +++ b/application/controllers/Welcome.php @@ -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'); diff --git a/application/helpers/psr4_autoloader_helper.php b/application/helpers/psr4_autoloader_helper.php index 74a00521d..741440fe3 100644 --- a/application/helpers/psr4_autoloader_helper.php +++ b/application/helpers/psr4_autoloader_helper.php @@ -7,7 +7,7 @@ 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, 9) !== 'Wavelog\\') { return false; } $class=substr($class,9); diff --git a/application/language/bulgarian/account_lang.php b/application/language/bulgarian/account_lang.php index 91f0ea86e..fb6871a6f 100644 --- a/application/language/bulgarian/account_lang.php +++ b/application/language/bulgarian/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio"; $lang['account_callsign'] = 'Callsign'; $lang['account_gridsquare'] = 'Gridsquare'; -$lang['account_wavelog_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_wavelog_language'] = 'Cloudlog Language'; -$lang['account_choose_wavelog_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_wavelog'] = '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 https://github.com/magicbug/Cloudlog/wiki/Winkey before enabling."; +$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/magicbug/Wavelog/wiki/Winkey before enabling."; $lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; $lang['account_map_params'] = "Map Settings"; diff --git a/application/language/bulgarian/adif_lang.php b/application/language/bulgarian/adif_lang.php index 4000ec252..f2eddfeb6 100644 --- a/application/language/bulgarian/adif_lang.php +++ b/application/language/bulgarian/adif_lang.php @@ -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 all 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 all 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."; /* ___________________________________________________________________________________________ diff --git a/application/language/bulgarian/admin_lang.php b/application/language/bulgarian/admin_lang.php index 3306fe274..80a923504 100644 --- a/application/language/bulgarian/admin_lang.php +++ b/application/language/bulgarian/admin_lang.php @@ -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."; diff --git a/application/language/bulgarian/awards_lang.php b/application/language/bulgarian/awards_lang.php index 8102d2663..08355a024 100644 --- a/application/language/bulgarian/awards_lang.php +++ b/application/language/bulgarian/awards_lang.php @@ -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 'How to Count Countries Worked, A New DX Scoring System'."; $lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$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."; diff --git a/application/language/bulgarian/general_words_lang.php b/application/language/bulgarian/general_words_lang.php index d5b8ceba8..3f6bcd7f4 100644 --- a/application/language/bulgarian/general_words_lang.php +++ b/application/language/bulgarian/general_words_lang.php @@ -110,7 +110,7 @@ $lang['general_total_distance'] = 'Общо разстояние'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; -// Cloudlog Terms +// Wavelog Terms $lang['wavelog_station_profile'] = 'Местоположение на станцията'; // ham radio terms diff --git a/application/language/bulgarian/lotw_lang.php b/application/language/bulgarian/lotw_lang.php index feb31524d..8a96496f5 100644 --- a/application/language/bulgarian/lotw_lang.php +++ b/application/language/bulgarian/lotw_lang.php @@ -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 импорт'; diff --git a/application/language/bulgarian/options_lang.php b/application/language/bulgarian/options_lang.php index 72bcc76c9..f6b7091a5 100644 --- a/application/language/bulgarian/options_lang.php +++ b/application/language/bulgarian/options_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('Не е разрешен директен достъп до скрипта'); -$lang['options_wavelog_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'; @@ -43,7 +43,7 @@ $lang['options_mail_settings_failed'] = "Something went wrong with saving the se $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. 'wavelog@example.com'"; -$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Cloudlog'"; +$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."; diff --git a/application/language/bulgarian/qso_lang.php b/application/language/bulgarian/qso_lang.php index 5ff7b23eb..028adf525 100644 --- a/application/language/bulgarian/qso_lang.php +++ b/application/language/bulgarian/qso_lang.php @@ -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 here."; +$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 here."; $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 SOTA, IOTA, POTA or WWFF"; diff --git a/application/language/bulgarian/station_lang.php b/application/language/bulgarian/station_lang.php index 01acd54b3..0ef70d26e 100644 --- a/application/language/bulgarian/station_lang.php +++ b/application/language/bulgarian/station_lang.php @@ -57,7 +57,7 @@ $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_callsign'] = 'Station Callsign'; diff --git a/application/language/chinese_simplified/account_lang.php b/application/language/chinese_simplified/account_lang.php index cef67ae11..4efd0fe68 100644 --- a/application/language/chinese_simplified/account_lang.php +++ b/application/language/chinese_simplified/account_lang.php @@ -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_wavelog_language'] = 'Cloudlog语言'; -$lang['account_choose_wavelog_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_wavelog'] = '登录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 的支持是实验性的,请在使用前先阅读 https://github.com/magicbug/Cloudlog/wiki/Winkey"; +$lang['account_winkeyer_hint'] = "Wavelog 中对 Winkeyer 的支持是实验性的,请在使用前先阅读 https://github.com/magicbug/Wavelog/wiki/Winkey"; $lang['account_winkeyer_enabled'] = "启用 Winkeyer 功能"; $lang['account_map_params'] = "地图设置"; diff --git a/application/language/chinese_simplified/adif_lang.php b/application/language/chinese_simplified/adif_lang.php index 3ec7ed04e..515ad589c 100644 --- a/application/language/chinese_simplified/adif_lang.php +++ b/application/language/chinese_simplified/adif_lang.php @@ -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文件中的 所有 QSO,而不判断是否与所选台站位置匹配"; +$lang['adif_ignore_station_call_hint'] = "如果选择,Wavelog会尝试导入ADIF文件中的 所有 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 信息"; /* ___________________________________________________________________________________________ diff --git a/application/language/chinese_simplified/admin_lang.php b/application/language/chinese_simplified/admin_lang.php index 010233a4e..cf1e0b567 100644 --- a/application/language/chinese_simplified/admin_lang.php +++ b/application/language/chinese_simplified/admin_lang.php @@ -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'] = "通过'重置密码'按钮,你可以向用户发送一封带有重置密码链接的邮件。您需要确保全局设定中的邮件设置配置正确"; diff --git a/application/language/chinese_simplified/awards_lang.php b/application/language/chinese_simplified/awards_lang.php index 75f393d1a..2097c1d2f 100644 --- a/application/language/chinese_simplified/awards_lang.php +++ b/application/language/chinese_simplified/awards_lang.php @@ -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 编写的一篇文章,标题为“如何计算通联过的国家/地区, 新的 DX 评分系统'"; $lang['awards_dxcc_description_ln3'] = "您可以在 ARRL 网站上找到有关 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”包含签名的描述 这两个字段都可以自由定制"; diff --git a/application/language/chinese_simplified/general_words_lang.php b/application/language/chinese_simplified/general_words_lang.php index b493a299f..0726eed2c 100644 --- a/application/language/chinese_simplified/general_words_lang.php +++ b/application/language/chinese_simplified/general_words_lang.php @@ -110,7 +110,7 @@ $lang['general_total_distance'] = '总计距离'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = '最大上传文件大小是'; -// Cloudlog Terms +// Wavelog Terms $lang['wavelog_station_profile'] = '电台站地址'; // ham radio terms diff --git a/application/language/chinese_simplified/lotw_lang.php b/application/language/chinese_simplified/lotw_lang.php index db7a78bc9..5b53957dc 100644 --- a/application/language/chinese_simplified/lotw_lang.php +++ b/application/language/chinese_simplified/lotw_lang.php @@ -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 导入'; diff --git a/application/language/chinese_simplified/options_lang.php b/application/language/chinese_simplified/options_lang.php index 0cd970921..9014eca83 100644 --- a/application/language/chinese_simplified/options_lang.php +++ b/application/language/chinese_simplified/options_lang.php @@ -2,7 +2,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_wavelog_options'] = 'Cloudlog 设置'; +$lang['options_wavelog_options'] = 'Wavelog 设置'; $lang['options_message1'] = '本设置是针对所有用户的全局设置,会覆盖对于单个用户的设置。'; $lang['options_appearance'] = '外观'; @@ -43,7 +43,7 @@ $lang['options_mail_settings_failed'] = "保存时出现问题,请重试"; $lang['options_outgoing_protocol_hint'] = "发送邮件时使用的协议"; $lang['options_smtp_encryption_hint'] = "选择邮件将会通过TLS还是SSL发送"; $lang['options_email_address_hint'] = "发送邮件的邮箱地址,例如:'wavelog@example.com'"; -$lang['options_email_sender_name_hint'] = "发送者的名字,例如:'Cloudlog'"; +$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'] = "登录邮件服务器的用户名,通常情况下,这和发送邮件的邮箱地址相同"; diff --git a/application/language/chinese_simplified/qso_lang.php b/application/language/chinese_simplified/qso_lang.php index 6c978228a..6983b3966 100644 --- a/application/language/chinese_simplified/qso_lang.php +++ b/application/language/chinese_simplified/qso_lang.php @@ -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 工作原理的信息可以在此处找到。"; +$lang['qso_simplefle_info_ln4'] = "一个常见的用例是,如果您必须野架之后将纸质日志导入电脑,现在 Wavelog 中也提供了 SimpleFLE。 有关语法和 FLE 工作原理的信息可以在此处找到。"; $lang['qso_simplefle_qso_data'] = "QSO 数据"; $lang['qso_simplefle_qso_date_hint'] = "如果您不选择日期,则将使用今天的日期。"; $lang['qso_simplefle_qso_list'] = "QSO 列表"; diff --git a/application/language/chinese_simplified/station_lang.php b/application/language/chinese_simplified/station_lang.php index e8b4def39..113d092ca 100644 --- a/application/language/chinese_simplified/station_lang.php +++ b/application/language/chinese_simplified/station_lang.php @@ -57,7 +57,7 @@ $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_callsign'] = 'Station Callsign'; diff --git a/application/language/czech/account_lang.php b/application/language/czech/account_lang.php index 384765ed1..0b10fcc7d 100644 --- a/application/language/czech/account_lang.php +++ b/application/language/czech/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio"; $lang['account_callsign'] = 'Značka'; $lang['account_gridsquare'] = 'Locátor'; -$lang['account_wavelog_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_wavelog_language'] = 'Cloudlog Language'; -$lang['account_choose_wavelog_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_wavelog'] = '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 https://github.com/magicbug/Cloudlog/wiki/Winkey before enabling."; +$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/magicbug/Wavelog/wiki/Winkey before enabling."; $lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; $lang['account_map_params'] = "Map Settings"; diff --git a/application/language/czech/adif_lang.php b/application/language/czech/adif_lang.php index 4000ec252..f2eddfeb6 100644 --- a/application/language/czech/adif_lang.php +++ b/application/language/czech/adif_lang.php @@ -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 all 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 all 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."; /* ___________________________________________________________________________________________ diff --git a/application/language/czech/admin_lang.php b/application/language/czech/admin_lang.php index 827efb946..c1ec50375 100644 --- a/application/language/czech/admin_lang.php +++ b/application/language/czech/admin_lang.php @@ -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."; diff --git a/application/language/czech/awards_lang.php b/application/language/czech/awards_lang.php index 8102d2663..08355a024 100644 --- a/application/language/czech/awards_lang.php +++ b/application/language/czech/awards_lang.php @@ -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 'How to Count Countries Worked, A New DX Scoring System'."; $lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$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."; diff --git a/application/language/czech/general_words_lang.php b/application/language/czech/general_words_lang.php index 2faa97ea6..3be8b5faa 100644 --- a/application/language/czech/general_words_lang.php +++ b/application/language/czech/general_words_lang.php @@ -110,7 +110,7 @@ $lang['general_total_distance'] = 'Celková vzdálenost'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; -// Cloudlog Terms +// Wavelog Terms $lang['wavelog_station_profile'] = 'Umístění stanice'; // ham radio terms diff --git a/application/language/czech/lotw_lang.php b/application/language/czech/lotw_lang.php index b0d860946..8ddc26ea2 100644 --- a/application/language/czech/lotw_lang.php +++ b/application/language/czech/lotw_lang.php @@ -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'; diff --git a/application/language/czech/options_lang.php b/application/language/czech/options_lang.php index 702727b99..29062629a 100644 --- a/application/language/czech/options_lang.php +++ b/application/language/czech/options_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_wavelog_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'; @@ -43,7 +43,7 @@ $lang['options_mail_settings_failed'] = "Something went wrong with saving the se $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. 'wavelog@example.com'"; -$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Cloudlog'"; +$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."; diff --git a/application/language/czech/qso_lang.php b/application/language/czech/qso_lang.php index 67eddeed9..cd9075f06 100644 --- a/application/language/czech/qso_lang.php +++ b/application/language/czech/qso_lang.php @@ -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 here."; +$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 here."; $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 SOTA, IOTA, POTA or WWFF"; diff --git a/application/language/czech/station_lang.php b/application/language/czech/station_lang.php index 01acd54b3..0ef70d26e 100644 --- a/application/language/czech/station_lang.php +++ b/application/language/czech/station_lang.php @@ -57,7 +57,7 @@ $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_callsign'] = 'Station Callsign'; diff --git a/application/language/dutch/account_lang.php b/application/language/dutch/account_lang.php index dd3fde62c..ec6cc15e9 100644 --- a/application/language/dutch/account_lang.php +++ b/application/language/dutch/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio"; $lang['account_callsign'] = 'Callsign'; $lang['account_gridsquare'] = 'Gridsquare'; -$lang['account_wavelog_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_wavelog_language'] = 'Cloudlog Language'; -$lang['account_choose_wavelog_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_wavelog'] = '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 https://github.com/magicbug/Cloudlog/wiki/Winkey before enabling."; +$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/magicbug/Wavelog/wiki/Winkey before enabling."; $lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; $lang['account_map_params'] = "Map Settings"; diff --git a/application/language/dutch/adif_lang.php b/application/language/dutch/adif_lang.php index 4000ec252..f2eddfeb6 100644 --- a/application/language/dutch/adif_lang.php +++ b/application/language/dutch/adif_lang.php @@ -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 all 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 all 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."; /* ___________________________________________________________________________________________ diff --git a/application/language/dutch/admin_lang.php b/application/language/dutch/admin_lang.php index 95df556fd..798c21056 100644 --- a/application/language/dutch/admin_lang.php +++ b/application/language/dutch/admin_lang.php @@ -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."; diff --git a/application/language/dutch/awards_lang.php b/application/language/dutch/awards_lang.php index 8102d2663..08355a024 100644 --- a/application/language/dutch/awards_lang.php +++ b/application/language/dutch/awards_lang.php @@ -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 'How to Count Countries Worked, A New DX Scoring System'."; $lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$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."; diff --git a/application/language/dutch/general_words_lang.php b/application/language/dutch/general_words_lang.php index c1a570c25..88457f533 100644 --- a/application/language/dutch/general_words_lang.php +++ b/application/language/dutch/general_words_lang.php @@ -110,7 +110,7 @@ $lang['general_total_distance'] = 'Total Distance'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; -// Cloudlog Terms +// Wavelog Terms $lang['wavelog_station_profile'] = 'Station Profiel'; // ham radio terms diff --git a/application/language/dutch/lotw_lang.php b/application/language/dutch/lotw_lang.php index e8f15ca10..1f151d667 100644 --- a/application/language/dutch/lotw_lang.php +++ b/application/language/dutch/lotw_lang.php @@ -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'; diff --git a/application/language/dutch/options_lang.php b/application/language/dutch/options_lang.php index f7fb16fc0..0bb4a7818 100644 --- a/application/language/dutch/options_lang.php +++ b/application/language/dutch/options_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('Directe toegang tot scripts is niet toegestaan'); -$lang['options_wavelog_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'; @@ -43,7 +43,7 @@ $lang['options_mail_settings_failed'] = "Something went wrong with saving the se $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. 'wavelog@example.com'"; -$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Cloudlog'"; +$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."; diff --git a/application/language/dutch/qso_lang.php b/application/language/dutch/qso_lang.php index 9d099f7a3..05b2f9d22 100644 --- a/application/language/dutch/qso_lang.php +++ b/application/language/dutch/qso_lang.php @@ -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 here."; +$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 here."; $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 SOTA, IOTA, POTA or WWFF"; diff --git a/application/language/dutch/station_lang.php b/application/language/dutch/station_lang.php index 01acd54b3..0ef70d26e 100644 --- a/application/language/dutch/station_lang.php +++ b/application/language/dutch/station_lang.php @@ -57,7 +57,7 @@ $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_callsign'] = 'Station Callsign'; diff --git a/application/language/english/account_lang.php b/application/language/english/account_lang.php index 1048c01ed..0103d7db1 100644 --- a/application/language/english/account_lang.php +++ b/application/language/english/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio"; $lang['account_callsign'] = 'Callsign'; $lang['account_gridsquare'] = 'Gridsquare'; -$lang['account_wavelog_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_wavelog_language'] = 'Cloudlog Language'; -$lang['account_choose_wavelog_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_wavelog'] = '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 https://github.com/magicbug/Cloudlog/wiki/Winkey before enabling."; +$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/magicbug/Wavelog/wiki/Winkey before enabling."; $lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; $lang['account_map_params'] = "Map Settings"; diff --git a/application/language/english/adif_lang.php b/application/language/english/adif_lang.php index 4bc6753cc..70e223d9c 100644 --- a/application/language/english/adif_lang.php +++ b/application/language/english/adif_lang.php @@ -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 all 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 all 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."; /* ___________________________________________________________________________________________ diff --git a/application/language/english/admin_lang.php b/application/language/english/admin_lang.php index 3b43a6fee..f0510df7e 100644 --- a/application/language/english/admin_lang.php +++ b/application/language/english/admin_lang.php @@ -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."; diff --git a/application/language/english/awards_lang.php b/application/language/english/awards_lang.php index 8102d2663..08355a024 100644 --- a/application/language/english/awards_lang.php +++ b/application/language/english/awards_lang.php @@ -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 'How to Count Countries Worked, A New DX Scoring System'."; $lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$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."; diff --git a/application/language/english/general_words_lang.php b/application/language/english/general_words_lang.php index 3246c61b2..60340fc9f 100644 --- a/application/language/english/general_words_lang.php +++ b/application/language/english/general_words_lang.php @@ -110,7 +110,7 @@ $lang['general_total_distance'] = 'Total Distance'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; -// Cloudlog Terms +// Wavelog Terms $lang['wavelog_station_profile'] = 'Station Location'; // ham radio terms diff --git a/application/language/english/lotw_lang.php b/application/language/english/lotw_lang.php index 788274b12..abaeacddf 100644 --- a/application/language/english/lotw_lang.php +++ b/application/language/english/lotw_lang.php @@ -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'; diff --git a/application/language/english/options_lang.php b/application/language/english/options_lang.php index c8e7f662b..c72f036d7 100644 --- a/application/language/english/options_lang.php +++ b/application/language/english/options_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_wavelog_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'; @@ -43,7 +43,7 @@ $lang['options_mail_settings_failed'] = "Something went wrong with saving the se $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. 'wavelog@example.com'"; -$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Cloudlog'"; +$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."; diff --git a/application/language/english/qso_lang.php b/application/language/english/qso_lang.php index 74e05456b..61d02a6b5 100644 --- a/application/language/english/qso_lang.php +++ b/application/language/english/qso_lang.php @@ -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 here."; +$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 here."; $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 SOTA, IOTA, POTA or WWFF"; diff --git a/application/language/english/station_lang.php b/application/language/english/station_lang.php index 1191b82db..441b9a577 100644 --- a/application/language/english/station_lang.php +++ b/application/language/english/station_lang.php @@ -57,7 +57,7 @@ $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_callsign'] = 'Station Callsign'; diff --git a/application/language/finnish/account_lang.php b/application/language/finnish/account_lang.php index 2505eb491..d7d9a8efa 100644 --- a/application/language/finnish/account_lang.php +++ b/application/language/finnish/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio"; $lang['account_callsign'] = 'Radioamatöörikutsu'; $lang['account_gridsquare'] = 'Gridsquare'; -$lang['account_wavelog_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_wavelog_language'] = 'Cloudlog Language'; -$lang['account_choose_wavelog_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_wavelog'] = '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 https://github.com/magicbug/Cloudlog/wiki/Winkey before enabling."; +$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/magicbug/Wavelog/wiki/Winkey before enabling."; $lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; $lang['account_map_params'] = "Map Settings"; diff --git a/application/language/finnish/adif_lang.php b/application/language/finnish/adif_lang.php index ae21746c9..0e1c72815 100644 --- a/application/language/finnish/adif_lang.php +++ b/application/language/finnish/adif_lang.php @@ -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 all 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 all 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."; /* ___________________________________________________________________________________________ diff --git a/application/language/finnish/admin_lang.php b/application/language/finnish/admin_lang.php index 9db3390e5..8acdceb0e 100644 --- a/application/language/finnish/admin_lang.php +++ b/application/language/finnish/admin_lang.php @@ -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."; diff --git a/application/language/finnish/awards_lang.php b/application/language/finnish/awards_lang.php index 8102d2663..08355a024 100644 --- a/application/language/finnish/awards_lang.php +++ b/application/language/finnish/awards_lang.php @@ -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 'How to Count Countries Worked, A New DX Scoring System'."; $lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$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."; diff --git a/application/language/finnish/general_words_lang.php b/application/language/finnish/general_words_lang.php index 800a34d03..54934250d 100644 --- a/application/language/finnish/general_words_lang.php +++ b/application/language/finnish/general_words_lang.php @@ -110,7 +110,7 @@ $lang['general_total_distance'] = 'Kokonaismatka'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; -// Cloudlog Terms +// Wavelog Terms $lang['wavelog_station_profile'] = 'Asemaprofiili'; // ham radio terms diff --git a/application/language/finnish/lotw_lang.php b/application/language/finnish/lotw_lang.php index 668d99087..e8b8853da 100644 --- a/application/language/finnish/lotw_lang.php +++ b/application/language/finnish/lotw_lang.php @@ -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'; diff --git a/application/language/finnish/notes_lang.php b/application/language/finnish/notes_lang.php index ce2511e48..e28b2e801 100644 --- a/application/language/finnish/notes_lang.php +++ b/application/language/finnish/notes_lang.php @@ -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'; diff --git a/application/language/finnish/options_lang.php b/application/language/finnish/options_lang.php index b01d19b4e..e87cbdb08 100644 --- a/application/language/finnish/options_lang.php +++ b/application/language/finnish/options_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_wavelog_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'; @@ -43,7 +43,7 @@ $lang['options_mail_settings_failed'] = "Something went wrong with saving the se $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. 'wavelog@example.com'"; -$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Cloudlog'"; +$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."; diff --git a/application/language/finnish/qso_lang.php b/application/language/finnish/qso_lang.php index 10124af85..cb736efe7 100644 --- a/application/language/finnish/qso_lang.php +++ b/application/language/finnish/qso_lang.php @@ -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 here."; +$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 here."; $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 SOTA, IOTA, POTA or WWFF"; diff --git a/application/language/finnish/station_lang.php b/application/language/finnish/station_lang.php index 01acd54b3..0ef70d26e 100644 --- a/application/language/finnish/station_lang.php +++ b/application/language/finnish/station_lang.php @@ -57,7 +57,7 @@ $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_callsign'] = 'Station Callsign'; diff --git a/application/language/french/account_lang.php b/application/language/french/account_lang.php index d037d51db..58ae8b2ce 100644 --- a/application/language/french/account_lang.php +++ b/application/language/french/account_lang.php @@ -32,7 +32,7 @@ $lang['account_last_name'] = "Prénom"; $lang['account_callsign'] = "Indicatif"; $lang['account_gridsquare'] = "Locator"; -$lang['account_wavelog_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,7 +46,7 @@ $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_wavelog_language'] = "Langue utilisée par Cloudlog"; +$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"; @@ -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_wavelog'] = "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 https://github.com/magicbug/Cloudlog/wiki/Winkey"; +$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 https://github.com/magicbug/Wavelog/wiki/Winkey"; $lang['account_winkeyer_enabled'] = "Activer Winkeyer"; $lang['account_map_params'] = "Paramètre de la carte"; diff --git a/application/language/french/adif_lang.php b/application/language/french/adif_lang.php index d603eed3d..7dc534640 100644 --- a/application/language/french/adif_lang.php +++ b/application/language/french/adif_lang.php @@ -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 TOUS 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 TOUS 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)"; /* ___________________________________________________________________________________________ diff --git a/application/language/french/admin_lang.php b/application/language/french/admin_lang.php index ab27cde86..bae3d9433 100644 --- a/application/language/french/admin_lang.php +++ b/application/language/french/admin_lang.php @@ -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."; diff --git a/application/language/french/awards_lang.php b/application/language/french/awards_lang.php index 208a52726..764b82408 100644 --- a/application/language/french/awards_lang.php +++ b/application/language/french/awards_lang.php @@ -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 'How to Count Countries Worked, A New DX Scoring System'."; $lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$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."; diff --git a/application/language/french/general_words_lang.php b/application/language/french/general_words_lang.php index 8dca91a7a..d85e944eb 100644 --- a/application/language/french/general_words_lang.php +++ b/application/language/french/general_words_lang.php @@ -110,7 +110,7 @@ $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 +// Wavelog Terms $lang['wavelog_station_profile'] = "Profil de la Station"; // ham radio terms diff --git a/application/language/french/lotw_lang.php b/application/language/french/lotw_lang.php index 58ba91335..de9de8fc8 100644 --- a/application/language/french/lotw_lang.php +++ b/application/language/french/lotw_lang.php @@ -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.
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.
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"; diff --git a/application/language/french/options_lang.php b/application/language/french/options_lang.php index c8e7f662b..c72f036d7 100644 --- a/application/language/french/options_lang.php +++ b/application/language/french/options_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_wavelog_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'; @@ -43,7 +43,7 @@ $lang['options_mail_settings_failed'] = "Something went wrong with saving the se $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. 'wavelog@example.com'"; -$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Cloudlog'"; +$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."; diff --git a/application/language/french/qso_lang.php b/application/language/french/qso_lang.php index 567fde91b..fa5215ef4 100644 --- a/application/language/french/qso_lang.php +++ b/application/language/french/qso_lang.php @@ -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 here."; +$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 here."; $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 SOTA, IOTA, POTA or WWFF"; diff --git a/application/language/french/station_lang.php b/application/language/french/station_lang.php index 6fe0fbe60..b3711a33a 100644 --- a/application/language/french/station_lang.php +++ b/application/language/french/station_lang.php @@ -57,7 +57,7 @@ $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_callsign'] = 'Station Callsign'; diff --git a/application/language/german/account_lang.php b/application/language/german/account_lang.php index 7ed2fdffc..d243e9238 100644 --- a/application/language/german/account_lang.php +++ b/application/language/german/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio"; $lang['account_callsign'] = 'Rufzeichen'; $lang['account_gridsquare'] = 'Planquadrat'; -$lang['account_wavelog_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_wavelog_language'] = 'Cloudlog Sprache'; -$lang['account_choose_wavelog_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_wavelog'] = '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 https://github.com/magicbug/Cloudlog/wiki/Winkey bevor du ihn einschaltest."; +$lang['account_winkeyer_hint'] = "Die Winkeyer Unterstützung in Wavelog ist sehr experimentell. Lese zuerst den Wikieintrag auf https://github.com/magicbug/Wavelog/wiki/Winkey bevor du ihn einschaltest."; $lang['account_winkeyer_enabled'] = "Winkeyer Features Eingeschaltet"; $lang['account_map_params'] = "Karten Einstellungen"; diff --git a/application/language/german/adif_lang.php b/application/language/german/adif_lang.php index 55ef8feeb..b976f019d 100644 --- a/application/language/german/adif_lang.php +++ b/application/language/german/adif_lang.php @@ -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 alle 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 alle 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."; diff --git a/application/language/german/admin_lang.php b/application/language/german/admin_lang.php index f56b36d3b..a659eb5c1 100644 --- a/application/language/german/admin_lang.php +++ b/application/language/german/admin_lang.php @@ -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."; diff --git a/application/language/german/awards_lang.php b/application/language/german/awards_lang.php index 54f1b3c9a..a6d340702 100644 --- a/application/language/german/awards_lang.php +++ b/application/language/german/awards_lang.php @@ -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 'How to Count Countries Worked, A New DX Scoring System' erstellt wurde."; $lang['awards_dxcc_description_ln3'] = "Sie finden alle Informationen zum DXCC Diplom auf der ARRL-Website."; -$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."; diff --git a/application/language/german/general_words_lang.php b/application/language/german/general_words_lang.php index 28e59f787..58d8c9ba7 100644 --- a/application/language/german/general_words_lang.php +++ b/application/language/german/general_words_lang.php @@ -110,7 +110,7 @@ $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 +// Wavelog Terms $lang['wavelog_station_profile'] = 'Stationsprofil'; // ham radio terms diff --git a/application/language/german/lotw_lang.php b/application/language/german/lotw_lang.php index 52f985b6e..fde758d20 100644 --- a/application/language/german/lotw_lang.php +++ b/application/language/german/lotw_lang.php @@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = 'Logdateien müssen den Dateityp .adi ha $lang['lotw_pull_lotw_data_for_me'] = 'Lade LoTW-Daten für mich'; $lang['lotw_select_callsign'] = 'Rufzeichen, für das LoTW Bestätigungen geladen werden sollen'; -$lang['lotw_report_download_overview_helptext'] = 'Cloudlog nutzt Benutzername und Passwort, welche in Deinem Benutzerprofil gespeichert sind, um einen Report vom LoTW zu laden. Der Report, den Cloudlog lädt, enthält alle Bestätigungen seit dem gewählten Datum oder seit der letzen LoTW-Bestätigung (wird aus Deinem Log extrahiert) bis jetzt.'; +$lang['lotw_report_download_overview_helptext'] = 'Wavelog nutzt Benutzername und Passwort, welche in Deinem Benutzerprofil gespeichert sind, um einen Report vom LoTW zu laden. Der Report, den Wavelog lädt, enthält alle Bestätigungen seit dem gewählten Datum oder seit der letzen LoTW-Bestätigung (wird aus Deinem Log extrahiert) bis jetzt.'; // Buttons $lang['lotw_btn_lotw_import'] = 'LoTW-Import'; diff --git a/application/language/german/options_lang.php b/application/language/german/options_lang.php index 4b985b01b..3ccc84e55 100644 --- a/application/language/german/options_lang.php +++ b/application/language/german/options_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('Direkter Zugriff auf Skripte ist nicht erlaubt'); -$lang['options_wavelog_options'] = 'Cloudlog Optionen'; -$lang['options_message1'] = 'Cloudlog Optionen sind globe Einstellungen, die für alle Benutzer der Installation genutzt werden. Sie können auf Benutzerebene überschrieben werden, wenn eine entsprechende Option auf Benutzerebene vorhanden ist.'; +$lang['options_wavelog_options'] = 'Wavelog Optionen'; +$lang['options_message1'] = 'Wavelog Optionen sind globe Einstellungen, die für alle Benutzer der Installation genutzt werden. Sie können auf Benutzerebene überschrieben werden, wenn eine entsprechende Option auf Benutzerebene vorhanden ist.'; $lang['options_appearance'] = 'Erscheinungsbild'; $lang['options_theme'] = 'Thema'; @@ -43,7 +43,7 @@ $lang['options_mail_settings_failed'] = "Beim Speichern ist was schief gelaufen. $lang['options_outgoing_protocol_hint'] = "Das Protokoll, mit dem E-Mails versendet werden."; $lang['options_smtp_encryption_hint'] = "Wähle ob E-Mails mit TLS oder SSL versendet werden sollen."; $lang['options_email_address_hint'] = "Die E-Mail Adresse von der die Mails versendet werden, z.B. 'wavelog@example.com'"; -$lang['options_email_sender_name_hint'] = "Der Name des Absenders, z.B. 'Cloudlog'"; +$lang['options_email_sender_name_hint'] = "Der Name des Absenders, z.B. 'Wavelog'"; $lang['options_smtp_host_hint'] = "Der Hostname des Mailservers, z.B. 'mail.example.com' (ohne 'ssl://' or 'tls://')"; $lang['options_smtp_port_hint'] = "Der SMTP Port des Mailservers, z.B. für TLS -> '587', für SSL -> '465'"; $lang['options_smtp_username_hint'] = "Der Benutzername um sich am Mailserver anzumelden. Normalerweise ist dies die E-Mail Adresse."; diff --git a/application/language/german/qso_lang.php b/application/language/german/qso_lang.php index 6224b7213..ebdb67ead 100644 --- a/application/language/german/qso_lang.php +++ b/application/language/german/qso_lang.php @@ -25,7 +25,7 @@ $lang['qso_sig_info_helptext'] = 'Zum Beispiel: DA/NW-357'; $lang['qso_dok_helptext'] = 'Zum Beispiel: Q03'; -$lang['qso_notes_helptext'] = 'Notizeninhalt wird nur innerhalb von Cloudlog genutzt und nicht an andere Dienste weitergegeben.'; +$lang['qso_notes_helptext'] = 'Notizeninhalt wird nur innerhalb von Wavelog genutzt und nicht an andere Dienste weitergegeben.'; $lang['qsl_notes_helptext'] = 'Dieser Notizeninhalt wird an QSL Services wie eqsl.cc exportiert.'; $lang['qso_eqsl_qslmsg_helptext'] = "Setze die eQSL Nachricht auf den Standardtext zurück."; @@ -53,7 +53,7 @@ $lang['qso_simplefle_info'] = "Was ist das?"; $lang['qso_simplefle_info_ln1'] = "Einfaches Fast Log Entry (FLE)"; $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry' oder einfach 'FLE' ist ein System um QSO sehr schnell und effizient zu loggen. Aufgrund seiner Syntax sind nur minimale Eingaben erforderlich, um mit möglichst geringem Aufwand viele QSOs zu erfassen."; $lang['qso_simplefle_info_ln3'] = "FLE wurde ursprünglich von DF3CB geschrieben. Auf seiner Website bietet er ein Programm für Windows an. Simple FLE wurde von OK2CQR auf Basis des FLE von DF3CB geschrieben und bietet eine Webapplikation zum Erfassen von QSOs."; -$lang['qso_simplefle_info_ln4'] = "Ein üblicher Anwendungsfall ist, wenn Sie Ihre Papier-Logbücher von einer Outdoor-Aktion erfassen müssen und SimpleFLE nun auch in Cloudlog verfügbar. Informationen über die allgemeine Syntax und Handhabung gibt es hier."; +$lang['qso_simplefle_info_ln4'] = "Ein üblicher Anwendungsfall ist, wenn Sie Ihre Papier-Logbücher von einer Outdoor-Aktion erfassen müssen und SimpleFLE nun auch in Wavelog verfügbar. Informationen über die allgemeine Syntax und Handhabung gibt es hier."; $lang['qso_simplefle_qso_data'] = "QSO Daten"; $lang['qso_simplefle_qso_date_hint'] = "Wenn du kein Datum auswählst, wird das heutige Datum verwendet."; $lang['qso_simplefle_qso_list'] = "QSO Liste"; @@ -67,7 +67,7 @@ $lang['qso_simplefle_utc_time'] = "Aktuelle UTC Zeit"; $lang['qso_simplefle_enter_the_data'] = "Gibt hier die Daten ein"; $lang['qso_simplefle_syntax_help_close_w_sample'] = "Schliesse und Lade Beispiel Daten"; $lang['qso_simplefle_reload'] = "Aktualisiere QSO Liste"; -$lang['qso_simplefle_save'] = "Speichere in Cloudlog"; +$lang['qso_simplefle_save'] = "Speichere in Wavelog"; $lang['qso_simplefle_clear'] = "Lösche QSO Daten"; $lang['qso_simplefle_refs_hint'] = "Die Ref. kann entweder SOTA, IOTA, POTA oder WWFF sein."; diff --git a/application/language/german/station_lang.php b/application/language/german/station_lang.php index 86846e851..92a80f20c 100644 --- a/application/language/german/station_lang.php +++ b/application/language/german/station_lang.php @@ -57,7 +57,7 @@ $lang['station_location_edit'] = 'Bearbeite Stationsstandort: '; $lang['station_location_updated_suff'] = ' aktualisiert.'; // nur letztes Wort im Satz "XYZ wurde aktualisiert" $lang['station_location_warning'] = 'Achtung: Du musst einen aktiven Stationsstandort auswählen. Gehe zu Rufzeichen -> Stationsstandorte um einen zu aktivieren.'; $lang['station_location_reassign_at'] = 'Bitte mache die Zuordnung in '; -$lang['station_location_warning_reassign'] = 'Aufgrund von Änderungen in Cloudlog musst du QSOs wieder einem Stationsstandort zuordnen.'; +$lang['station_location_warning_reassign'] = 'Aufgrund von Änderungen in Wavelog musst du QSOs wieder einem Stationsstandort zuordnen.'; $lang['station_location_name'] = 'Station Name'; $lang['station_location_name_hint'] = 'Kurzname für den Stationsstandort. Zum Beispiel: Home (IO87IP)'; $lang['station_location_callsign'] = 'Station Rufzeichen'; diff --git a/application/language/greek/account_lang.php b/application/language/greek/account_lang.php index 2fc57257d..23638f623 100644 --- a/application/language/greek/account_lang.php +++ b/application/language/greek/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio"; $lang['account_callsign'] = 'Callsign'; $lang['account_gridsquare'] = 'Gridsquare'; -$lang['account_wavelog_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_wavelog_language'] = 'Cloudlog Language'; -$lang['account_choose_wavelog_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_wavelog'] = '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 https://github.com/magicbug/Cloudlog/wiki/Winkey before enabling."; +$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/magicbug/Wavelog/wiki/Winkey before enabling."; $lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; $lang['account_map_params'] = "Map Settings"; diff --git a/application/language/greek/adif_lang.php b/application/language/greek/adif_lang.php index 4000ec252..f2eddfeb6 100644 --- a/application/language/greek/adif_lang.php +++ b/application/language/greek/adif_lang.php @@ -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 all 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 all 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."; /* ___________________________________________________________________________________________ diff --git a/application/language/greek/admin_lang.php b/application/language/greek/admin_lang.php index 3b43a6fee..f0510df7e 100644 --- a/application/language/greek/admin_lang.php +++ b/application/language/greek/admin_lang.php @@ -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."; diff --git a/application/language/greek/awards_lang.php b/application/language/greek/awards_lang.php index 8102d2663..08355a024 100644 --- a/application/language/greek/awards_lang.php +++ b/application/language/greek/awards_lang.php @@ -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 'How to Count Countries Worked, A New DX Scoring System'."; $lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$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."; diff --git a/application/language/greek/general_words_lang.php b/application/language/greek/general_words_lang.php index 93d058291..d8338ed90 100644 --- a/application/language/greek/general_words_lang.php +++ b/application/language/greek/general_words_lang.php @@ -110,7 +110,7 @@ $lang['general_total_distance'] = 'Συνολική Απόσταση'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; -// Cloudlog Terms +// Wavelog Terms $lang['wavelog_station_profile'] = 'Τοποθεσία Σταθμού'; // ham radio terms diff --git a/application/language/greek/lotw_lang.php b/application/language/greek/lotw_lang.php index ec4cf4fee..fb052d09f 100644 --- a/application/language/greek/lotw_lang.php +++ b/application/language/greek/lotw_lang.php @@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = 'Τα αρχεία καταγραφής $lang['lotw_pull_lotw_data_for_me'] = 'Τραβήξτε δεδομένα LoTW για μένα'; $lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; -$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'; diff --git a/application/language/greek/options_lang.php b/application/language/greek/options_lang.php index c8e7f662b..c72f036d7 100644 --- a/application/language/greek/options_lang.php +++ b/application/language/greek/options_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_wavelog_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'; @@ -43,7 +43,7 @@ $lang['options_mail_settings_failed'] = "Something went wrong with saving the se $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. 'wavelog@example.com'"; -$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Cloudlog'"; +$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."; diff --git a/application/language/greek/qso_lang.php b/application/language/greek/qso_lang.php index 8b94c41f5..4f2b93cdb 100644 --- a/application/language/greek/qso_lang.php +++ b/application/language/greek/qso_lang.php @@ -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'] = "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 here."; +$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 here."; $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 SOTA, IOTA, POTA or WWFF"; diff --git a/application/language/greek/station_lang.php b/application/language/greek/station_lang.php index 01acd54b3..0ef70d26e 100644 --- a/application/language/greek/station_lang.php +++ b/application/language/greek/station_lang.php @@ -57,7 +57,7 @@ $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_callsign'] = 'Station Callsign'; diff --git a/application/language/italian/account_lang.php b/application/language/italian/account_lang.php index aef83941f..684e694c4 100644 --- a/application/language/italian/account_lang.php +++ b/application/language/italian/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio"; $lang['account_callsign'] = 'Callsign'; $lang['account_gridsquare'] = 'Gridsquare'; -$lang['account_wavelog_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_wavelog_language'] = 'Cloudlog Language'; -$lang['account_choose_wavelog_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_wavelog'] = '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 https://github.com/magicbug/Cloudlog/wiki/Winkey before enabling."; +$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/magicbug/Wavelog/wiki/Winkey before enabling."; $lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; $lang['account_map_params'] = "Map Settings"; diff --git a/application/language/italian/adif_lang.php b/application/language/italian/adif_lang.php index 4000ec252..f2eddfeb6 100644 --- a/application/language/italian/adif_lang.php +++ b/application/language/italian/adif_lang.php @@ -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 all 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 all 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."; /* ___________________________________________________________________________________________ diff --git a/application/language/italian/admin_lang.php b/application/language/italian/admin_lang.php index 3b43a6fee..f0510df7e 100644 --- a/application/language/italian/admin_lang.php +++ b/application/language/italian/admin_lang.php @@ -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."; diff --git a/application/language/italian/awards_lang.php b/application/language/italian/awards_lang.php index 8102d2663..08355a024 100644 --- a/application/language/italian/awards_lang.php +++ b/application/language/italian/awards_lang.php @@ -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 'How to Count Countries Worked, A New DX Scoring System'."; $lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$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."; diff --git a/application/language/italian/general_words_lang.php b/application/language/italian/general_words_lang.php index 561974d29..95eeba3d6 100644 --- a/application/language/italian/general_words_lang.php +++ b/application/language/italian/general_words_lang.php @@ -110,7 +110,7 @@ $lang['general_total_distance'] = 'Distanza Totale'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; -// Cloudlog Terms +// Wavelog Terms $lang['wavelog_station_profile'] = 'Luogo Stazione'; // ham radio terms diff --git a/application/language/italian/lotw_lang.php b/application/language/italian/lotw_lang.php index 18e06555f..68a2a940d 100644 --- a/application/language/italian/lotw_lang.php +++ b/application/language/italian/lotw_lang.php @@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = 'I file di log devono essere di tipo .ad $lang['lotw_pull_lotw_data_for_me'] = 'Ottieni dati da LoTW per me'; $lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; -$lang['lotw_report_download_overview_helptext'] ='Cloudlog userà il nome utente e password LoTW memorizzato nel tuo profilo per scaricare un report da LoTW per te. Il report scaricato da Cloudlog avrà tutte le conferme fino alla data scelta, o fino alla ultima conferma su LoTW (recuperato dal tuo log), fino ad ora.'; +$lang['lotw_report_download_overview_helptext'] ='Wavelog userà il nome utente e password LoTW memorizzato nel tuo profilo per scaricare un report da LoTW per te. Il report scaricato da Wavelog avrà tutte le conferme fino alla data scelta, o fino alla ultima conferma su LoTW (recuperato dal tuo log), fino ad ora.'; // Buttons $lang['lotw_btn_lotw_import'] = 'Importa LoTW'; diff --git a/application/language/italian/options_lang.php b/application/language/italian/options_lang.php index c8e7f662b..c72f036d7 100644 --- a/application/language/italian/options_lang.php +++ b/application/language/italian/options_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_wavelog_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'; @@ -43,7 +43,7 @@ $lang['options_mail_settings_failed'] = "Something went wrong with saving the se $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. 'wavelog@example.com'"; -$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Cloudlog'"; +$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."; diff --git a/application/language/italian/qso_lang.php b/application/language/italian/qso_lang.php index 01f8b0739..e8edeb789 100644 --- a/application/language/italian/qso_lang.php +++ b/application/language/italian/qso_lang.php @@ -25,7 +25,7 @@ $lang['qso_sig_info_helptext'] = 'Per esempio: DA/NW-357'; $lang['qso_dok_helptext'] = 'Per esempio: Q03'; -$lang['qso_notes_helptext'] = 'Il contenuto della nota viene utilizzato solo all interno di Cloudlog e non viene esportato in altri servizi.'; +$lang['qso_notes_helptext'] = 'Il contenuto della nota viene utilizzato solo all interno di Wavelog e non viene esportato in altri servizi.'; $lang['qsl_notes_helptext'] = 'Il contenuto di questa nota è esportato a servizi QSL come 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 here."; +$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 here."; $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 SOTA, IOTA, POTA or WWFF"; diff --git a/application/language/italian/station_lang.php b/application/language/italian/station_lang.php index 01acd54b3..0ef70d26e 100644 --- a/application/language/italian/station_lang.php +++ b/application/language/italian/station_lang.php @@ -57,7 +57,7 @@ $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_callsign'] = 'Station Callsign'; diff --git a/application/language/polish/account_lang.php b/application/language/polish/account_lang.php index 548957e53..2baeeafe6 100644 --- a/application/language/polish/account_lang.php +++ b/application/language/polish/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio"; $lang['account_callsign'] = 'Callsign'; $lang['account_gridsquare'] = 'Gridsquare'; -$lang['account_wavelog_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_wavelog_language'] = 'Cloudlog Language'; -$lang['account_choose_wavelog_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_wavelog'] = '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 https://github.com/magicbug/Cloudlog/wiki/Winkey before enabling."; +$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/magicbug/Wavelog/wiki/Winkey before enabling."; $lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; $lang['account_map_params'] = "Map Settings"; diff --git a/application/language/polish/adif_lang.php b/application/language/polish/adif_lang.php index 4000ec252..f2eddfeb6 100644 --- a/application/language/polish/adif_lang.php +++ b/application/language/polish/adif_lang.php @@ -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 all 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 all 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."; /* ___________________________________________________________________________________________ diff --git a/application/language/polish/admin_lang.php b/application/language/polish/admin_lang.php index 3b43a6fee..f0510df7e 100644 --- a/application/language/polish/admin_lang.php +++ b/application/language/polish/admin_lang.php @@ -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."; diff --git a/application/language/polish/awards_lang.php b/application/language/polish/awards_lang.php index 8102d2663..08355a024 100644 --- a/application/language/polish/awards_lang.php +++ b/application/language/polish/awards_lang.php @@ -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 'How to Count Countries Worked, A New DX Scoring System'."; $lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$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."; diff --git a/application/language/polish/general_words_lang.php b/application/language/polish/general_words_lang.php index feda9eef3..9ce44d79c 100644 --- a/application/language/polish/general_words_lang.php +++ b/application/language/polish/general_words_lang.php @@ -110,7 +110,7 @@ $lang['general_total_distance'] = 'Suma odległości'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; -// Cloudlog Terms +// Wavelog Terms $lang['wavelog_station_profile'] = 'Lokalizacja stacji'; // ham radio terms diff --git a/application/language/polish/lotw_lang.php b/application/language/polish/lotw_lang.php index 51054880d..05e84dd89 100644 --- a/application/language/polish/lotw_lang.php +++ b/application/language/polish/lotw_lang.php @@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = 'Pliki logu muszą mieć rozszerzenie .a $lang['lotw_pull_lotw_data_for_me'] = 'Pobierz dane z LoTW za mnie'; $lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; -$lang['lotw_report_download_overview_helptext'] ='Cloudlog będzie używał loginu i hasła podanego w profilu, aby pobierać raporty z LoTW.Raport będzie zawierał wszystkie potwierdzenia od wybranej daty, lub ostatniej potwierdzonej łączności z LoTW (wybranej z logiu), do teraz.'; +$lang['lotw_report_download_overview_helptext'] ='Wavelog będzie używał loginu i hasła podanego w profilu, aby pobierać raporty z LoTW.Raport będzie zawierał wszystkie potwierdzenia od wybranej daty, lub ostatniej potwierdzonej łączności z LoTW (wybranej z logiu), do teraz.'; // Buttons $lang['lotw_btn_lotw_import'] = 'LoTW Import'; diff --git a/application/language/polish/options_lang.php b/application/language/polish/options_lang.php index c8e7f662b..c72f036d7 100644 --- a/application/language/polish/options_lang.php +++ b/application/language/polish/options_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_wavelog_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'; @@ -43,7 +43,7 @@ $lang['options_mail_settings_failed'] = "Something went wrong with saving the se $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. 'wavelog@example.com'"; -$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Cloudlog'"; +$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."; diff --git a/application/language/polish/qso_lang.php b/application/language/polish/qso_lang.php index ef8227f0b..45aac94cd 100644 --- a/application/language/polish/qso_lang.php +++ b/application/language/polish/qso_lang.php @@ -25,7 +25,7 @@ $lang['qso_sig_info_helptext'] = 'Na przykład: DA/NW-357'; $lang['qso_dok_helptext'] = 'Na przykład: Q03'; -$lang['qso_notes_helptext'] = 'Notatka jest widoczna tylko w Cloudlog, nie jest wysyłana z potwierdzeniami.'; +$lang['qso_notes_helptext'] = 'Notatka jest widoczna tylko w Wavelog, nie jest wysyłana z potwierdzeniami.'; $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 here."; +$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 here."; $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 SOTA, IOTA, POTA or WWFF"; diff --git a/application/language/polish/station_lang.php b/application/language/polish/station_lang.php index 01acd54b3..0ef70d26e 100644 --- a/application/language/polish/station_lang.php +++ b/application/language/polish/station_lang.php @@ -57,7 +57,7 @@ $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_callsign'] = 'Station Callsign'; diff --git a/application/language/russian/account_lang.php b/application/language/russian/account_lang.php index bd45504d6..aa59140e0 100644 --- a/application/language/russian/account_lang.php +++ b/application/language/russian/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio"; $lang['account_callsign'] = 'Позывной'; $lang['account_gridsquare'] = 'QTH локатор'; -$lang['account_wavelog_preferences'] = 'Настройки Cloudlog'; +$lang['account_wavelog_preferences'] = 'Настройки Wavelog'; $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_wavelog_language'] = 'Язык Cloudlog'; -$lang['account_choose_wavelog_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_wavelog'] = 'Вход в 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'] = "Поддержка Winkeyer в Cloudlog в стадии эксперимента, прочитайте сначала вики (https://github.com/magicbug/Cloudlog/wiki/Winkey) перед включением."; +$lang['account_winkeyer_hint'] = "Поддержка Winkeyer в Wavelog в стадии эксперимента, прочитайте сначала вики (https://github.com/magicbug/Wavelog/wiki/Winkey) перед включением."; $lang['account_winkeyer_enabled'] = "Функционал Winkeyer включен"; $lang['account_map_params'] = "Map Settings"; diff --git a/application/language/russian/adif_lang.php b/application/language/russian/adif_lang.php index f00129e20..817d646b7 100644 --- a/application/language/russian/adif_lang.php +++ b/application/language/russian/adif_lang.php @@ -41,12 +41,12 @@ $lang['adif_mark_imported_qrz'] = "Отметить импортированны $lang['adif_mark_imported_clublog'] = "Отметить импортированные QSO, как загруженные в журнал Clublog"; $lang['adif_dxcc_from_adif'] = "Использовать информацию о DXCC из ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "Если не отмечено, Cloudlog будет пытаться определить информацию о DXCC автоматически."; +$lang['adif_dxcc_from_adif_hint'] = "Если не отмечено, Wavelog будет пытаться определить информацию о DXCC автоматически."; $lang['adif_always_use_login_call_as_op'] = "Всегда использовать позывной (логин) как имя оператора при импорте"; $lang['adif_ignore_station_call'] = "Игнорировать позывной станции при импорте"; -$lang['adif_ignore_station_call_hint'] = "Если отмечено, Cloudlog попытается импортировать все QSO из ADIF, независимо от соответствия из выбранному расположению станции."; +$lang['adif_ignore_station_call_hint'] = "Если отмечено, Wavelog попытается импортировать все QSO из ADIF, независимо от соответствия из выбранному расположению станции."; $lang['adif_upload'] = "Загрузить"; @@ -94,10 +94,10 @@ $lang['only_confirmed_qsos'] = "Импортировать только данн $lang['only_confirmed_qsos_hint'] = "Снисите отметку, если вы также хотите обновить данные DOK из QSO, не подтверждённых на DCL."; $lang['overwrite_by_dcl'] = "Перезаписать имеющиеся данные в журнале DOK данными из DCL (если они различны)"; -$lang['overwrite_by_dcl_hint'] = "Если отмеченно, то Cloudlog принудительно перезапишет имеющиемя данные DOK данными из журнала DCL."; +$lang['overwrite_by_dcl_hint'] = "Если отмеченно, то Wavelog принудительно перезапишет имеющиемя данные DOK данными из журнала DCL."; $lang['ignore_ambiguous'] = "Игнорировать несовпадающиe QSO"; -$lang['ignore_ambiguous_hint'] = "Если не отмечено, будет отображена информация о QSO, не найденных в Cloudlog."; +$lang['ignore_ambiguous_hint'] = "Если не отмечено, будет отображена информация о QSO, не найденных в Wavelog."; /* ___________________________________________________________________________________________ diff --git a/application/language/russian/admin_lang.php b/application/language/russian/admin_lang.php index fa0d02315..ac98e32de 100644 --- a/application/language/russian/admin_lang.php +++ b/application/language/russian/admin_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['admin_user_line1'] = 'Для работы Cloudlog требуется хотя наличие хотя бы одного пользовательского аккаунта.'; -$lang['admin_user_line2'] = 'Пользователям могут быть назначены роли, которые предоставляют им различные права, например, добавление QSO в журнал и доступ к API Cloudlog.'; +$lang['admin_user_line1'] = 'Для работы Wavelog требуется хотя наличие хотя бы одного пользовательского аккаунта.'; +$lang['admin_user_line2'] = 'Пользователям могут быть назначены роли, которые предоставляют им различные права, например, добавление QSO в журнал и доступ к API Wavelog.'; $lang['admin_user_line3'] = 'Текущий вошедший в систему пользователь отображается в правом верхнем углу каждой страницы.'; $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."; diff --git a/application/language/russian/awards_lang.php b/application/language/russian/awards_lang.php index 88dc4f9bc..b62c49486 100644 --- a/application/language/russian/awards_lang.php +++ b/application/language/russian/awards_lang.php @@ -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 'How to Count Countries Worked, A New DX Scoring System'."; $lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$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."; diff --git a/application/language/russian/general_words_lang.php b/application/language/russian/general_words_lang.php index dcf104bc0..b8e58246f 100644 --- a/application/language/russian/general_words_lang.php +++ b/application/language/russian/general_words_lang.php @@ -111,7 +111,7 @@ $lang['general_total_distance'] = 'Суммарная дистанция'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = 'Максимальный размер загружаемого файла '; -// Cloudlog Terms +// Wavelog Terms $lang['wavelog_station_profile'] = 'Месторасположение станции'; $lang['gen_hamradio_cq'] = "CQ"; diff --git a/application/language/russian/lotw_lang.php b/application/language/russian/lotw_lang.php index c384473fe..81361366b 100644 --- a/application/language/russian/lotw_lang.php +++ b/application/language/russian/lotw_lang.php @@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = 'Файлы журнала должны $lang['lotw_pull_lotw_data_for_me'] = 'Подтянуть мои данные из LoTW'; $lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; -$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'; diff --git a/application/language/russian/options_lang.php b/application/language/russian/options_lang.php index aaabf95c4..ee978f533 100644 --- a/application/language/russian/options_lang.php +++ b/application/language/russian/options_lang.php @@ -43,7 +43,7 @@ $lang['options_mail_settings_failed'] = "Что-то пошло не так с $lang['options_outgoing_protocol_hint'] = "Протокол, который будет использоваться для отправки емэйл."; $lang['options_smtp_encryption_hint'] = "Выберите, что будет использоваться при отправке емэйл: TLS или SSL."; $lang['options_email_address_hint'] = "Адрес, с которого будет отправляться емэйл, к примеру, 'wavelog@example.com'"; -$lang['options_email_sender_name_hint'] = "Имя отправителя, к примеру, 'Cloudlog'"; +$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'] = "Имя пользователя для входа на почтовый сервер, обычно это -- указанный выше адрес емэйл."; diff --git a/application/language/russian/qso_lang.php b/application/language/russian/qso_lang.php index e0efcc36d..345299c08 100644 --- a/application/language/russian/qso_lang.php +++ b/application/language/russian/qso_lang.php @@ -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'] = "Get the default message for eQSL, for this station."; @@ -53,7 +53,7 @@ $lang['qso_simplefle_info'] = "Что это?"; $lang['qso_simplefle_info_ln1'] = "Simple Fast Log Entry (FLE)"; $lang['qso_simplefle_info_ln2'] = "Fast Log Entry, или просто FLE, - это система, позволяющая очень быстро и эффективно регистрировать QSO. Благодаря своему синтаксису, для регистрации большого количества QSO требуется минимум вводных данных при минимальных усилиях."; $lang['qso_simplefle_info_ln3'] = "Изначально FLE была написана DF3CB. На своем сайте он предлагает программу для Windows. Программа Simple FLE была написана OK2CQR на основе FLE от DF3CB и предоставляет веб-интерфейс для регистрации QSO."; -$lang['qso_simplefle_info_ln4'] = "Часто используется для импорта бумажных журналов из открытых сессий, и теперь SimpleFLE также доступен в Cloudlog. Информацию о синтаксисе и принципах работы FLE можно найти здесь."; +$lang['qso_simplefle_info_ln4'] = "Часто используется для импорта бумажных журналов из открытых сессий, и теперь SimpleFLE также доступен в Wavelog. Информацию о синтаксисе и принципах работы FLE можно найти здесь."; $lang['qso_simplefle_qso_data'] = "Данные QSOa"; $lang['qso_simplefle_qso_date_hint'] = "Если вы не выберете дату, будет использована сегодняшняя."; $lang['qso_simplefle_qso_list'] = "Список QSO"; @@ -67,7 +67,7 @@ $lang['qso_simplefle_utc_time'] = "Текущее время UTC"; $lang['qso_simplefle_enter_the_data'] = "Введите данные"; $lang['qso_simplefle_syntax_help_close_w_sample'] = "Закройте и загрузите образец данных"; $lang['qso_simplefle_reload'] = "Перезагрузить список QSO"; -$lang['qso_simplefle_save'] = "Сохранить в Cloudlog"; +$lang['qso_simplefle_save'] = "Сохранить в Wavelog"; $lang['qso_simplefle_clear'] = "Очистить сессию логгирования"; $lang['qso_simplefle_refs_hint'] = "Референции могут быть: SOTA, IOTA, POTA или WWFF"; diff --git a/application/language/russian/station_lang.php b/application/language/russian/station_lang.php index 00f1460ca..064341db9 100644 --- a/application/language/russian/station_lang.php +++ b/application/language/russian/station_lang.php @@ -57,7 +57,7 @@ $lang['station_location_edit'] = 'Редактировать расположе $lang['station_location_updated_suff'] = ' Обновлено.'; $lang['station_location_warning'] = 'Внимание. Вам нужно установить активное расположение станции. Перейдите в меню Позывной->Расположение станции, чтобы выбрать.'; $lang['station_location_reassign_at'] = 'Пожалуйста, переназначьте их в '; -$lang['station_location_warning_reassign'] = 'Из-за недавних изменений в Cloudlog вам нужно переназначить QSO вашим профилям станции.'; +$lang['station_location_warning_reassign'] = 'Из-за недавних изменений в Wavelog вам нужно переназначить QSO вашим профилям станции.'; $lang['station_location_name'] = 'Название профиля'; $lang['station_location_name_hint'] = 'Короткое название профиля расположения станции, к примеру: Home (IO87IP)'; $lang['station_location_callsign'] = 'Позывной станции'; diff --git a/application/language/spanish/account_lang.php b/application/language/spanish/account_lang.php index 327b4f518..73ffaf159 100644 --- a/application/language/spanish/account_lang.php +++ b/application/language/spanish/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Información de Radioaficionado"; $lang['account_callsign'] = 'Indicativo'; $lang['account_gridsquare'] = 'Gridsquare'; -$lang['account_wavelog_preferences'] = 'Preferencias de Cloudlog'; +$lang['account_wavelog_preferences'] = 'Preferencias de Wavelog'; $lang['account_timezone'] = 'Zona Horaria'; $lang['account_date_format'] = 'Formato de Fecha'; $lang['account_log_end_time'] = 'Guardar Hora de Finalización para QSOs Separadamente'; @@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Guardar Indicativo"; $lang['account_measurement_preferences'] = 'Preferencias de Medidas'; $lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Seleccione cómo le gustaría ver las fechas cuando inicie sesión en su cuenta.'; $lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Seleccione qué unidad de distancia usar y mostrar cuando inicie sesión en su cuenta.'; -$lang['account_wavelog_language'] = 'Lenguaje de Cloudlog'; -$lang['account_choose_wavelog_language'] = 'Seleccione el lenguaje de Cloudlog a mostrar cuando inicie sesión en su cuenta.'; +$lang['account_wavelog_language'] = 'Lenguaje de Wavelog'; +$lang['account_choose_wavelog_language'] = 'Seleccione el lenguaje de Wavelog a mostrar cuando inicie sesión en su cuenta.'; $lang['account_main_menu'] = 'Opciones de Menú'; $lang['account_show_notes_in_the_main_menu'] = 'Mostrar notas en el Menú Principal.'; @@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Confirmar Contraseña'; $lang['account_forgot_your_password'] = '¿Olvidó su contraseña?'; -$lang['account_login_to_wavelog'] = 'Iniciar sesión en Cloudlog'; +$lang['account_login_to_wavelog'] = 'Iniciar sesión en Wavelog'; $lang['account_login'] = 'Iniciar Sesión'; $lang['account_mastodon'] = 'Servidor de Mastodon'; @@ -114,7 +114,7 @@ $lang['account_gridmap_default_band'] = 'Banda por Defecto'; $lang['account_qsl_settings'] = 'Métodos de QSL por Defecto'; $lang['account_winkeyer'] = 'Winkeyer'; -$lang['account_winkeyer_hint'] = "El soporte de Winkeyer en Cloudlog es muy experimental. Lea la wiki primero en https://github.com/magicbug/Cloudlog/wiki/Winkey antes de activar."; +$lang['account_winkeyer_hint'] = "El soporte de Winkeyer en Wavelog es muy experimental. Lea la wiki primero en https://github.com/magicbug/Wavelog/wiki/Winkey antes de activar."; $lang['account_winkeyer_enabled'] = "Características de Winkeyer Activadas"; $lang['account_map_params'] = "Configuración de Mapa"; diff --git a/application/language/spanish/adif_lang.php b/application/language/spanish/adif_lang.php index 03cdd7387..3e08b8e98 100644 --- a/application/language/spanish/adif_lang.php +++ b/application/language/spanish/adif_lang.php @@ -41,12 +41,12 @@ $lang['adif_mark_imported_qrz'] = "Marcar QSOs importadas como subidas al libro $lang['adif_mark_imported_clublog'] = "Marcar QSOs importadas como subidas al libro de guardia de Clublog Logbook"; $lang['adif_dxcc_from_adif'] = "Usar la información DXCC del ADIF"; -$lang['adif_dxcc_from_adif_hint'] = "Si no se selecciona, Cloudlog intentará determinar la información DXCC automáticamente."; +$lang['adif_dxcc_from_adif_hint'] = "Si no se selecciona, Wavelog intentará determinar la información DXCC automáticamente."; $lang['adif_always_use_login_call_as_op'] = "Siempre use el indicativo usado para iniciar sesión como el nombre de operador al importar"; $lang['adif_ignore_station_call'] = "Ignorar el indicativo de la Estación al importar"; -$lang['adif_ignore_station_call_hint'] = "Si se selecciona, Cloudlog intentará importar todos los QSOs del ADIF, sin importar si concuerdan con la estación/localización seleccionada."; +$lang['adif_ignore_station_call_hint'] = "Si se selecciona, Wavelog intentará importar todos los QSOs del ADIF, sin importar si concuerdan con la estación/localización seleccionada."; $lang['adif_upload'] = "Subir"; @@ -94,10 +94,10 @@ $lang['only_confirmed_qsos'] = "Solo importar datos DOK de los QSO confirmados e $lang['only_confirmed_qsos_hint'] = "Si se deja desactivado, se actualizarán los datos DOK con datos de los QSO no confirmados en DCL."; $lang['overwrite_by_dcl'] = "Sobreescribir los DOK existentes en el registro por DCL (si son diferentes)"; -$lang['overwrite_by_dcl_hint'] = "Si está activo, Cloudlog forzará la sobreescritura de los DOK existentes con los DOK desde el libro de DCL."; +$lang['overwrite_by_dcl_hint'] = "Si está activo, Wavelog forzará la sobreescritura de los DOK existentes con los DOK desde el libro de DCL."; $lang['ignore_ambiguous'] = "Ignorar QSOs que no concuerden"; -$lang['ignore_ambiguous_hint'] = "Si se deja desactivado, se mostrará la información de QSOs que no se encuentren en Cloudlog."; +$lang['ignore_ambiguous_hint'] = "Si se deja desactivado, se mostrará la información de QSOs que no se encuentren en Wavelog."; /* ___________________________________________________________________________________________ diff --git a/application/language/spanish/admin_lang.php b/application/language/spanish/admin_lang.php index 78d6a6b02..521cdef7c 100644 --- a/application/language/spanish/admin_lang.php +++ b/application/language/spanish/admin_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['admin_user_line1'] = 'Cloudlog necesita al menos un usuario configurado para operar.'; -$lang['admin_user_line2'] = 'Los usuarios pueden tener roles que les entregan diferentes permisos, como añadir QSOs al libro de guardia y acceder a las APIs de Cloudlog.'; +$lang['admin_user_line1'] = 'Wavelog necesita al menos un usuario configurado para operar.'; +$lang['admin_user_line2'] = 'Los usuarios pueden tener roles que les entregan diferentes permisos, como añadir QSOs al libro de guardia y acceder a las APIs de Wavelog.'; $lang['admin_user_line3'] = 'El usuario actualmente en sesión se muestra en la parte superior derecha de la página.'; $lang['admin_user_list'] = 'Lista de Usuarios'; diff --git a/application/language/spanish/awards_lang.php b/application/language/spanish/awards_lang.php index 8102d2663..08355a024 100644 --- a/application/language/spanish/awards_lang.php +++ b/application/language/spanish/awards_lang.php @@ -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 'How to Count Countries Worked, A New DX Scoring System'."; $lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$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."; diff --git a/application/language/spanish/general_words_lang.php b/application/language/spanish/general_words_lang.php index f0cc50dbb..d662499a4 100644 --- a/application/language/spanish/general_words_lang.php +++ b/application/language/spanish/general_words_lang.php @@ -111,7 +111,7 @@ $lang['general_total_distance'] = 'Distancia total'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = 'El tamaño máximo del archivo subido es '; -// Cloudlog Terms +// Wavelog Terms $lang['wavelog_station_profile'] = 'Perfil de estación'; // ham radio terms diff --git a/application/language/spanish/lotw_lang.php b/application/language/spanish/lotw_lang.php index 916a0aa1c..d8051b65d 100644 --- a/application/language/spanish/lotw_lang.php +++ b/application/language/spanish/lotw_lang.php @@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = 'Los archivos de registro deben ser del $lang['lotw_pull_lotw_data_for_me'] = 'Extraer los datos LoTW por mí'; $lang['lotw_select_callsign'] = 'Seleccione indicativo para obtener confirmaciones de LoTW'; -$lang['lotw_report_download_overview_helptext'] ='Cloudlog usará el usuario y contraseña de LoTW guardado en su perfil para descargar un informe de LoTW por usted. El informe contendrá todas las confirmaciones desde la fecha elegida o desde su última confirmación LoTW hasta ahora.'; +$lang['lotw_report_download_overview_helptext'] ='Wavelog usará el usuario y contraseña de LoTW guardado en su perfil para descargar un informe de LoTW por usted. El informe contendrá todas las confirmaciones desde la fecha elegida o desde su última confirmación LoTW hasta ahora.'; // Buttons $lang['lotw_btn_lotw_import'] = 'Importar LoTW'; diff --git a/application/language/spanish/options_lang.php b/application/language/spanish/options_lang.php index 6a34336dc..6b7f9e410 100644 --- a/application/language/spanish/options_lang.php +++ b/application/language/spanish/options_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_wavelog_options'] = 'Opciones de Cloudlog'; -$lang['options_message1'] = 'Las Opciones de Cloudlog son configuraciones globales, configuradas para todos los usuarios de la instalación, que se sobreescribirán si alguna configuración se activa a nivel de usuario.'; +$lang['options_wavelog_options'] = 'Opciones de Wavelog'; +$lang['options_message1'] = 'Las Opciones de Wavelog son configuraciones globales, configuradas para todos los usuarios de la instalación, que se sobreescribirán si alguna configuración se activa a nivel de usuario.'; $lang['options_appearance'] = 'Apariencia'; $lang['options_theme'] = 'Tema'; @@ -43,7 +43,7 @@ $lang['options_mail_settings_failed'] = "Algo salió mal guardando las configura $lang['options_outgoing_protocol_hint'] = "El protocolo que será usado para enviar los correos electrónicos."; $lang['options_smtp_encryption_hint'] = "Escoja si los correos electrónicos serán enviados con TLS o SSL."; $lang['options_email_address_hint'] = "La dirección desde la cual se enviarán los correos electrónicos, ej. 'wavelog@example.com'"; -$lang['options_email_sender_name_hint'] = "El nombre de quien envía los correos, ej. 'Cloudlog'"; +$lang['options_email_sender_name_hint'] = "El nombre de quien envía los correos, ej. 'Wavelog'"; $lang['options_smtp_host_hint'] = "El nombre de dominio del servidor de correo, ej. 'mail.example.com' (sin 'ssl://' o 'tls://')"; $lang['options_smtp_port_hint'] = "El puerto SMTP del servidor de correo, ej. si está usando TLS -> '587', si está usando SSL -> '465'"; $lang['options_smtp_username_hint'] = "El nombre de usuario para iniciar sesión en el servidor de correo, usualmente esta es la dirección de correo electrónico a usar."; diff --git a/application/language/spanish/qso_lang.php b/application/language/spanish/qso_lang.php index 960f9a43e..1efe32263 100644 --- a/application/language/spanish/qso_lang.php +++ b/application/language/spanish/qso_lang.php @@ -25,7 +25,7 @@ $lang['qso_sig_info_helptext'] = 'Por ejemplo: DA/NW-357'; $lang['qso_dok_helptext'] = 'Por ejemplo: Q03'; -$lang['qso_notes_helptext'] = 'El contenido es usado solo dentro de Cloudlog y no es exportado a otros servicios.'; +$lang['qso_notes_helptext'] = 'El contenido es usado solo dentro de Wavelog y no es exportado a otros servicios.'; $lang['qsl_notes_helptext'] = 'El contenido de esta nota es exportado a servicios QSL como eqsl.cc.'; $lang['qso_eqsl_qslmsg_helptext'] = "Obtener el mensaje por defecto para eQSL, para esta estación."; @@ -53,7 +53,7 @@ $lang['qso_simplefle_info'] = "¿Qué es esto?"; $lang['qso_simplefle_info_ln1'] = "Simple Fast Log Entry (FLE)"; $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', o simplemente 'FLE' es un sistema para registrar QSO muy rápida y eficientemente. Debido a su sintaxis, solo se requieren pocos campos para introducir muchos QSOs con la menor cantidad de esfuerzo posible."; $lang['qso_simplefle_info_ln3'] = "FLE fue escrito originalmente por DF3CB. Él ofreció un programa para Windows en su sitio. Simple FLE fue escrito por OK2CQR basado en el FLE de DF3CB y provee una interfaz web para registrar QSOs."; -$lang['qso_simplefle_info_ln4'] = "Un caso de uso común es si necesita importar sus registros manuales de una sesión a las afueras y ahora SimpleFLE está disponible en Cloudlog. La información acerca de la sintaxis y como funciona FLE se pueden encontrar aquí."; +$lang['qso_simplefle_info_ln4'] = "Un caso de uso común es si necesita importar sus registros manuales de una sesión a las afueras y ahora SimpleFLE está disponible en Wavelog. La información acerca de la sintaxis y como funciona FLE se pueden encontrar aquí."; $lang['qso_simplefle_qso_data'] = "Datos de QSO"; $lang['qso_simplefle_qso_date_hint'] = "Si no escoge una fecha, se usará la fecha de hoy."; $lang['qso_simplefle_qso_list'] = "Lista de QSOs"; @@ -67,7 +67,7 @@ $lang['qso_simplefle_utc_time'] = "Hora UTC Actual"; $lang['qso_simplefle_enter_the_data'] = "Introduzca los Datos"; $lang['qso_simplefle_syntax_help_close_w_sample'] = "Cerrar y Cargar Datos de Muestra"; $lang['qso_simplefle_reload'] = "Recargar Lista de QSO"; -$lang['qso_simplefle_save'] = "Guardar en Cloudlog"; +$lang['qso_simplefle_save'] = "Guardar en Wavelog"; $lang['qso_simplefle_clear'] = "Limpiar Sesión de Registro"; $lang['qso_simplefle_refs_hint'] = "Las Referencias deben ser SOTA, IOTA, POTA o WWFF"; diff --git a/application/language/spanish/station_lang.php b/application/language/spanish/station_lang.php index f132ff91d..ccf601c2f 100644 --- a/application/language/spanish/station_lang.php +++ b/application/language/spanish/station_lang.php @@ -57,7 +57,7 @@ $lang['station_location_edit'] = 'Editar Localización de Estación: '; $lang['station_location_updated_suff'] = ' Actualizada.'; $lang['station_location_warning'] = 'Atención: Debe configurar una Localización de Estación como activa. vaya a Indicativo->Localización de Estación para seleccionar una.'; $lang['station_location_reassign_at'] = 'Por favor, reasignelas en '; -$lang['station_location_warning_reassign'] = 'Debido a cambios recientes en Cloudlog, debe reasignar sus QSO a sus perfiles de estación.'; +$lang['station_location_warning_reassign'] = 'Debido a cambios recientes en Wavelog, debe reasignar sus QSO a sus perfiles de estación.'; $lang['station_location_name'] = 'Nombre de Perfil'; $lang['station_location_name_hint'] = 'Nombre corto para la Localización de Estación. Ejemplo: Casa (IO87IP)'; $lang['station_location_callsign'] = 'Indicativo de la Estación'; diff --git a/application/language/swedish/account_lang.php b/application/language/swedish/account_lang.php index 6cc35ca55..012c51a08 100644 --- a/application/language/swedish/account_lang.php +++ b/application/language/swedish/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio"; $lang['account_callsign'] = 'Callsign'; $lang['account_gridsquare'] = 'Gridsquare'; -$lang['account_wavelog_preferences'] = 'Cloudlog Preferences'; +$lang['account_wavelog_preferences'] = 'Wavelog Preferences'; $lang['account_timezone'] = 'Tidszon'; $lang['account_date_format'] = 'Datumformat'; $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'] = 'Välj hur du vill att datum ska visas när du är inloggad på ditt konto.'; $lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Välj i vilken enhetsavstånd som ska visas'; -$lang['account_wavelog_language'] = 'Cloudlog Language'; -$lang['account_choose_wavelog_language'] = 'Choose Cloudlog language.'; +$lang['account_wavelog_language'] = 'Wavelog Language'; +$lang['account_choose_wavelog_language'] = 'Choose Wavelog language.'; $lang['account_main_menu'] = 'Huvudmeny'; $lang['account_show_notes_in_the_main_menu'] = 'Visa anteckningar i huvudmenyn.'; @@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Bekräfta lösenord'; $lang['account_forgot_your_password'] = 'Glömt lösenord?'; -$lang['account_login_to_wavelog'] = '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'] = 'Standard 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 https://github.com/magicbug/Cloudlog/wiki/Winkey before enabling."; +$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/magicbug/Wavelog/wiki/Winkey before enabling."; $lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; $lang['account_map_params'] = "Map Settings"; diff --git a/application/language/swedish/adif_lang.php b/application/language/swedish/adif_lang.php index 4000ec252..f2eddfeb6 100644 --- a/application/language/swedish/adif_lang.php +++ b/application/language/swedish/adif_lang.php @@ -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 all 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 all 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."; /* ___________________________________________________________________________________________ diff --git a/application/language/swedish/admin_lang.php b/application/language/swedish/admin_lang.php index fa454d069..e57c79477 100644 --- a/application/language/swedish/admin_lang.php +++ b/application/language/swedish/admin_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['admin_user_line1'] = 'Cloudlog behöver minst en användare konfigurerad för att fungera.'; -$lang['admin_user_line2'] = 'Användare kan tilldelas roller som ger dem olika behörigheter, som att lägga till QSO:er i loggboken och komma åt Cloudlog API:er.'; +$lang['admin_user_line1'] = 'Wavelog behöver minst en användare konfigurerad för att fungera.'; +$lang['admin_user_line2'] = 'Användare kan tilldelas roller som ger dem olika behörigheter, som att lägga till QSO:er i loggboken och komma åt Wavelog API:er.'; $lang['admin_user_line3'] = 'Den för närvarande inloggade användaren visas uppe till höger på varje sida.'; $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."; diff --git a/application/language/swedish/awards_lang.php b/application/language/swedish/awards_lang.php index 8102d2663..08355a024 100644 --- a/application/language/swedish/awards_lang.php +++ b/application/language/swedish/awards_lang.php @@ -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 'How to Count Countries Worked, A New DX Scoring System'."; $lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$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."; diff --git a/application/language/swedish/general_words_lang.php b/application/language/swedish/general_words_lang.php index b05858c8c..5e90e0d3f 100644 --- a/application/language/swedish/general_words_lang.php +++ b/application/language/swedish/general_words_lang.php @@ -111,7 +111,7 @@ $lang['general_total_distance'] = 'Totalt avstånd'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; -// Cloudlog Terms +// Wavelog Terms $lang['wavelog_station_profile'] = 'Stationsplats'; // ham radio terms diff --git a/application/language/swedish/lotw_lang.php b/application/language/swedish/lotw_lang.php index 4eaa19ddd..d45d6aef9 100644 --- a/application/language/swedish/lotw_lang.php +++ b/application/language/swedish/lotw_lang.php @@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = 'Loggfil måste vara av format .adi'; $lang['lotw_pull_lotw_data_for_me'] = 'Hämta LoTW data'; $lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; -$lang['lotw_report_download_overview_helptext'] = 'Cloudlog använder LoTW användarnamn och lösenord som är sparat i din användarprofil för att ladda ner repport från LoTW. Rapporten Cloudlog kommer att ladda ner kommer att ha alla bekräftelser sedan valt datum, eller sedan din senaste LoTW-bekräftelse (hämtad från din logg), fram till nu.'; +$lang['lotw_report_download_overview_helptext'] = 'Wavelog använder LoTW användarnamn och lösenord som är sparat i din användarprofil för att ladda ner repport från LoTW. Rapporten Wavelog kommer att ladda ner kommer att ha alla bekräftelser sedan valt datum, eller sedan din senaste LoTW-bekräftelse (hämtad från din logg), fram till nu.'; // Buttons $lang['lotw_btn_lotw_import'] = 'LoTW import'; diff --git a/application/language/swedish/options_lang.php b/application/language/swedish/options_lang.php index 6df51a2df..b77bc074d 100644 --- a/application/language/swedish/options_lang.php +++ b/application/language/swedish/options_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_wavelog_options'] = 'Cloudlog-alternativ'; -$lang['options_message1'] = 'Cloudlog-alternativ är globala inställningar som används för alla användare av installationen, som åsidosätts om det finns en inställning på användarnivå.'; +$lang['options_wavelog_options'] = 'Wavelog-alternativ'; +$lang['options_message1'] = 'Wavelog-alternativ är globala inställningar som används för alla användare av installationen, som åsidosätts om det finns en inställning på användarnivå.'; $lang['options_appearance'] = 'Utseende'; $lang['options_theme'] = 'Tema'; @@ -43,7 +43,7 @@ $lang['options_mail_settings_failed'] = "Something went wrong with saving the se $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. 'wavelog@example.com'"; -$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Cloudlog'"; +$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."; diff --git a/application/language/swedish/qso_lang.php b/application/language/swedish/qso_lang.php index 4de77389b..8fc03dd26 100644 --- a/application/language/swedish/qso_lang.php +++ b/application/language/swedish/qso_lang.php @@ -25,7 +25,7 @@ $lang['qso_sig_info_helptext'] = 'Exempel: DA/NW-357'; $lang['qso_dok_helptext'] = 'Exempel: Q03'; -$lang['qso_notes_helptext'] = 'Detta innehåll används bara inom Cloudlog och kommer inte att exporteras.'; +$lang['qso_notes_helptext'] = 'Detta innehåll används bara inom Wavelog och kommer inte att exporteras.'; $lang['qsl_notes_helptext'] = 'Detta innehåll exporteras till QSL-services som eqsl etc.'; $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 here."; +$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 here."; $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 SOTA, IOTA, POTA or WWFF"; diff --git a/application/language/swedish/station_lang.php b/application/language/swedish/station_lang.php index 01acd54b3..0ef70d26e 100644 --- a/application/language/swedish/station_lang.php +++ b/application/language/swedish/station_lang.php @@ -57,7 +57,7 @@ $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_callsign'] = 'Station Callsign'; diff --git a/application/language/turkish/account_lang.php b/application/language/turkish/account_lang.php index 3bcbbe081..c873d4776 100644 --- a/application/language/turkish/account_lang.php +++ b/application/language/turkish/account_lang.php @@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio"; $lang['account_callsign'] = 'Callsign'; $lang['account_gridsquare'] = 'Gridsquare'; -$lang['account_wavelog_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_wavelog_language'] = 'Cloudlog Language'; -$lang['account_choose_wavelog_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_wavelog'] = '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 https://github.com/magicbug/Cloudlog/wiki/Winkey before enabling."; +$lang['account_winkeyer_hint'] = "Winkeyer support in Wavelog is very experimental read the wiki first at https://github.com/magicbug/Wavelog/wiki/Winkey before enabling."; $lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled"; $lang['account_map_params'] = "Map Settings"; diff --git a/application/language/turkish/adif_lang.php b/application/language/turkish/adif_lang.php index 4000ec252..f2eddfeb6 100644 --- a/application/language/turkish/adif_lang.php +++ b/application/language/turkish/adif_lang.php @@ -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 all 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 all 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."; /* ___________________________________________________________________________________________ diff --git a/application/language/turkish/admin_lang.php b/application/language/turkish/admin_lang.php index 1431b16ad..dc9484620 100644 --- a/application/language/turkish/admin_lang.php +++ b/application/language/turkish/admin_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('Doğrudan komut dosyası erişimine izin verilmez'); -$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."; diff --git a/application/language/turkish/awards_lang.php b/application/language/turkish/awards_lang.php index 8102d2663..08355a024 100644 --- a/application/language/turkish/awards_lang.php +++ b/application/language/turkish/awards_lang.php @@ -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 'How to Count Countries Worked, A New DX Scoring System'."; $lang['awards_dxcc_description_ln3'] = "You can find all information about the DXCC Award on the ARRL website."; -$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."; diff --git a/application/language/turkish/general_words_lang.php b/application/language/turkish/general_words_lang.php index 81de8b45f..bfe432b1d 100644 --- a/application/language/turkish/general_words_lang.php +++ b/application/language/turkish/general_words_lang.php @@ -110,7 +110,7 @@ $lang['general_total_distance'] = 'Topam mesafe'; // PHP Upload Warning $lang['gen_max_file_upload_size'] = 'Maximum file upload size is '; -// Cloudlog Terms +// Wavelog Terms $lang['wavelog_station_profile'] = 'İstasyon Konumu'; // ham radio terms diff --git a/application/language/turkish/lotw_lang.php b/application/language/turkish/lotw_lang.php index f17af9022..2728c3591 100644 --- a/application/language/turkish/lotw_lang.php +++ b/application/language/turkish/lotw_lang.php @@ -36,7 +36,7 @@ $lang['lotw_upload_type_must_be_adi'] = 'Günlük dosyaları .adi dosya tipine s $lang['lotw_pull_lotw_data_for_me'] = 'Benim için LoTW verilerini çek'; $lang['lotw_select_callsign'] = 'Select callsign to pull LoTW confirmations for'; -$lang['lotw_report_download_overview_helptext'] ='Cloudlog, sizin için LoTW\'den bir rapor indirmek için kullanıcı profilinizde kayıtlı LoTW kullanıcı adını ve şifreyi kullanacak. Cloudlog indirmeleri raporu, seçilen tarihten itibaren veya son LoTW onayınızdan (günlüğünüzden alınır) bu yana şimdiye kadarki tüm onaylara sahip olacaktır.'; +$lang['lotw_report_download_overview_helptext'] ='Wavelog, sizin için LoTW\'den bir rapor indirmek için kullanıcı profilinizde kayıtlı LoTW kullanıcı adını ve şifreyi kullanacak. Wavelog indirmeleri raporu, seçilen tarihten itibaren veya son LoTW onayınızdan (günlüğünüzden alınır) bu yana şimdiye kadarki tüm onaylara sahip olacaktır.'; // Düğmeler $lang['lotw_btn_lotw_import'] = 'LoTW İçe Aktarma'; diff --git a/application/language/turkish/options_lang.php b/application/language/turkish/options_lang.php index c8e7f662b..c72f036d7 100644 --- a/application/language/turkish/options_lang.php +++ b/application/language/turkish/options_lang.php @@ -2,8 +2,8 @@ defined('BASEPATH') OR exit('No direct script access allowed'); -$lang['options_wavelog_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'; @@ -43,7 +43,7 @@ $lang['options_mail_settings_failed'] = "Something went wrong with saving the se $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. 'wavelog@example.com'"; -$lang['options_email_sender_name_hint'] = "The email sender name, e.g. 'Cloudlog'"; +$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."; diff --git a/application/language/turkish/qso_lang.php b/application/language/turkish/qso_lang.php index 83a07fea2..ab551286d 100644 --- a/application/language/turkish/qso_lang.php +++ b/application/language/turkish/qso_lang.php @@ -25,7 +25,7 @@ $lang['qso_sig_info_helptext'] = 'Örnek: DA/NW-357'; $lang['qso_dok_helptext'] = 'Örnek: Q03'; -$lang['qso_notes_helptext'] = 'Not içeriği yalnızca Cloudlog içinde kullanılır ve diğer servislere aktarılmaz'; +$lang['qso_notes_helptext'] = 'Not içeriği yalnızca Wavelog içinde kullanılır ve diğer servislere aktarılmaz'; $lang['qsl_notes_helptext'] = 'Bu not içeriği eqsl.cc gibi QSL servislere aktarılır'; $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 here."; +$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 here."; $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 SOTA, IOTA, POTA or WWFF"; diff --git a/application/language/turkish/station_lang.php b/application/language/turkish/station_lang.php index 01acd54b3..0ef70d26e 100644 --- a/application/language/turkish/station_lang.php +++ b/application/language/turkish/station_lang.php @@ -57,7 +57,7 @@ $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_callsign'] = 'Station Callsign'; diff --git a/application/libraries/Cabrilloformat.php b/application/libraries/Cabrilloformat.php index 764aa52b2..78fca1339 100644 --- a/application/libraries/Cabrilloformat.php +++ b/application/libraries/Cabrilloformat.php @@ -43,7 +43,7 @@ class Cabrilloformat { $cab_header .= "GRID-LOCATOR: ".$gridlocator."\r\n"; } - $cab_header .= "CREATED-BY: Cloudlog"."\r\n"; + $cab_header .= "CREATED-BY: Wavelog"."\r\n"; return $cab_header; diff --git a/application/migrations/136_tag_2_4_6.php b/application/migrations/136_tag_2_4_6.php index 377b6d58f..8d05eef7e 100644 --- a/application/migrations/136_tag_2_4_6.php +++ b/application/migrations/136_tag_2_4_6.php @@ -3,7 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* Tag Cloudlog as 2.4.6 +* Tag Wavelog as 2.4.6 */ class Migration_tag_2_4_6 extends CI_Migration { @@ -11,7 +11,7 @@ class Migration_tag_2_4_6 extends CI_Migration { public function up() { - // Tag Cloudlog 2.4.6 + // Tag Wavelog 2.4.6 $this->db->where('option_name', 'version'); $this->db->update('options', array('option_value' => '2.4.6')); } diff --git a/application/migrations/137_tag_2_4_7.php b/application/migrations/137_tag_2_4_7.php index ebfd269cd..5351229e5 100644 --- a/application/migrations/137_tag_2_4_7.php +++ b/application/migrations/137_tag_2_4_7.php @@ -3,7 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* Tag Cloudlog as 2.4.7 +* Tag Wavelog as 2.4.7 */ class Migration_tag_2_4_7 extends CI_Migration { @@ -11,7 +11,7 @@ class Migration_tag_2_4_7 extends CI_Migration { public function up() { - // Tag Cloudlog 2.4.7 + // Tag Wavelog 2.4.7 $this->db->where('option_name', 'version'); $this->db->update('options', array('option_value' => '2.4.7')); } diff --git a/application/migrations/140_tag_2_4_8.php b/application/migrations/140_tag_2_4_8.php index ee070205d..5df370824 100644 --- a/application/migrations/140_tag_2_4_8.php +++ b/application/migrations/140_tag_2_4_8.php @@ -3,7 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* Tag Cloudlog as 2.4.8 +* Tag Wavelog as 2.4.8 */ class Migration_tag_2_4_8 extends CI_Migration { @@ -11,7 +11,7 @@ class Migration_tag_2_4_8 extends CI_Migration { public function up() { - // Tag Cloudlog 2.4.7 + // Tag Wavelog 2.4.7 $this->db->where('option_name', 'version'); $this->db->update('options', array('option_value' => '2.4.8')); } diff --git a/application/migrations/143_tag_2_4_9.php b/application/migrations/143_tag_2_4_9.php index ec1bd57ec..756893850 100644 --- a/application/migrations/143_tag_2_4_9.php +++ b/application/migrations/143_tag_2_4_9.php @@ -3,7 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* Tag Cloudlog as 2.4.9 +* Tag Wavelog as 2.4.9 */ class Migration_tag_2_4_9 extends CI_Migration { @@ -11,7 +11,7 @@ class Migration_tag_2_4_9 extends CI_Migration { public function up() { - // Tag Cloudlog 2.4.9 + // Tag Wavelog 2.4.9 $this->db->where('option_name', 'version'); $this->db->update('options', array('option_value' => '2.4.9')); } diff --git a/application/migrations/144_tag_2_4_10.php b/application/migrations/144_tag_2_4_10.php index 413bfd9ce..bf85d9436 100644 --- a/application/migrations/144_tag_2_4_10.php +++ b/application/migrations/144_tag_2_4_10.php @@ -3,7 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* Tag Cloudlog as 2.4.10 +* Tag Wavelog as 2.4.10 */ class Migration_tag_2_4_10 extends CI_Migration { @@ -11,7 +11,7 @@ class Migration_tag_2_4_10 extends CI_Migration { public function up() { - // Tag Cloudlog 2.4.10 + // Tag Wavelog 2.4.10 $this->db->where('option_name', 'version'); $this->db->update('options', array('option_value' => '2.4.10')); } diff --git a/application/migrations/147_tag_2_4_11.php b/application/migrations/147_tag_2_4_11.php index 80050932d..10d53ade8 100644 --- a/application/migrations/147_tag_2_4_11.php +++ b/application/migrations/147_tag_2_4_11.php @@ -3,7 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* Tag Cloudlog as 2.4.11 +* Tag Wavelog as 2.4.11 */ class Migration_tag_2_4_11 extends CI_Migration { @@ -11,7 +11,7 @@ class Migration_tag_2_4_11 extends CI_Migration { public function up() { - // Tag Cloudlog 2.4.11 + // Tag Wavelog 2.4.11 $this->db->where('option_name', 'version'); $this->db->update('options', array('option_value' => '2.4.11')); } diff --git a/application/migrations/150_tag_2_5_0.php b/application/migrations/150_tag_2_5_0.php index 2adab425e..4d3e33348 100644 --- a/application/migrations/150_tag_2_5_0.php +++ b/application/migrations/150_tag_2_5_0.php @@ -3,7 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* Tag Cloudlog as 2.5.0 +* Tag Wavelog as 2.5.0 */ class Migration_tag_2_5_0 extends CI_Migration { @@ -11,7 +11,7 @@ class Migration_tag_2_5_0 extends CI_Migration { public function up() { - // Tag Cloudlog 2.5.0 + // Tag Wavelog 2.5.0 $this->db->where('option_name', 'version'); $this->db->update('options', array('option_value' => '2.5.0')); } diff --git a/application/migrations/152_tag_2_5_1.php b/application/migrations/152_tag_2_5_1.php index ad90a8b0d..0d95b6549 100644 --- a/application/migrations/152_tag_2_5_1.php +++ b/application/migrations/152_tag_2_5_1.php @@ -3,7 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* Tag Cloudlog as 2.5.1 +* Tag Wavelog as 2.5.1 */ class Migration_tag_2_5_1 extends CI_Migration { @@ -11,7 +11,7 @@ class Migration_tag_2_5_1 extends CI_Migration { public function up() { - // Tag Cloudlog 2.5.1 + // Tag Wavelog 2.5.1 $this->db->where('option_name', 'version'); $this->db->update('options', array('option_value' => '2.5.1')); } diff --git a/application/migrations/153_tag_2_5_2.php b/application/migrations/153_tag_2_5_2.php index 9be710c13..1c3794983 100644 --- a/application/migrations/153_tag_2_5_2.php +++ b/application/migrations/153_tag_2_5_2.php @@ -3,7 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* Tag Cloudlog as 2.5.1 +* Tag Wavelog as 2.5.1 */ class Migration_tag_2_5_2 extends CI_Migration { @@ -11,7 +11,7 @@ class Migration_tag_2_5_2 extends CI_Migration { public function up() { - // Tag Cloudlog 2.5.1 + // Tag Wavelog 2.5.1 $this->db->where('option_name', 'version'); $this->db->update('options', array('option_value' => '2.5.2')); } diff --git a/application/migrations/160_tag_2_6_0.php b/application/migrations/160_tag_2_6_0.php index 071e2d4ec..fff580e48 100644 --- a/application/migrations/160_tag_2_6_0.php +++ b/application/migrations/160_tag_2_6_0.php @@ -3,7 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* Tag Cloudlog as 2.6.0 +* Tag Wavelog as 2.6.0 */ class Migration_tag_2_6_0 extends CI_Migration { @@ -11,7 +11,7 @@ class Migration_tag_2_6_0 extends CI_Migration { public function up() { - // Tag Cloudlog 2.5.1 + // Tag Wavelog 2.5.1 $this->db->where('option_name', 'version'); $this->db->update('options', array('option_value' => '2.6.0')); diff --git a/application/migrations/165_tag_2_6_1.php b/application/migrations/165_tag_2_6_1.php index 9836c6aeb..2267560fd 100644 --- a/application/migrations/165_tag_2_6_1.php +++ b/application/migrations/165_tag_2_6_1.php @@ -3,7 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* Tag Cloudlog as 2.6.1 +* Tag Wavelog as 2.6.1 */ class Migration_tag_2_6_1 extends CI_Migration { @@ -11,7 +11,7 @@ class Migration_tag_2_6_1 extends CI_Migration { public function up() { - // Tag Cloudlog 2.6.1 + // Tag Wavelog 2.6.1 $this->db->where('option_name', 'version'); $this->db->update('options', array('option_value' => '2.6.1')); diff --git a/application/migrations/169_tag_2_6_2.php b/application/migrations/169_tag_2_6_2.php index 4c9533011..e999486e6 100644 --- a/application/migrations/169_tag_2_6_2.php +++ b/application/migrations/169_tag_2_6_2.php @@ -3,7 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* Tag Cloudlog as 2.6.2 +* Tag Wavelog as 2.6.2 */ class Migration_tag_2_6_2 extends CI_Migration { @@ -11,7 +11,7 @@ class Migration_tag_2_6_2 extends CI_Migration { public function up() { - // Tag Cloudlog 2.6.2 + // Tag Wavelog 2.6.2 $this->db->where('option_name', 'version'); $this->db->update('options', array('option_value' => '2.6.2')); diff --git a/application/models/Dxcluster_model.php b/application/models/Dxcluster_model.php index 9d66e2f96..2ffb265eb 100644 --- a/application/models/Dxcluster_model.php +++ b/application/models/Dxcluster_model.php @@ -1,6 +1,6 @@ optionslib->get_option('version').' DXLookup'); + curl_setopt($ch, CURLOPT_USERAGENT, 'Wavelog '.$this->optionslib->get_option('version').' DXLookup'); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $jsonraw = curl_exec($ch); @@ -89,7 +89,7 @@ class Dxcluster_model extends CI_Model { // CURL Functions $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $dxcache_url); - curl_setopt($ch, CURLOPT_USERAGENT, 'Cloudlog '.$this->optionslib->get_option('version').' DXLookup by QRG'); + curl_setopt($ch, CURLOPT_USERAGENT, 'Wavelog '.$this->optionslib->get_option('version').' DXLookup by QRG'); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $jsonraw = curl_exec($ch); diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index 6569c21c7..21eff90d8 100755 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -3055,7 +3055,7 @@ function lotw_last_qsl_date($user_id) { /* * $skipDuplicate - used in ADIF import to skip duplicate checking when importing QSOs * $markLoTW - used in ADIF import to mark QSOs as exported to LoTW when importing QSOs - * $dxccAdif - used in ADIF import to determine if DXCC From ADIF is used, or if Cloudlog should try to guess + * $dxccAdif - used in ADIF import to determine if DXCC From ADIF is used, or if Wavelog should try to guess * $markQrz - used in ADIF import to mark QSOs as exported to QRZ Logbook when importing QSOs * $markHrd - used in ADIF import to mark QSOs as exported to HRDLog.net Logbook when importing QSOs * $skipexport - used in ADIF import to skip the realtime upload to QRZ Logbook when importing QSOs from ADIF @@ -3076,7 +3076,7 @@ function lotw_last_qsl_date($user_id) { if ((!$skipStationCheck) && ($station_id != 0) && (strtoupper($record['station_callsign']) != strtoupper($station_profile_call))) { // Check if station_call from import matches profile ONLY when submitting via GUI. return "Wrong station callsign \"".htmlentities($record['station_callsign'])."\" while importing QSO with ".$record['call']." for ".$station_profile_call." : SKIPPED" . - "
See the Cloudlog Wiki for hints about errors in ADIF files."; + "
See the Wavelog Wiki for hints about errors in ADIF files."; } $this->load->library('frequency'); diff --git a/application/models/Logbookadvanced_model.php b/application/models/Logbookadvanced_model.php index 3e7775d8e..f98ba17e7 100644 --- a/application/models/Logbookadvanced_model.php +++ b/application/models/Logbookadvanced_model.php @@ -1,5 +1,5 @@ 3.1.4 config->item('app_name')); ?>>config->item('app_name')."\r\n"; ?> optionslib->get_option('version')); ?>>optionslib->get_option('version')."\r\n"; ?> diff --git a/application/views/adif/data/exportall.php b/application/views/adif/data/exportall.php index d0dd52dc9..13120f148 100644 --- a/application/views/adif/data/exportall.php +++ b/application/views/adif/data/exportall.php @@ -2,7 +2,7 @@ header('Content-Type: text/plain; charset=utf-8'); header('Content-Disposition: attachment; filename="'.$this->session->userdata('user_callsign').'-'.date('Ymd-Hi').'.adi"') ?> -Cloudlog ADIF export +Wavelog ADIF export 3.1.4 config->item('app_name')); ?>>config->item('app_name')."\r\n"; ?> optionslib->get_option('version')); ?>>optionslib->get_option('version')."\r\n"; ?> diff --git a/application/views/adif/data/exportsat.php b/application/views/adif/data/exportsat.php index d0dd52dc9..13120f148 100644 --- a/application/views/adif/data/exportsat.php +++ b/application/views/adif/data/exportsat.php @@ -2,7 +2,7 @@ header('Content-Type: text/plain; charset=utf-8'); header('Content-Disposition: attachment; filename="'.$this->session->userdata('user_callsign').'-'.date('Ymd-Hi').'.adi"') ?> -Cloudlog ADIF export +Wavelog ADIF export 3.1.4 config->item('app_name')); ?>>config->item('app_name')."\r\n"; ?> optionslib->get_option('version')); ?>>optionslib->get_option('version')."\r\n"; ?> diff --git a/application/views/api/help.php b/application/views/api/help.php index a6113362b..bbc2b9fd9 100644 --- a/application/views/api/help.php +++ b/application/views/api/help.php @@ -14,9 +14,9 @@ API Keys
-

The Cloudlog API (Application Programming Interface) lets third party systems access Cloudlog in a controlled way. Access to the API is managed via API keys.

-

You will need to generate an API key for each tool you wish to use (e.g. CloudlogCAT). Generate a read-write key if the application needs to send data to Cloudlog. Generate a read-only key if the application only needs to obtain data from Cloudlog.

-

API URL The API URL for this Cloudlog instance is:

+

The Wavelog API (Application Programming Interface) lets third party systems access Wavelog in a controlled way. Access to the API is managed via API keys.

+

You will need to generate an API key for each tool you wish to use (e.g. WavelogCAT). Generate a read-write key if the application needs to send data to Wavelog. Generate a read-only key if the application only needs to obtain data from Wavelog.

+

API URL The API URL for this Wavelog instance is:

Info It's good practice to delete a key if you are no longer using the associated application.

num_rows() > 0) { ?> diff --git a/application/views/api/index.php b/application/views/api/index.php index 32eff35bd..008da5436 100644 --- a/application/views/api/index.php +++ b/application/views/api/index.php @@ -11,7 +11,7 @@ if($data['format'] == "xml") { // Get the method called, and build the root node $call = $data['queryInfo']['call']; -$rootNode = $xmlDoc->createElement("Cloudlog-API"); +$rootNode = $xmlDoc->createElement("Wavelog-API"); $parentNode = $xmlDoc->appendChild($rootNode); // Get the results output diff --git a/application/views/backup/exportall.php b/application/views/backup/exportall.php index 5175a21bd..456bdf101 100644 --- a/application/views/backup/exportall.php +++ b/application/views/backup/exportall.php @@ -1,4 +1,4 @@ -Cloudlog ADIF export +Wavelog ADIF export 3.1.4 config->item('app_name')); ?>>config->item('app_name')."\n"; ?> optionslib->get_option('version')); ?>>optionslib->get_option('version')."\r\n"; ?> diff --git a/application/views/backup/main.php b/application/views/backup/main.php index d9afabede..bd341f7a8 100644 --- a/application/views/backup/main.php +++ b/application/views/backup/main.php @@ -14,7 +14,7 @@ Backup
-

Some of the data stored in Cloudlog can be exported so that you can keep a backup copy elsewhere.

+

Some of the data stored in Wavelog can be exported so that you can keep a backup copy elsewhere.

It's recommended to create backups on a regular basis to protect your data.

Backup ADIF data

Backup Notes

diff --git a/application/views/debug/main.php b/application/views/debug/main.php index e3f2a1c5a..d88288d5b 100644 --- a/application/views/debug/main.php +++ b/application/views/debug/main.php @@ -6,7 +6,7 @@
-
Cloudlog Information
+
Wavelog Information
@@ -67,7 +67,7 @@
Folder Permissions
-

This checks the folders Cloudlog uses are read and writeable by PHP.

+

This checks the folders Wavelog uses are read and writeable by PHP.

@@ -193,9 +193,9 @@ $branch = substr($pieces[1], strpos($pieces[1], '/')+1); $url = trim(exec('git remote get-url '.$remote)); if (strpos($url, 'https://github.com') !== false) { - $owner = preg_replace('/https:\/\/github\.com\/(\w+)\/Cloudlog\.git/', '$1', $url); + $owner = preg_replace('/https:\/\/github\.com\/(\w+)\/Wavelog\.git/', '$1', $url); } else if (strpos($url, 'git@github.com') !== false) { - $owner = preg_replace('/git@github\.com:(\w+)\/Cloudlog\.git/', '$1', $url); + $owner = preg_replace('/git@github\.com:(\w+)\/Wavelog\.git/', '$1', $url); } } $tag = trim(exec('git describe --tags '.$commitHash)); @@ -215,7 +215,7 @@
/backup - + @@ -231,7 +231,7 @@ Commit - + n/a @@ -241,7 +241,7 @@ Tag - + n/a diff --git a/application/views/email/admin_reset_password.php b/application/views/email/admin_reset_password.php index 954b1c730..dcb546c7b 100644 --- a/application/views/email/admin_reset_password.php +++ b/application/views/email/admin_reset_password.php @@ -1,7 +1,7 @@ Hello -An admin initiated a password reset for your Cloudlog account. +An admin initiated a password reset for your Wavelog account. Your username is: @@ -9,7 +9,7 @@ Your username is: Click here to reset your password: -If you didn't request any password reset, just ignore this email and talk to an admin of your Cloudlog instance. +If you didn't request any password reset, just ignore this email and talk to an admin of your Wavelog instance. Regards, -Cloudlog +Wavelog diff --git a/application/views/email/forgot_password.php b/application/views/email/forgot_password.php index 36855ce0b..274106c81 100644 --- a/application/views/email/forgot_password.php +++ b/application/views/email/forgot_password.php @@ -1,6 +1,6 @@ Hi, -You or someone else has requested a password reset on your Cloudlog account. +You or someone else has requested a password reset on your Wavelog account. Your password reset code is: @@ -12,4 +12,4 @@ If you didn't request this just ignore. Regards, -Cloudlog. \ No newline at end of file +Wavelog. \ No newline at end of file diff --git a/application/views/email/oqrs_request.php b/application/views/email/oqrs_request.php index c35ec6cc4..2ce8b2f72 100644 --- a/application/views/email/oqrs_request.php +++ b/application/views/email/oqrs_request.php @@ -7,8 +7,8 @@ The user entered the following message: -Please log into your Cloudlog and process it. +Please log into your Wavelog and process it. Regards, -Cloudlog. +Wavelog. diff --git a/application/views/email/testmail.php b/application/views/email/testmail.php index 116023d5e..e31398b1e 100644 --- a/application/views/email/testmail.php +++ b/application/views/email/testmail.php @@ -1,9 +1,9 @@ Hi, -This is a test email from your Cloudlog instance. +This is a test email from your Wavelog instance. If you received this email, your mail settings are correct. Regards, -Cloudlog. \ No newline at end of file +Wavelog. \ No newline at end of file diff --git a/application/views/eqsl/download.php b/application/views/eqsl/download.php index d4c2319b1..54944f958 100644 --- a/application/views/eqsl/download.php +++ b/application/views/eqsl/download.php @@ -63,7 +63,7 @@ foreach ($qslsnotdownloaded->result_array() as $qsl) {
-

Cloudlog will use the eQSL credentials from your Cloudlog user profile to connect to eQSL and download confirmations.

+

Wavelog will use the eQSL credentials from your Wavelog user profile to connect to eQSL and download confirmations.

diff --git a/application/views/eqsl/import.php b/application/views/eqsl/import.php index 55ebb169c..c6e6c76dc 100644 --- a/application/views/eqsl/import.php +++ b/application/views/eqsl/import.php @@ -48,7 +48,7 @@
-

Cloudlog will use the eQSL credentials from your Cloudlog user profile to connect to eQSL and download confirmations.

+

Wavelog will use the eQSL credentials from your Wavelog user profile to connect to eQSL and download confirmations.

diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index 6e7295f3e..1090b0188 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -29,7 +29,7 @@ var lang_admin_close = ""; var lang_admin_clear = ""; - + diff --git a/application/views/interface_assets/header.php b/application/views/interface_assets/header.php index 40d2b21c0..d930fbbf3 100644 --- a/application/views/interface_assets/header.php +++ b/application/views/interface_assets/header.php @@ -58,14 +58,14 @@ <?php if (isset($page_title)) { echo $page_title; - } ?> - Cloudlog + } ?> - Wavelog
-

Below is a list of active radios that are connected to Cloudlog.

+

Below is a list of active radios that are connected to Wavelog.

If you haven't connected any radios yet, see the API page to generate API keys.

@@ -24,7 +24,7 @@

- Info You can find out how to use the radio functions in the wiki. + Info You can find out how to use the radio functions in the wiki.

diff --git a/application/views/search/filter.php b/application/views/search/filter.php index 78fb4d753..fcab47d10 100644 --- a/application/views/search/filter.php +++ b/application/views/search/filter.php @@ -69,7 +69,7 @@ } ?> -
Info You can find out how to use the search filter functions in the wiki.
+
Info You can find out how to use the search filter functions in the wiki.
diff --git a/application/views/setup/check_list.php b/application/views/setup/check_list.php index 47cd9c926..77e9688bd 100644 --- a/application/views/setup/check_list.php +++ b/application/views/setup/check_list.php @@ -2,7 +2,7 @@

-

Welcome to Cloudlog, before you can start logging QSOs you need to carry out the following.

+

Welcome to Wavelog, before you can start logging QSOs you need to carry out the following.

  • Install Country Files
  • diff --git a/application/views/stations/index.php b/application/views/stations/index.php index d677c489a..7d3c43996 100644 --- a/application/views/stations/index.php +++ b/application/views/stations/index.php @@ -31,7 +31,7 @@ = 1) { ?> diff --git a/application/views/update/index.php b/application/views/update/index.php index e2e75c82e..20fb9f2c4 100644 --- a/application/views/update/index.php +++ b/application/views/update/index.php @@ -33,7 +33,7 @@
    Apply DXCC Data to Logbook

    - After updating, Cloudlog can fill in missing callsign information in the logbook using the newly-obtained DXCC data. + After updating, Wavelog can fill in missing callsign information in the logbook using the newly-obtained DXCC data. You can choose to check just the QSOs in the logbook that are missing DXCC metadata or to re-check the entire logbook and update existing metadata as well, in case it has changed.

    @@ -42,7 +42,7 @@
    Apply Continent Data to Logbook

    - This function can be used to update QSO continent information for all QSOs in Cloudlog missing that information. + This function can be used to update QSO continent information for all QSOs in Wavelog missing that information.

    Check QSOs missing continent data