mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 02:14:13 +00:00
Replace ALL lowercase occurences of cloudlog by wavelog
This commit is contained in:
@@ -80,7 +80,7 @@ $autoload['helper'] = array('url', 'security', 'language');
|
||||
|
|
||||
*/
|
||||
|
||||
$autoload['config'] = array('cloudlog', 'bands', 'lotw');
|
||||
$autoload['config'] = array('wavelog', 'bands', 'lotw');
|
||||
|
||||
|
||||
/*
|
||||
|
||||
@@ -9,7 +9,7 @@ defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
|
||||
| 'app_name' Name of the App 'Cloudlog'
|
||||
| 'app_version' Set by the dev team.
|
||||
| 'directory' directory where cloudlog is installed eg "logger"
|
||||
| 'directory' directory where wavelog is installed eg "logger"
|
||||
| 'callbook' Selects which Callbook lookup to use defaults "hamqth" but supports "qrz"
|
||||
*/
|
||||
|
||||
@@ -508,7 +508,7 @@ $config['encryption_key'] = 'flossie1234555541';
|
||||
|
|
||||
*/
|
||||
$config['sess_driver'] = 'files';
|
||||
$config['sess_cookie_name'] = 'ci_cloudlog';
|
||||
$config['sess_cookie_name'] = 'ci_wavelog';
|
||||
$config['sess_expiration'] = 0;
|
||||
$config['sess_save_path'] = '/tmp';
|
||||
$config['sess_match_ip'] = FALSE;
|
||||
|
||||
@@ -50,7 +50,7 @@ class Bandmap extends CI_Controller {
|
||||
// If Logged in and session exists
|
||||
$pageData['custom_date_format'] = $CI->session->userdata('user_date_format');
|
||||
} else {
|
||||
// Get Default date format from /config/cloudlog.php
|
||||
// Get Default date format from /config/wavelog.php
|
||||
$pageData['custom_date_format'] = $CI->config->item('qso_date_format');
|
||||
}
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ class Hrdlog extends CI_Controller {
|
||||
|
||||
/*
|
||||
* Upload QSO to hrdlog.net
|
||||
* When called from the url cloudlog/hrdlog/upload, the function loops through all station_id's with a hrdlog code defined.
|
||||
* When called from the url wavelog/hrdlog/upload, the function loops through all station_id's with a hrdlog code defined.
|
||||
* All QSOs not previously uploaded, will then be uploaded, one at a time
|
||||
*/
|
||||
public function upload() {
|
||||
|
||||
@@ -695,7 +695,7 @@ class Logbook extends CI_Controller {
|
||||
// If Logged in and session exists
|
||||
$custom_date_format = $this->session->userdata('user_date_format');
|
||||
} else {
|
||||
// Get Default date format from /config/cloudlog.php
|
||||
// Get Default date format from /config/wavelog.php
|
||||
$custom_date_format = $this->config->item('qso_date_format');
|
||||
}
|
||||
|
||||
|
||||
@@ -62,7 +62,7 @@ class Logbookadvanced extends CI_Controller {
|
||||
// If Logged in and session exists
|
||||
$pageData['custom_date_format'] = $CI->session->userdata('user_date_format');
|
||||
} else {
|
||||
// Get Default date format from /config/cloudlog.php
|
||||
// Get Default date format from /config/wavelog.php
|
||||
$pageData['custom_date_format'] = $CI->config->item('qso_date_format');
|
||||
}
|
||||
|
||||
@@ -348,7 +348,7 @@ class Logbookadvanced extends CI_Controller {
|
||||
// If Logged in and session exists
|
||||
$custom_date_format = $CI->session->userdata('user_date_format');
|
||||
} else {
|
||||
// Get Default date format from /config/cloudlog.php
|
||||
// Get Default date format from /config/wavelog.php
|
||||
$custom_date_format = $CI->config->item('qso_date_format');
|
||||
}
|
||||
|
||||
|
||||
@@ -269,7 +269,7 @@ class Lotw extends CI_Controller {
|
||||
}
|
||||
|
||||
// Build Filename
|
||||
$filename_for_saving = './uploads/lotw/'.preg_replace('/[^a-z0-9]+/', '-', strtolower($data['lotw_cert_info']->callsign))."-".date("Y-m-d-H-i-s")."-cloudlog.tq8";
|
||||
$filename_for_saving = './uploads/lotw/'.preg_replace('/[^a-z0-9]+/', '-', strtolower($data['lotw_cert_info']->callsign))."-".date("Y-m-d-H-i-s")."-wavelog.tq8";
|
||||
|
||||
$gzdata = gzencode($adif_to_save, 9);
|
||||
$fp = fopen($filename_for_saving, "w");
|
||||
@@ -409,7 +409,7 @@ class Lotw extends CI_Controller {
|
||||
|
||||
if($worked) {
|
||||
// Reading p12 successful
|
||||
$new_password = "cloudlog"; // set default password
|
||||
$new_password = "wavelog"; // set default password
|
||||
$result = null;
|
||||
$worked = openssl_pkey_export($results['pkey'], $result, $new_password);
|
||||
|
||||
@@ -957,7 +957,7 @@ class Lotw extends CI_Controller {
|
||||
|
||||
$key = $sign_key;
|
||||
|
||||
$pkeyid = openssl_pkey_get_private($key, 'cloudlog');
|
||||
$pkeyid = openssl_pkey_get_private($key, 'wavelog');
|
||||
//openssl_sign($plaintext, $signature, $pkeyid, OPENSSL_ALGO_SHA1 );
|
||||
//openssl_free_key($pkeyid);
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ class Options extends CI_Controller {
|
||||
|
||||
//echo $this->optionslib->get_option('theme');
|
||||
|
||||
$data['page_title'] = $this->lang->line('options_cloudlog_options');
|
||||
$data['page_title'] = $this->lang->line('options_wavelog_options');
|
||||
|
||||
$this->load->view('interface_assets/header', $data);
|
||||
$this->load->view('options/index');
|
||||
@@ -47,7 +47,7 @@ class Options extends CI_Controller {
|
||||
$directory = 'application/language';
|
||||
$data['language_options'] = array_diff(scandir($directory), array('..', '.'));
|
||||
|
||||
$data['page_title'] = $this->lang->line('options_cloudlog_options');
|
||||
$data['page_title'] = $this->lang->line('options_wavelog_options');
|
||||
$data['sub_heading'] = $this->lang->line('options_appearance');
|
||||
|
||||
$this->load->model('Themes_model');
|
||||
@@ -66,7 +66,7 @@ class Options extends CI_Controller {
|
||||
$directory = 'application/language';
|
||||
$data['language_options'] = array_diff(scandir($directory), array('..', '.'));
|
||||
|
||||
$data['page_title'] = $this->lang->line('options_cloudlog_options');
|
||||
$data['page_title'] = $this->lang->line('options_wavelog_options');
|
||||
$data['sub_heading'] = $this->lang->line('options_appearance');
|
||||
|
||||
$this->load->helper(array('form', 'url'));
|
||||
@@ -138,7 +138,7 @@ class Options extends CI_Controller {
|
||||
|
||||
// function used to display the /dxcluster url
|
||||
function dxcluster() {
|
||||
$data['page_title'] = $this->lang->line('options_cloudlog_options');
|
||||
$data['page_title'] = $this->lang->line('options_wavelog_options');
|
||||
$data['sub_heading'] = $this->lang->line('options_dxcluster_settings');
|
||||
|
||||
$this->load->view('interface_assets/header', $data);
|
||||
@@ -151,7 +151,7 @@ class Options extends CI_Controller {
|
||||
|
||||
// Get Language Options
|
||||
|
||||
$data['page_title'] = $this->lang->line('options_cloudlog_options');
|
||||
$data['page_title'] = $this->lang->line('options_wavelog_options');
|
||||
$data['sub_heading'] = $this->lang->line('options_dxcluster_settings');
|
||||
|
||||
$this->load->helper(array('form', 'url'));
|
||||
@@ -188,7 +188,7 @@ class Options extends CI_Controller {
|
||||
// function used to display the /radio url
|
||||
function radio() {
|
||||
|
||||
$data['page_title'] = $this->lang->line('options_cloudlog_options');
|
||||
$data['page_title'] = $this->lang->line('options_wavelog_options');
|
||||
$data['sub_heading'] = $this->lang->line('options_radio_settings');
|
||||
|
||||
$this->load->view('interface_assets/header', $data);
|
||||
@@ -201,7 +201,7 @@ class Options extends CI_Controller {
|
||||
|
||||
// Get Language Options
|
||||
|
||||
$data['page_title'] = $this->lang->line('options_cloudlog_options');
|
||||
$data['page_title'] = $this->lang->line('options_wavelog_options');
|
||||
$data['sub_heading'] = $this->lang->line('options_radio_settings');
|
||||
|
||||
$this->load->helper(array('form', 'url'));
|
||||
@@ -234,7 +234,7 @@ class Options extends CI_Controller {
|
||||
// function used to display the /appearance url
|
||||
function email() {
|
||||
|
||||
$data['page_title'] = $this->lang->line('options_cloudlog_options');
|
||||
$data['page_title'] = $this->lang->line('options_wavelog_options');
|
||||
$data['sub_heading'] = $this->lang->line('options_email');
|
||||
|
||||
$this->load->view('interface_assets/header', $data);
|
||||
@@ -247,7 +247,7 @@ class Options extends CI_Controller {
|
||||
|
||||
// Get Language Options
|
||||
|
||||
$data['page_title'] = $this->lang->line('options_cloudlog_options');
|
||||
$data['page_title'] = $this->lang->line('options_wavelog_options');
|
||||
$data['sub_heading'] = $this->lang->line('options_email');
|
||||
|
||||
$this->load->helper(array('form', 'url'));
|
||||
@@ -317,7 +317,7 @@ class Options extends CI_Controller {
|
||||
|
||||
function oqrs() {
|
||||
|
||||
$data['page_title'] = $this->lang->line('options_cloudlog_options');
|
||||
$data['page_title'] = $this->lang->line('options_wavelog_options');
|
||||
$data['sub_heading'] = $this->lang->line('options_oqrs');
|
||||
|
||||
$this->load->view('interface_assets/header', $data);
|
||||
@@ -327,7 +327,7 @@ class Options extends CI_Controller {
|
||||
|
||||
function oqrs_save() {
|
||||
|
||||
$data['page_title'] = $this->lang->line('options_cloudlog_options');
|
||||
$data['page_title'] = $this->lang->line('options_wavelog_options');
|
||||
$data['sub_heading'] = $this->lang->line('options_oqrs');
|
||||
|
||||
$this->load->helper(array('form', 'url'));
|
||||
@@ -395,7 +395,7 @@ class Options extends CI_Controller {
|
||||
// function used to display the /version_dialog url
|
||||
function version_dialog() {
|
||||
|
||||
$data['page_title'] = $this->lang->line('options_cloudlog_options');
|
||||
$data['page_title'] = $this->lang->line('options_wavelog_options');
|
||||
$data['sub_heading'] = $this->lang->line('options_version_dialog_settings');
|
||||
|
||||
$this->load->view('interface_assets/header', $data);
|
||||
@@ -407,7 +407,7 @@ class Options extends CI_Controller {
|
||||
|
||||
// Get Language Options
|
||||
|
||||
$data['page_title'] = $this->lang->line('options_cloudlog_options');
|
||||
$data['page_title'] = $this->lang->line('options_wavelog_options');
|
||||
$data['sub_heading'] = $this->lang->line('options_version_dialog_settings');
|
||||
|
||||
$this->load->helper(array('form', 'url'));
|
||||
|
||||
@@ -13,7 +13,7 @@ class Qrz extends CI_Controller {
|
||||
|
||||
/*
|
||||
* Upload QSO to QRZ.com
|
||||
* When called from the url cloudlog/qrz/upload, the function loops through all station_id's with a qrz api key defined.
|
||||
* When called from the url wavelog/qrz/upload, the function loops through all station_id's with a qrz api key defined.
|
||||
* All QSOs not previously uploaded, will then be uploaded, one at a time
|
||||
*/
|
||||
public function upload() {
|
||||
|
||||
@@ -5,7 +5,7 @@ class Webadif extends CI_Controller {
|
||||
|
||||
/*
|
||||
* Upload QSO to webADIF
|
||||
* When called from the url cloudlog/webadif/upload, the function loops through all station_id's with a webADIF
|
||||
* When called from the url wavelog/webadif/upload, the function loops through all station_id's with a webADIF
|
||||
* api key defined.
|
||||
* All QSOs not previously uploaded, will then be uploaded, one at a time
|
||||
*/
|
||||
|
||||
@@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Callsign';
|
||||
$lang['account_gridsquare'] = 'Gridsquare';
|
||||
|
||||
$lang['account_cloudlog_preferences'] = 'Cloudlog Preferences';
|
||||
$lang['account_wavelog_preferences'] = 'Cloudlog Preferences';
|
||||
$lang['account_timezone'] = 'Timezone';
|
||||
$lang['account_date_format'] = 'Date Format';
|
||||
$lang['account_log_end_time'] = 'Log End Times for QSOs Separately';
|
||||
@@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Search Callsign";
|
||||
$lang['account_measurement_preferences'] = 'Measurement preference';
|
||||
$lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Select how you would like dates shown when logged into your account.';
|
||||
$lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Choose which unit distances will be shown in';
|
||||
$lang['account_cloudlog_language'] = 'Cloudlog Language';
|
||||
$lang['account_choose_cloudlog_language'] = 'Choose Cloudlog language.';
|
||||
$lang['account_wavelog_language'] = 'Cloudlog Language';
|
||||
$lang['account_choose_wavelog_language'] = 'Choose Cloudlog language.';
|
||||
|
||||
$lang['account_main_menu'] = 'Menu Options';
|
||||
$lang['account_show_notes_in_the_main_menu'] = 'Show notes in the main menu.';
|
||||
@@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Confirm Password';
|
||||
|
||||
$lang['account_forgot_your_password'] = 'Forgot your password?';
|
||||
|
||||
$lang['account_login_to_cloudlog'] = 'Login to Cloudlog';
|
||||
$lang['account_login_to_wavelog'] = 'Login to Cloudlog';
|
||||
$lang['account_login'] = 'Login';
|
||||
|
||||
$lang['account_mastodon'] = 'Mastodonserver';
|
||||
|
||||
@@ -111,7 +111,7 @@ $lang['general_total_distance'] = 'Общо разстояние';
|
||||
$lang['gen_max_file_upload_size'] = 'Maximum file upload size is ';
|
||||
|
||||
// Cloudlog Terms
|
||||
$lang['cloudlog_station_profile'] = 'Местоположение на станцията';
|
||||
$lang['wavelog_station_profile'] = 'Местоположение на станцията';
|
||||
|
||||
// ham radio terms
|
||||
$lang['gen_hamradio_cq'] = "CQ";
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
defined('BASEPATH') OR exit('Не е разрешен директен достъп до скрипта');
|
||||
|
||||
$lang['options_cloudlog_options'] = 'Cloudlog Options';
|
||||
$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_appearance'] = 'Appearance';
|
||||
@@ -42,7 +42,7 @@ $lang['options_mail_settings_saved'] = "The settings were saved successfully.";
|
||||
$lang['options_mail_settings_failed'] = "Something went wrong with saving the settings. Try again.";
|
||||
$lang['options_outgoing_protocol_hint'] = "The protocol that will be used to send out emails.";
|
||||
$lang['options_smtp_encryption_hint'] = "Choose whether emails should be sent with TLS or SSL.";
|
||||
$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'cloudlog@example.com'";
|
||||
$lang['options_email_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_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'";
|
||||
|
||||
@@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "HAM信息";
|
||||
$lang['account_callsign'] = '呼号';
|
||||
$lang['account_gridsquare'] = '网格坐标';
|
||||
|
||||
$lang['account_cloudlog_preferences'] = '偏好';
|
||||
$lang['account_wavelog_preferences'] = '偏好';
|
||||
$lang['account_timezone'] = '时区';
|
||||
$lang['account_date_format'] = '日期格式';
|
||||
$lang['account_log_end_time'] = '单独记录QSO结束时间';
|
||||
@@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "查询呼号";
|
||||
$lang['account_measurement_preferences'] = '距离单位选择';
|
||||
$lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = '选择您登录账户时显示偏好的日期格式';
|
||||
$lang['account_choose_which_unit_distances_will_be_shown_in'] = '选择距离单位';
|
||||
$lang['account_cloudlog_language'] = 'Cloudlog语言';
|
||||
$lang['account_choose_cloudlog_language'] = '选择Cloudlog语言';
|
||||
$lang['account_wavelog_language'] = 'Cloudlog语言';
|
||||
$lang['account_choose_wavelog_language'] = '选择Cloudlog语言';
|
||||
|
||||
$lang['account_main_menu'] = '主菜单';
|
||||
$lang['account_show_notes_in_the_main_menu'] = '在主菜单显示便签';
|
||||
@@ -102,7 +102,7 @@ $lang['account_confirm_password'] = '确认密码';
|
||||
|
||||
$lang['account_forgot_your_password'] = '忘记密码?';
|
||||
|
||||
$lang['account_login_to_cloudlog'] = '登录Cloudlog';
|
||||
$lang['account_login_to_wavelog'] = '登录Cloudlog';
|
||||
$lang['account_login'] = '登录';
|
||||
|
||||
$lang['account_mastodon'] = 'Mastodon服务器';
|
||||
|
||||
@@ -111,7 +111,7 @@ $lang['general_total_distance'] = '总计距离';
|
||||
$lang['gen_max_file_upload_size'] = '最大上传文件大小是';
|
||||
|
||||
// Cloudlog Terms
|
||||
$lang['cloudlog_station_profile'] = '电台站地址';
|
||||
$lang['wavelog_station_profile'] = '电台站地址';
|
||||
|
||||
// ham radio terms
|
||||
$lang['gen_hamradio_cq'] = "CQ";
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['options_cloudlog_options'] = 'Cloudlog 设置';
|
||||
$lang['options_wavelog_options'] = 'Cloudlog 设置';
|
||||
$lang['options_message1'] = '本设置是针对所有用户的全局设置,会覆盖对于单个用户的设置。';
|
||||
|
||||
$lang['options_appearance'] = '外观';
|
||||
@@ -42,7 +42,7 @@ $lang['options_mail_settings_saved'] = "设置已保存";
|
||||
$lang['options_mail_settings_failed'] = "保存时出现问题,请重试";
|
||||
$lang['options_outgoing_protocol_hint'] = "发送邮件时使用的协议";
|
||||
$lang['options_smtp_encryption_hint'] = "选择邮件将会通过TLS还是SSL发送";
|
||||
$lang['options_email_address_hint'] = "发送邮件的邮箱地址,例如:'cloudlog@example.com'";
|
||||
$lang['options_email_address_hint'] = "发送邮件的邮箱地址,例如:'wavelog@example.com'";
|
||||
$lang['options_email_sender_name_hint'] = "发送者的名字,例如:'Cloudlog'";
|
||||
$lang['options_smtp_host_hint'] = "邮件服务器的域名,例如:'mail.example.com' (不带'ssl://'或'tls://')";
|
||||
$lang['options_smtp_port_hint'] = "邮件服务器的SMTP端口,例如:如果使用了TLS -> '587',如果使用了SSL -> '465'";
|
||||
|
||||
@@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Značka';
|
||||
$lang['account_gridsquare'] = 'Locátor';
|
||||
|
||||
$lang['account_cloudlog_preferences'] = 'Nastavení Cloudlogu';
|
||||
$lang['account_wavelog_preferences'] = 'Nastavení Cloudlogu';
|
||||
$lang['account_timezone'] = 'Časové pásmo';
|
||||
$lang['account_date_format'] = 'Formát data';
|
||||
$lang['account_log_end_time'] = 'Log End Times for QSOs Separately';
|
||||
@@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Search Callsign";
|
||||
$lang['account_measurement_preferences'] = 'Nastavení měření';
|
||||
$lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Vyberte, jak chcete, aby byla data zobrazena při přihlášení do vašeho účtu.';
|
||||
$lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Vyberte, v jakých jednotkách se budou zobrazovat vzdálenosti.';
|
||||
$lang['account_cloudlog_language'] = 'Cloudlog Language';
|
||||
$lang['account_choose_cloudlog_language'] = 'Choose Cloudlog language.';
|
||||
$lang['account_wavelog_language'] = 'Cloudlog Language';
|
||||
$lang['account_choose_wavelog_language'] = 'Choose Cloudlog language.';
|
||||
|
||||
$lang['account_main_menu'] = 'Hlavní menu';
|
||||
$lang['account_show_notes_in_the_main_menu'] = 'Zobrazovat poznámky v hlavním menu.';
|
||||
@@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Potvrzení hesla';
|
||||
|
||||
$lang['account_forgot_your_password'] = 'Zapomněli jste heslo?';
|
||||
|
||||
$lang['account_login_to_cloudlog'] = 'Přihlásit se do Cloudlogu';
|
||||
$lang['account_login_to_wavelog'] = 'Přihlásit se do Cloudlogu';
|
||||
$lang['account_login'] = 'Přihlásit se';
|
||||
|
||||
$lang['account_mastodon'] = 'Mastodon server';
|
||||
|
||||
@@ -111,7 +111,7 @@ $lang['general_total_distance'] = 'Celková vzdálenost';
|
||||
$lang['gen_max_file_upload_size'] = 'Maximum file upload size is ';
|
||||
|
||||
// Cloudlog Terms
|
||||
$lang['cloudlog_station_profile'] = 'Umístění stanice';
|
||||
$lang['wavelog_station_profile'] = 'Umístění stanice';
|
||||
|
||||
// ham radio terms
|
||||
$lang['gen_hamradio_cq'] = "CQ";
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['options_cloudlog_options'] = 'Možnosti Cloudlogu';
|
||||
$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_appearance'] = 'Vzhled';
|
||||
@@ -42,7 +42,7 @@ $lang['options_mail_settings_saved'] = "The settings were saved successfully.";
|
||||
$lang['options_mail_settings_failed'] = "Something went wrong with saving the settings. Try again.";
|
||||
$lang['options_outgoing_protocol_hint'] = "The protocol that will be used to send out emails.";
|
||||
$lang['options_smtp_encryption_hint'] = "Choose whether emails should be sent with TLS or SSL.";
|
||||
$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'cloudlog@example.com'";
|
||||
$lang['options_email_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_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'";
|
||||
|
||||
@@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Callsign';
|
||||
$lang['account_gridsquare'] = 'Gridsquare';
|
||||
|
||||
$lang['account_cloudlog_preferences'] = 'Cloudlog Preferences';
|
||||
$lang['account_wavelog_preferences'] = 'Cloudlog Preferences';
|
||||
$lang['account_timezone'] = 'Timezone';
|
||||
$lang['account_date_format'] = 'Date Format';
|
||||
$lang['account_log_end_time'] = 'Log End Times for QSOs Separately';
|
||||
@@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Search Callsign";
|
||||
$lang['account_measurement_preferences'] = 'Measurement preference';
|
||||
$lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Select how you would like dates shown when logged into your account.';
|
||||
$lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Choose which unit distances will be shown in';
|
||||
$lang['account_cloudlog_language'] = 'Cloudlog Language';
|
||||
$lang['account_choose_cloudlog_language'] = 'Choose Cloudlog language.';
|
||||
$lang['account_wavelog_language'] = 'Cloudlog Language';
|
||||
$lang['account_choose_wavelog_language'] = 'Choose Cloudlog language.';
|
||||
|
||||
$lang['account_main_menu'] = 'Menu Options';
|
||||
$lang['account_show_notes_in_the_main_menu'] = 'Show notes in the main menu.';
|
||||
@@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Confirm Password';
|
||||
|
||||
$lang['account_forgot_your_password'] = 'Forgot your password?';
|
||||
|
||||
$lang['account_login_to_cloudlog'] = 'Login to Cloudlog';
|
||||
$lang['account_login_to_wavelog'] = 'Login to Cloudlog';
|
||||
$lang['account_login'] = 'Login';
|
||||
|
||||
$lang['account_mastodon'] = 'Mastodonserver';
|
||||
|
||||
@@ -111,7 +111,7 @@ $lang['general_total_distance'] = 'Total Distance';
|
||||
$lang['gen_max_file_upload_size'] = 'Maximum file upload size is ';
|
||||
|
||||
// Cloudlog Terms
|
||||
$lang['cloudlog_station_profile'] = 'Station Profiel';
|
||||
$lang['wavelog_station_profile'] = 'Station Profiel';
|
||||
|
||||
// ham radio terms
|
||||
$lang['gen_hamradio_cq'] = "CQ";
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
defined('BASEPATH') OR exit('Directe toegang tot scripts is niet toegestaan');
|
||||
|
||||
$lang['options_cloudlog_options'] = 'Cloudlog Options';
|
||||
$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_appearance'] = 'Appearance';
|
||||
@@ -42,7 +42,7 @@ $lang['options_mail_settings_saved'] = "The settings were saved successfully.";
|
||||
$lang['options_mail_settings_failed'] = "Something went wrong with saving the settings. Try again.";
|
||||
$lang['options_outgoing_protocol_hint'] = "The protocol that will be used to send out emails.";
|
||||
$lang['options_smtp_encryption_hint'] = "Choose whether emails should be sent with TLS or SSL.";
|
||||
$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'cloudlog@example.com'";
|
||||
$lang['options_email_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_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'";
|
||||
|
||||
@@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Callsign';
|
||||
$lang['account_gridsquare'] = 'Gridsquare';
|
||||
|
||||
$lang['account_cloudlog_preferences'] = 'Cloudlog Preferences';
|
||||
$lang['account_wavelog_preferences'] = 'Cloudlog Preferences';
|
||||
$lang['account_timezone'] = 'Timezone';
|
||||
$lang['account_date_format'] = 'Date Format';
|
||||
$lang['account_log_end_time'] = 'Log End Times for QSOs Separately';
|
||||
@@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Search Callsign";
|
||||
$lang['account_measurement_preferences'] = 'Measurement preference';
|
||||
$lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Select how you would like dates shown when logged into your account.';
|
||||
$lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Choose which unit distances will be shown in';
|
||||
$lang['account_cloudlog_language'] = 'Cloudlog Language';
|
||||
$lang['account_choose_cloudlog_language'] = 'Choose Cloudlog language.';
|
||||
$lang['account_wavelog_language'] = 'Cloudlog Language';
|
||||
$lang['account_choose_wavelog_language'] = 'Choose Cloudlog language.';
|
||||
|
||||
$lang['account_main_menu'] = 'Menu Options';
|
||||
$lang['account_show_notes_in_the_main_menu'] = 'Show notes in the main menu.';
|
||||
@@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Confirm Password';
|
||||
|
||||
$lang['account_forgot_your_password'] = 'Forgot your password?';
|
||||
|
||||
$lang['account_login_to_cloudlog'] = 'Login to Cloudlog';
|
||||
$lang['account_login_to_wavelog'] = 'Login to Cloudlog';
|
||||
$lang['account_login'] = 'Login';
|
||||
|
||||
$lang['account_mastodon'] = 'Mastodonserver';
|
||||
|
||||
@@ -111,7 +111,7 @@ $lang['general_total_distance'] = 'Total Distance';
|
||||
$lang['gen_max_file_upload_size'] = 'Maximum file upload size is ';
|
||||
|
||||
// Cloudlog Terms
|
||||
$lang['cloudlog_station_profile'] = 'Station Location';
|
||||
$lang['wavelog_station_profile'] = 'Station Location';
|
||||
|
||||
// ham radio terms
|
||||
$lang['gen_hamradio_cq'] = "CQ";
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['options_cloudlog_options'] = 'Cloudlog Options';
|
||||
$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_appearance'] = 'Appearance';
|
||||
@@ -42,7 +42,7 @@ $lang['options_mail_settings_saved'] = "The settings were saved successfully.";
|
||||
$lang['options_mail_settings_failed'] = "Something went wrong with saving the settings. Try again.";
|
||||
$lang['options_outgoing_protocol_hint'] = "The protocol that will be used to send out emails.";
|
||||
$lang['options_smtp_encryption_hint'] = "Choose whether emails should be sent with TLS or SSL.";
|
||||
$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'cloudlog@example.com'";
|
||||
$lang['options_email_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_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'";
|
||||
|
||||
@@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Radioamatöörikutsu';
|
||||
$lang['account_gridsquare'] = 'Gridsquare';
|
||||
|
||||
$lang['account_cloudlog_preferences'] = 'Cloudlog Asetukset';
|
||||
$lang['account_wavelog_preferences'] = 'Cloudlog Asetukset';
|
||||
$lang['account_timezone'] = 'Aikavyöhyke';
|
||||
$lang['account_date_format'] = 'Päivämäärämuoto';
|
||||
$lang['account_log_end_time'] = 'Log End Times for QSOs Separately';
|
||||
@@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Search Callsign";
|
||||
$lang['account_measurement_preferences'] = 'Mittayksikkömuoto';
|
||||
$lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Valitse, miten haluat päivämäärät näkyvän, kun olet kirjautunut tilillesi.';
|
||||
$lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Valitse, mitä mittayksikkömuotoa käytetään';
|
||||
$lang['account_cloudlog_language'] = 'Cloudlog Language';
|
||||
$lang['account_choose_cloudlog_language'] = 'Choose Cloudlog language.';
|
||||
$lang['account_wavelog_language'] = 'Cloudlog Language';
|
||||
$lang['account_choose_wavelog_language'] = 'Choose Cloudlog language.';
|
||||
|
||||
$lang['account_main_menu'] = 'Menu Options';
|
||||
$lang['account_show_notes_in_the_main_menu'] = 'Näytä "Muistio" päävalikossa.';
|
||||
@@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Vahvista salasana';
|
||||
|
||||
$lang['account_forgot_your_password'] = 'Salasana unohtunut?';
|
||||
|
||||
$lang['account_login_to_cloudlog'] = 'Kirjaudu Cloudlogiin';
|
||||
$lang['account_login_to_wavelog'] = 'Kirjaudu Cloudlogiin';
|
||||
$lang['account_login'] = 'Kirjaudu';
|
||||
|
||||
$lang['account_mastodon'] = 'Mastodonserver';
|
||||
|
||||
@@ -111,7 +111,7 @@ $lang['general_total_distance'] = 'Kokonaismatka';
|
||||
$lang['gen_max_file_upload_size'] = 'Maximum file upload size is ';
|
||||
|
||||
// Cloudlog Terms
|
||||
$lang['cloudlog_station_profile'] = 'Asemaprofiili';
|
||||
$lang['wavelog_station_profile'] = 'Asemaprofiili';
|
||||
|
||||
// ham radio terms
|
||||
$lang['gen_hamradio_cq'] = "CQ";
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['options_cloudlog_options'] = 'Cloudlog Options';
|
||||
$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_appearance'] = 'Ulkoasu';
|
||||
@@ -42,7 +42,7 @@ $lang['options_mail_settings_saved'] = "The settings were saved successfully.";
|
||||
$lang['options_mail_settings_failed'] = "Something went wrong with saving the settings. Try again.";
|
||||
$lang['options_outgoing_protocol_hint'] = "The protocol that will be used to send out emails.";
|
||||
$lang['options_smtp_encryption_hint'] = "Choose whether emails should be sent with TLS or SSL.";
|
||||
$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'cloudlog@example.com'";
|
||||
$lang['options_email_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_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'";
|
||||
|
||||
@@ -32,7 +32,7 @@ $lang['account_last_name'] = "Prénom";
|
||||
$lang['account_callsign'] = "Indicatif";
|
||||
$lang['account_gridsquare'] = "Locator";
|
||||
|
||||
$lang['account_cloudlog_preferences'] = "Préférences Cloudlog";
|
||||
$lang['account_wavelog_preferences'] = "Préférences Cloudlog";
|
||||
$lang['account_timezone'] = "Fuseau horaire";
|
||||
$lang['account_date_format'] = "Format de la date";
|
||||
$lang['account_log_end_time'] = "Enregistrer les heures de fin des QSO séparément";
|
||||
@@ -46,8 +46,8 @@ $lang['account_quicklog_enter_search'] = "Recherche l'indicatif";
|
||||
$lang['account_measurement_preferences'] = "Unité de mesure";
|
||||
$lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = "(Sélectionnez le format de date à afficher)";
|
||||
$lang['account_choose_which_unit_distances_will_be_shown_in'] = "(Sélectionner l'unité de mesure à afficher)";
|
||||
$lang['account_cloudlog_language'] = "Langue utilisée par Cloudlog";
|
||||
$lang['account_choose_cloudlog_language'] = "(Sélectionner la langue à utiliser)";
|
||||
$lang['account_wavelog_language'] = "Langue utilisée par Cloudlog";
|
||||
$lang['account_choose_wavelog_language'] = "(Sélectionner la langue à utiliser)";
|
||||
|
||||
$lang['account_main_menu'] = "Menu principal";
|
||||
$lang['account_show_notes_in_the_main_menu'] = "Voir les notes dans le main principal";
|
||||
@@ -100,7 +100,7 @@ $lang['account_confirm_password'] = "Mot de passe confirmé";
|
||||
|
||||
$lang['account_forgot_your_password'] = "Mot de passe oublié ?";
|
||||
|
||||
$lang['account_login_to_cloudlog'] = "Connexion à Cloudlog";
|
||||
$lang['account_login_to_wavelog'] = "Connexion à Cloudlog";
|
||||
$lang['account_login'] = "Login";
|
||||
|
||||
$lang['account_mastodon'] = "Mastodon Serveur";
|
||||
|
||||
@@ -111,7 +111,7 @@ $lang['general_total_distance'] = "Distance Totale";
|
||||
$lang['gen_max_file_upload_size'] = "La taille maximum d'un fichier à télécharger est";
|
||||
|
||||
// Cloudlog Terms
|
||||
$lang['cloudlog_station_profile'] = "Profil de la Station";
|
||||
$lang['wavelog_station_profile'] = "Profil de la Station";
|
||||
|
||||
// ham radio terms
|
||||
$lang['gen_hamradio_cq'] = "CQ";
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['options_cloudlog_options'] = 'Cloudlog Options';
|
||||
$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_appearance'] = 'Appearance';
|
||||
@@ -42,7 +42,7 @@ $lang['options_mail_settings_saved'] = "The settings were saved successfully.";
|
||||
$lang['options_mail_settings_failed'] = "Something went wrong with saving the settings. Try again.";
|
||||
$lang['options_outgoing_protocol_hint'] = "The protocol that will be used to send out emails.";
|
||||
$lang['options_smtp_encryption_hint'] = "Choose whether emails should be sent with TLS or SSL.";
|
||||
$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'cloudlog@example.com'";
|
||||
$lang['options_email_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_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'";
|
||||
|
||||
@@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Rufzeichen';
|
||||
$lang['account_gridsquare'] = 'Planquadrat';
|
||||
|
||||
$lang['account_cloudlog_preferences'] = 'Cloudlog Einstellungen';
|
||||
$lang['account_wavelog_preferences'] = 'Cloudlog Einstellungen';
|
||||
$lang['account_timezone'] = 'Zeitzone';
|
||||
$lang['account_date_format'] = 'Datumsformat';
|
||||
$lang['account_log_end_time'] = 'Logge Endzeiten für QSOs separat';
|
||||
@@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Suche Rufzeichen";
|
||||
$lang['account_measurement_preferences'] = 'Entfernungsformat';
|
||||
$lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Wähle, wie Datumsfelder angezeigt werden sollen, wenn du eingeloggt bist.';
|
||||
$lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Wähle, in welcher Einheit Entfernungen angezeigt werden sollen.';
|
||||
$lang['account_cloudlog_language'] = 'Cloudlog Sprache';
|
||||
$lang['account_choose_cloudlog_language'] = 'Wähle eine Sprache für Cloudlog.';
|
||||
$lang['account_wavelog_language'] = 'Cloudlog Sprache';
|
||||
$lang['account_choose_wavelog_language'] = 'Wähle eine Sprache für Cloudlog.';
|
||||
|
||||
$lang['account_main_menu'] = 'Menü Optionen';
|
||||
$lang['account_show_notes_in_the_main_menu'] = 'Zeige Notizen im Hauptmenü';
|
||||
@@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Bestätige Passwort';
|
||||
|
||||
$lang['account_forgot_your_password'] = 'Passwort vergessen?';
|
||||
|
||||
$lang['account_login_to_cloudlog'] = 'Anmeldung bei Cloudlog';
|
||||
$lang['account_login_to_wavelog'] = 'Anmeldung bei Cloudlog';
|
||||
$lang['account_login'] = 'Anmeldung';
|
||||
|
||||
$lang['account_mastodon'] = 'Mastodonserver';
|
||||
|
||||
@@ -111,7 +111,7 @@ $lang['general_total_distance'] = 'Entfernung';
|
||||
$lang['gen_max_file_upload_size'] = 'Die max. Dateigrösse für Uploads beträgt ';
|
||||
|
||||
// Cloudlog Terms
|
||||
$lang['cloudlog_station_profile'] = 'Stationsprofil';
|
||||
$lang['wavelog_station_profile'] = 'Stationsprofil';
|
||||
|
||||
// ham radio terms
|
||||
$lang['gen_hamradio_cq'] = "CQ";
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
defined('BASEPATH') OR exit('Direkter Zugriff auf Skripte ist nicht erlaubt');
|
||||
|
||||
$lang['options_cloudlog_options'] = 'Cloudlog Optionen';
|
||||
$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_appearance'] = 'Erscheinungsbild';
|
||||
@@ -42,7 +42,7 @@ $lang['options_mail_settings_saved'] = "Die Einstellungen wurden erfolgreich ges
|
||||
$lang['options_mail_settings_failed'] = "Beim Speichern ist was schief gelaufen. Probiere es erneut.";
|
||||
$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. 'cloudlog@example.com'";
|
||||
$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_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'";
|
||||
|
||||
@@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Callsign';
|
||||
$lang['account_gridsquare'] = 'Gridsquare';
|
||||
|
||||
$lang['account_cloudlog_preferences'] = 'Cloudlog Preferences';
|
||||
$lang['account_wavelog_preferences'] = 'Cloudlog Preferences';
|
||||
$lang['account_timezone'] = 'Timezone';
|
||||
$lang['account_date_format'] = 'Date Format';
|
||||
$lang['account_log_end_time'] = 'Log End Times for QSOs Separately';
|
||||
@@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Search Callsign";
|
||||
$lang['account_measurement_preferences'] = 'Measurement preference';
|
||||
$lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Select how you would like dates shown when logged into your account.';
|
||||
$lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Choose which unit distances will be shown in';
|
||||
$lang['account_cloudlog_language'] = 'Cloudlog Language';
|
||||
$lang['account_choose_cloudlog_language'] = 'Choose Cloudlog language.';
|
||||
$lang['account_wavelog_language'] = 'Cloudlog Language';
|
||||
$lang['account_choose_wavelog_language'] = 'Choose Cloudlog language.';
|
||||
|
||||
$lang['account_main_menu'] = 'Menu Options';
|
||||
$lang['account_show_notes_in_the_main_menu'] = 'Show notes in the main menu.';
|
||||
@@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Confirm Password';
|
||||
|
||||
$lang['account_forgot_your_password'] = 'Forgot your password?';
|
||||
|
||||
$lang['account_login_to_cloudlog'] = 'Login to Cloudlog';
|
||||
$lang['account_login_to_wavelog'] = 'Login to Cloudlog';
|
||||
$lang['account_login'] = 'Login';
|
||||
|
||||
$lang['account_mastodon'] = 'Mastodonserver';
|
||||
|
||||
@@ -111,7 +111,7 @@ $lang['general_total_distance'] = 'Συνολική Απόσταση';
|
||||
$lang['gen_max_file_upload_size'] = 'Maximum file upload size is ';
|
||||
|
||||
// Cloudlog Terms
|
||||
$lang['cloudlog_station_profile'] = 'Τοποθεσία Σταθμού';
|
||||
$lang['wavelog_station_profile'] = 'Τοποθεσία Σταθμού';
|
||||
|
||||
// ham radio terms
|
||||
$lang['gen_hamradio_cq'] = "CQ";
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['options_cloudlog_options'] = 'Cloudlog Options';
|
||||
$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_appearance'] = 'Appearance';
|
||||
@@ -42,7 +42,7 @@ $lang['options_mail_settings_saved'] = "The settings were saved successfully.";
|
||||
$lang['options_mail_settings_failed'] = "Something went wrong with saving the settings. Try again.";
|
||||
$lang['options_outgoing_protocol_hint'] = "The protocol that will be used to send out emails.";
|
||||
$lang['options_smtp_encryption_hint'] = "Choose whether emails should be sent with TLS or SSL.";
|
||||
$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'cloudlog@example.com'";
|
||||
$lang['options_email_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_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'";
|
||||
|
||||
@@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Callsign';
|
||||
$lang['account_gridsquare'] = 'Gridsquare';
|
||||
|
||||
$lang['account_cloudlog_preferences'] = 'Cloudlog Preferences';
|
||||
$lang['account_wavelog_preferences'] = 'Cloudlog Preferences';
|
||||
$lang['account_timezone'] = 'Timezone';
|
||||
$lang['account_date_format'] = 'Date Format';
|
||||
$lang['account_log_end_time'] = 'Log End Times for QSOs Separately';
|
||||
@@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Search Callsign";
|
||||
$lang['account_measurement_preferences'] = 'Measurement preference';
|
||||
$lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Select how you would like dates shown when logged into your account.';
|
||||
$lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Choose which unit distances will be shown in';
|
||||
$lang['account_cloudlog_language'] = 'Cloudlog Language';
|
||||
$lang['account_choose_cloudlog_language'] = 'Choose Cloudlog language.';
|
||||
$lang['account_wavelog_language'] = 'Cloudlog Language';
|
||||
$lang['account_choose_wavelog_language'] = 'Choose Cloudlog language.';
|
||||
|
||||
$lang['account_main_menu'] = 'Menu Options';
|
||||
$lang['account_show_notes_in_the_main_menu'] = 'Show notes in the main menu.';
|
||||
@@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Confirm Password';
|
||||
|
||||
$lang['account_forgot_your_password'] = 'Forgot your password?';
|
||||
|
||||
$lang['account_login_to_cloudlog'] = 'Login to Cloudlog';
|
||||
$lang['account_login_to_wavelog'] = 'Login to Cloudlog';
|
||||
$lang['account_login'] = 'Login';
|
||||
|
||||
$lang['account_mastodon'] = 'Mastodonserver';
|
||||
|
||||
@@ -111,7 +111,7 @@ $lang['general_total_distance'] = 'Distanza Totale';
|
||||
$lang['gen_max_file_upload_size'] = 'Maximum file upload size is ';
|
||||
|
||||
// Cloudlog Terms
|
||||
$lang['cloudlog_station_profile'] = 'Luogo Stazione';
|
||||
$lang['wavelog_station_profile'] = 'Luogo Stazione';
|
||||
|
||||
// ham radio terms
|
||||
$lang['gen_hamradio_cq'] = "CQ";
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['options_cloudlog_options'] = 'Cloudlog Options';
|
||||
$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_appearance'] = 'Appearance';
|
||||
@@ -42,7 +42,7 @@ $lang['options_mail_settings_saved'] = "The settings were saved successfully.";
|
||||
$lang['options_mail_settings_failed'] = "Something went wrong with saving the settings. Try again.";
|
||||
$lang['options_outgoing_protocol_hint'] = "The protocol that will be used to send out emails.";
|
||||
$lang['options_smtp_encryption_hint'] = "Choose whether emails should be sent with TLS or SSL.";
|
||||
$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'cloudlog@example.com'";
|
||||
$lang['options_email_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_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'";
|
||||
|
||||
@@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Callsign';
|
||||
$lang['account_gridsquare'] = 'Gridsquare';
|
||||
|
||||
$lang['account_cloudlog_preferences'] = 'Cloudlog Preferences';
|
||||
$lang['account_wavelog_preferences'] = 'Cloudlog Preferences';
|
||||
$lang['account_timezone'] = 'Timezone';
|
||||
$lang['account_date_format'] = 'Date Format';
|
||||
$lang['account_log_end_time'] = 'Log End Times for QSOs Separately';
|
||||
@@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Search Callsign";
|
||||
$lang['account_measurement_preferences'] = 'Measurement preference';
|
||||
$lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Select how you would like dates shown when logged into your account.';
|
||||
$lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Choose which unit distances will be shown in';
|
||||
$lang['account_cloudlog_language'] = 'Cloudlog Language';
|
||||
$lang['account_choose_cloudlog_language'] = 'Choose Cloudlog language.';
|
||||
$lang['account_wavelog_language'] = 'Cloudlog Language';
|
||||
$lang['account_choose_wavelog_language'] = 'Choose Cloudlog language.';
|
||||
|
||||
$lang['account_main_menu'] = 'Menu Options';
|
||||
$lang['account_show_notes_in_the_main_menu'] = 'Show notes in the main menu.';
|
||||
@@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Confirm Password';
|
||||
|
||||
$lang['account_forgot_your_password'] = 'Forgot your password?';
|
||||
|
||||
$lang['account_login_to_cloudlog'] = 'Login to Cloudlog';
|
||||
$lang['account_login_to_wavelog'] = 'Login to Cloudlog';
|
||||
$lang['account_login'] = 'Login';
|
||||
|
||||
$lang['account_mastodon'] = 'Mastodonserver';
|
||||
|
||||
@@ -111,7 +111,7 @@ $lang['general_total_distance'] = 'Suma odległości';
|
||||
$lang['gen_max_file_upload_size'] = 'Maximum file upload size is ';
|
||||
|
||||
// Cloudlog Terms
|
||||
$lang['cloudlog_station_profile'] = 'Lokalizacja stacji';
|
||||
$lang['wavelog_station_profile'] = 'Lokalizacja stacji';
|
||||
|
||||
// ham radio terms
|
||||
$lang['gen_hamradio_cq'] = "CQ";
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['options_cloudlog_options'] = 'Cloudlog Options';
|
||||
$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_appearance'] = 'Appearance';
|
||||
@@ -42,7 +42,7 @@ $lang['options_mail_settings_saved'] = "The settings were saved successfully.";
|
||||
$lang['options_mail_settings_failed'] = "Something went wrong with saving the settings. Try again.";
|
||||
$lang['options_outgoing_protocol_hint'] = "The protocol that will be used to send out emails.";
|
||||
$lang['options_smtp_encryption_hint'] = "Choose whether emails should be sent with TLS or SSL.";
|
||||
$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'cloudlog@example.com'";
|
||||
$lang['options_email_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_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'";
|
||||
|
||||
@@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Позывной';
|
||||
$lang['account_gridsquare'] = 'QTH локатор';
|
||||
|
||||
$lang['account_cloudlog_preferences'] = 'Настройки Cloudlog';
|
||||
$lang['account_wavelog_preferences'] = 'Настройки Cloudlog';
|
||||
$lang['account_timezone'] = 'Часовой пояс';
|
||||
$lang['account_date_format'] = 'Формат даты';
|
||||
$lang['account_log_end_time'] = 'Записывать время завершения QSO отдельно';
|
||||
@@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Поиск позывного";
|
||||
$lang['account_measurement_preferences'] = 'Единицы измерения';
|
||||
$lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Выберите представление даты для отображения в вашем аккаунте.';
|
||||
$lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Выберите единицы измерения расстояния';
|
||||
$lang['account_cloudlog_language'] = 'Язык Cloudlog';
|
||||
$lang['account_choose_cloudlog_language'] = 'Выберите язык Cloudlog.';
|
||||
$lang['account_wavelog_language'] = 'Язык Cloudlog';
|
||||
$lang['account_choose_wavelog_language'] = 'Выберите язык Cloudlog.';
|
||||
|
||||
$lang['account_main_menu'] = 'Главное меню';
|
||||
$lang['account_show_notes_in_the_main_menu'] = 'Показывать заметки в главном меню.';
|
||||
@@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Подтвердить Пароль';
|
||||
|
||||
$lang['account_forgot_your_password'] = 'Забыли пароль?';
|
||||
|
||||
$lang['account_login_to_cloudlog'] = 'Вход в Cloudlog';
|
||||
$lang['account_login_to_wavelog'] = 'Вход в Cloudlog';
|
||||
$lang['account_login'] = 'Вход';
|
||||
|
||||
$lang['account_mastodon'] = 'Сервер Mastodon';
|
||||
|
||||
@@ -112,7 +112,7 @@ $lang['general_total_distance'] = 'Суммарная дистанция';
|
||||
$lang['gen_max_file_upload_size'] = 'Максимальный размер загружаемого файла ';
|
||||
|
||||
// Cloudlog Terms
|
||||
$lang['cloudlog_station_profile'] = 'Месторасположение станции';
|
||||
$lang['wavelog_station_profile'] = 'Месторасположение станции';
|
||||
|
||||
$lang['gen_hamradio_cq'] = "CQ";
|
||||
// ham radio terms
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['options_cloudlog_options'] = 'Настройки';
|
||||
$lang['options_wavelog_options'] = 'Настройки';
|
||||
$lang['options_message1'] = 'Это глобальные настройки, используемые для всех пользователей, которые могут быть переопределены, если есть соответствующие настройки на уровне пользователя.';
|
||||
|
||||
$lang['options_appearance'] = 'Внешний вид';
|
||||
@@ -42,7 +42,7 @@ $lang['options_mail_settings_saved'] = "Настройки сохранены у
|
||||
$lang['options_mail_settings_failed'] = "Что-то пошло не так с сохранёнными настройками. Попробуйте ещё раз.";
|
||||
$lang['options_outgoing_protocol_hint'] = "Протокол, который будет использоваться для отправки емэйл.";
|
||||
$lang['options_smtp_encryption_hint'] = "Выберите, что будет использоваться при отправке емэйл: TLS или SSL.";
|
||||
$lang['options_email_address_hint'] = "Адрес, с которого будет отправляться емэйл, к примеру, 'cloudlog@example.com'";
|
||||
$lang['options_email_address_hint'] = "Адрес, с которого будет отправляться емэйл, к примеру, 'wavelog@example.com'";
|
||||
$lang['options_email_sender_name_hint'] = "Имя отправителя, к примеру, 'Cloudlog'";
|
||||
$lang['options_smtp_host_hint'] = "Адрес почтового сервера, к примеру, 'mail.example.com' (без 'ssl://' или 'tls://')";
|
||||
$lang['options_smtp_port_hint'] = "SMTP порт почтового сервера, к примеру, при использовании TLS -> '587', при использовании SSL -> '465'";
|
||||
|
||||
@@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Información de Radioaficionado";
|
||||
$lang['account_callsign'] = 'Indicativo';
|
||||
$lang['account_gridsquare'] = 'Gridsquare';
|
||||
|
||||
$lang['account_cloudlog_preferences'] = 'Preferencias de Cloudlog';
|
||||
$lang['account_wavelog_preferences'] = 'Preferencias de Cloudlog';
|
||||
$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_cloudlog_language'] = 'Lenguaje de Cloudlog';
|
||||
$lang['account_choose_cloudlog_language'] = 'Seleccione el lenguaje de Cloudlog a 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_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_cloudlog'] = 'Iniciar sesión en Cloudlog';
|
||||
$lang['account_login_to_wavelog'] = 'Iniciar sesión en Cloudlog';
|
||||
$lang['account_login'] = 'Iniciar Sesión';
|
||||
|
||||
$lang['account_mastodon'] = 'Servidor de Mastodon';
|
||||
|
||||
@@ -112,7 +112,7 @@ $lang['general_total_distance'] = 'Distancia total';
|
||||
$lang['gen_max_file_upload_size'] = 'El tamaño máximo del archivo subido es ';
|
||||
|
||||
// Cloudlog Terms
|
||||
$lang['cloudlog_station_profile'] = 'Perfil de estación';
|
||||
$lang['wavelog_station_profile'] = 'Perfil de estación';
|
||||
|
||||
// ham radio terms
|
||||
$lang['gen_hamradio_cq'] = "CQ";
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['options_cloudlog_options'] = 'Opciones de Cloudlog';
|
||||
$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_appearance'] = 'Apariencia';
|
||||
@@ -42,7 +42,7 @@ $lang['options_mail_settings_saved'] = "Las configuraciones fueron guardadas exi
|
||||
$lang['options_mail_settings_failed'] = "Algo salió mal guardando las configuraciones. Intente de nuevo.";
|
||||
$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. 'cloudlog@example.com'";
|
||||
$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_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'";
|
||||
|
||||
@@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Callsign';
|
||||
$lang['account_gridsquare'] = 'Gridsquare';
|
||||
|
||||
$lang['account_cloudlog_preferences'] = 'Cloudlog Preferences';
|
||||
$lang['account_wavelog_preferences'] = 'Cloudlog 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_cloudlog_language'] = 'Cloudlog Language';
|
||||
$lang['account_choose_cloudlog_language'] = 'Choose Cloudlog language.';
|
||||
$lang['account_wavelog_language'] = 'Cloudlog Language';
|
||||
$lang['account_choose_wavelog_language'] = 'Choose Cloudlog 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_cloudlog'] = 'Login to Cloudlog';
|
||||
$lang['account_login_to_wavelog'] = 'Login to Cloudlog';
|
||||
$lang['account_login'] = 'Login';
|
||||
|
||||
$lang['account_mastodon'] = 'Mastodonserver';
|
||||
|
||||
@@ -112,7 +112,7 @@ $lang['general_total_distance'] = 'Totalt avstånd';
|
||||
$lang['gen_max_file_upload_size'] = 'Maximum file upload size is ';
|
||||
|
||||
// Cloudlog Terms
|
||||
$lang['cloudlog_station_profile'] = 'Stationsplats';
|
||||
$lang['wavelog_station_profile'] = 'Stationsplats';
|
||||
|
||||
// ham radio terms
|
||||
$lang['gen_hamradio_cq'] = "CQ";
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['options_cloudlog_options'] = 'Cloudlog-alternativ';
|
||||
$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_appearance'] = 'Utseende';
|
||||
@@ -42,7 +42,7 @@ $lang['options_mail_settings_saved'] = "The settings were saved successfully.";
|
||||
$lang['options_mail_settings_failed'] = "Something went wrong with saving the settings. Try again.";
|
||||
$lang['options_outgoing_protocol_hint'] = "The protocol that will be used to send out emails.";
|
||||
$lang['options_smtp_encryption_hint'] = "Choose whether emails should be sent with TLS or SSL.";
|
||||
$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'cloudlog@example.com'";
|
||||
$lang['options_email_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_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'";
|
||||
|
||||
@@ -34,7 +34,7 @@ $lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Callsign';
|
||||
$lang['account_gridsquare'] = 'Gridsquare';
|
||||
|
||||
$lang['account_cloudlog_preferences'] = 'Cloudlog Preferences';
|
||||
$lang['account_wavelog_preferences'] = 'Cloudlog Preferences';
|
||||
$lang['account_timezone'] = 'Timezone';
|
||||
$lang['account_date_format'] = 'Date Format';
|
||||
$lang['account_log_end_time'] = 'Log End Times for QSOs Separately';
|
||||
@@ -48,8 +48,8 @@ $lang['account_quicklog_enter_search'] = "Search Callsign";
|
||||
$lang['account_measurement_preferences'] = 'Measurement preference';
|
||||
$lang['account_select_how_you_would_like_dates_shown_when_logged_into_your_account'] = 'Select how you would like dates shown when logged into your account.';
|
||||
$lang['account_choose_which_unit_distances_will_be_shown_in'] = 'Choose which unit distances will be shown in';
|
||||
$lang['account_cloudlog_language'] = 'Cloudlog Language';
|
||||
$lang['account_choose_cloudlog_language'] = 'Choose Cloudlog language.';
|
||||
$lang['account_wavelog_language'] = 'Cloudlog Language';
|
||||
$lang['account_choose_wavelog_language'] = 'Choose Cloudlog language.';
|
||||
|
||||
$lang['account_main_menu'] = 'Menu Options';
|
||||
$lang['account_show_notes_in_the_main_menu'] = 'Show notes in the main menu.';
|
||||
@@ -102,7 +102,7 @@ $lang['account_confirm_password'] = 'Confirm Password';
|
||||
|
||||
$lang['account_forgot_your_password'] = 'Forgot your password?';
|
||||
|
||||
$lang['account_login_to_cloudlog'] = 'Login to Cloudlog';
|
||||
$lang['account_login_to_wavelog'] = 'Login to Cloudlog';
|
||||
$lang['account_login'] = 'Login';
|
||||
|
||||
$lang['account_mastodon'] = 'Mastodonserver';
|
||||
|
||||
@@ -111,7 +111,7 @@ $lang['general_total_distance'] = 'Topam mesafe';
|
||||
$lang['gen_max_file_upload_size'] = 'Maximum file upload size is ';
|
||||
|
||||
// Cloudlog Terms
|
||||
$lang['cloudlog_station_profile'] = 'İstasyon Konumu';
|
||||
$lang['wavelog_station_profile'] = 'İstasyon Konumu';
|
||||
|
||||
// ham radio terms
|
||||
$lang['gen_hamradio_cq'] = "CQ";
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['options_cloudlog_options'] = 'Cloudlog Options';
|
||||
$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_appearance'] = 'Appearance';
|
||||
@@ -42,7 +42,7 @@ $lang['options_mail_settings_saved'] = "The settings were saved successfully.";
|
||||
$lang['options_mail_settings_failed'] = "Something went wrong with saving the settings. Try again.";
|
||||
$lang['options_outgoing_protocol_hint'] = "The protocol that will be used to send out emails.";
|
||||
$lang['options_smtp_encryption_hint'] = "Choose whether emails should be sent with TLS or SSL.";
|
||||
$lang['options_email_address_hint'] = "The email address from which the emails are sent, e.g. 'cloudlog@example.com'";
|
||||
$lang['options_email_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_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'";
|
||||
|
||||
@@ -59,7 +59,7 @@ class Hamqth {
|
||||
$data = null;
|
||||
try {
|
||||
// URL to the XML Source
|
||||
$xml_feed_url = 'https://www.hamqth.com/xml.php?id=' . $key . '&callsign=' . $callsign . '&prg=cloudlog';
|
||||
$xml_feed_url = 'https://www.hamqth.com/xml.php?id=' . $key . '&callsign=' . $callsign . '&prg=wavelog';
|
||||
|
||||
// CURL Functions
|
||||
$ch = curl_init();
|
||||
|
||||
@@ -10,7 +10,7 @@ class Qrz {
|
||||
// Return session key
|
||||
public function session($username, $password) {
|
||||
// URL to the XML Source
|
||||
$xml_feed_url = 'http://xmldata.qrz.com/xml/current/?username='.$username.';password='.urlencode($password).';agent=cloudlog';
|
||||
$xml_feed_url = 'http://xmldata.qrz.com/xml/current/?username='.$username.';password='.urlencode($password).';agent=wavelog';
|
||||
|
||||
// CURL Functions
|
||||
$ch = curl_init();
|
||||
@@ -33,7 +33,7 @@ class Qrz {
|
||||
$ci = & get_instance();
|
||||
|
||||
// URL to the XML Source
|
||||
$xml_feed_url = 'http://xmldata.qrz.com/xml/current/?username='.$username.';password='.urlencode($password).';agent=cloudlog';
|
||||
$xml_feed_url = 'http://xmldata.qrz.com/xml/current/?username='.$username.';password='.urlencode($password).';agent=wavelog';
|
||||
|
||||
// CURL Functions
|
||||
$ch = curl_init();
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
* This migration creates a table called options which will hold global options needed within cloudlog
|
||||
* This migration creates a table called options which will hold global options needed within wavelog
|
||||
* removing the need for lots of configuration files.
|
||||
*/
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
* This migration creates a table called options which will hold global options needed within cloudlog
|
||||
* This migration creates a table called options which will hold global options needed within wavelog
|
||||
* removing the need for lots of configuration files.
|
||||
*/
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
* This migration creates a table called options which will hold global options needed within cloudlog
|
||||
* This migration creates a table called options which will hold global options needed within wavelog
|
||||
* removing the need for lots of configuration files.
|
||||
*/
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
* This migration creates a table called options which will hold global options needed within cloudlog
|
||||
* This migration creates a table called options which will hold global options needed within wavelog
|
||||
* removing the need for lots of configuration files.
|
||||
*/
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
* This migration creates a table called options which will hold global options needed within cloudlog
|
||||
* This migration creates a table called options which will hold global options needed within wavelog
|
||||
* removing the need for lots of configuration files.
|
||||
*/
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
* This migration creates a table called options which will hold global options needed within cloudlog
|
||||
* This migration creates a table called options which will hold global options needed within wavelog
|
||||
* removing the need for lots of configuration files.
|
||||
*/
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
* This migration creates a table called options which will hold global options needed within cloudlog
|
||||
* This migration creates a table called options which will hold global options needed within wavelog
|
||||
* removing the need for lots of configuration files.
|
||||
*/
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
* This migration creates a table called options which will hold global options needed within cloudlog
|
||||
* This migration creates a table called options which will hold global options needed within wavelog
|
||||
* removing the need for lots of configuration files.
|
||||
*/
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
* This migration creates a table called options which will hold global options needed within cloudlog
|
||||
* This migration creates a table called options which will hold global options needed within wavelog
|
||||
* removing the need for lots of configuration files.
|
||||
*/
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
* This migration creates a table called options which will hold global options needed within cloudlog
|
||||
* This migration creates a table called options which will hold global options needed within wavelog
|
||||
* removing the need for lots of configuration files.
|
||||
*/
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
* This migration creates a table called options which will hold global options needed within cloudlog
|
||||
* This migration creates a table called options which will hold global options needed within wavelog
|
||||
* removing the need for lots of configuration files.
|
||||
*/
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
* This migration creates a table called options which will hold global options needed within cloudlog
|
||||
* This migration creates a table called options which will hold global options needed within wavelog
|
||||
* removing the need for lots of configuration files.
|
||||
*/
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
* This migration creates a table called options which will hold global options needed within cloudlog
|
||||
* This migration creates a table called options which will hold global options needed within wavelog
|
||||
* removing the need for lots of configuration files.
|
||||
*/
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
* This migration creates a table called options which will hold global options needed within cloudlog
|
||||
* This migration creates a table called options which will hold global options needed within wavelog
|
||||
* removing the need for lots of configuration files.
|
||||
*/
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
* This migration creates a table called options which will hold global options needed within cloudlog
|
||||
* This migration creates a table called options which will hold global options needed within wavelog
|
||||
* removing the need for lots of configuration files.
|
||||
*/
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
* This migration creates a table called options which will hold global options needed within cloudlog
|
||||
* This migration creates a table called options which will hold global options needed within wavelog
|
||||
* removing the need for lots of configuration files.
|
||||
*/
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
* This migration creates a table called options which will hold global options needed within cloudlog
|
||||
* This migration creates a table called options which will hold global options needed within wavelog
|
||||
* removing the need for lots of configuration files.
|
||||
*/
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
* This migration creates a table called options which will hold global options needed within cloudlog
|
||||
* This migration creates a table called options which will hold global options needed within wavelog
|
||||
* removing the need for lots of configuration files.
|
||||
*/
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
/*
|
||||
Class: Options_model
|
||||
This model handles all database interactions for the options table
|
||||
used for global settings within cloudlog.
|
||||
used for global settings within wavelog.
|
||||
*/
|
||||
|
||||
class Options_model extends CI_Model {
|
||||
|
||||
@@ -59,7 +59,7 @@
|
||||
// If Logged in and session exists
|
||||
$custom_date_format = $this->session->userdata('user_date_format');
|
||||
} else {
|
||||
// Get Default date format from /config/cloudlog.php
|
||||
// Get Default date format from /config/wavelog.php
|
||||
$custom_date_format = $this->config->item('qso_date_format');
|
||||
}
|
||||
?>
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
// If Logged in and session exists
|
||||
$custom_date_format = $this->session->userdata('user_date_format');
|
||||
} else {
|
||||
// Get Default date format from /config/cloudlog.php
|
||||
// Get Default date format from /config/wavelog.php
|
||||
$custom_date_format = $this->config->item('qso_date_format');
|
||||
}
|
||||
?>
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
// If Logged in and session exists
|
||||
$custom_date_format = $this->session->userdata('user_date_format');
|
||||
} else {
|
||||
// Get Default date format from /config/cloudlog.php
|
||||
// Get Default date format from /config/wavelog.php
|
||||
$custom_date_format = $this->config->item('qso_date_format');
|
||||
}
|
||||
?>
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
// If Logged in and session exists
|
||||
$custom_date_format = $this->session->userdata('user_date_format');
|
||||
} else {
|
||||
// Get Default date format from /config/cloudlog.php
|
||||
// Get Default date format from /config/wavelog.php
|
||||
$custom_date_format = $this->config->item('qso_date_format');
|
||||
}
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
<form class="form" action="<?php echo site_url('csv/export'); ?>" method="post" enctype="multipart/form-data">
|
||||
<div class="row">
|
||||
<div class="mb-3 col-md-3">
|
||||
<label for="station_profile"><?php echo lang('cloudlog_station_profile'); ?></label>
|
||||
<label for="station_profile"><?php echo lang('wavelog_station_profile'); ?></label>
|
||||
<select name="station_profile" class="station_id form-select">
|
||||
<option value="All"><?php echo lang('general_word_all'); ?></option>
|
||||
<?php foreach ($station_profile->result() as $station) { ?>
|
||||
|
||||
@@ -161,7 +161,7 @@ function echoQrbCalcLink($mygrid, $grid, $vucc) {
|
||||
// If Logged in and session exists
|
||||
$custom_date_format = $this->session->userdata('user_date_format');
|
||||
} else {
|
||||
// Get Default date format from /config/cloudlog.php
|
||||
// Get Default date format from /config/wavelog.php
|
||||
$custom_date_format = $this->config->item('qso_date_format');
|
||||
}
|
||||
|
||||
|
||||
@@ -43,7 +43,7 @@
|
||||
// If Logged in and session exists
|
||||
$custom_date_format = $this->session->userdata('user_date_format');
|
||||
} else {
|
||||
// Get Default date format from /config/cloudlog.php
|
||||
// Get Default date format from /config/wavelog.php
|
||||
$custom_date_format = $this->config->item('qso_date_format');
|
||||
}
|
||||
?>
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
<form class="form" action="<?php echo site_url('dxatlas/export'); ?>" method="post" enctype="multipart/form-data">
|
||||
<div class="row">
|
||||
<div class="mb-3 col-md-3">
|
||||
<label for="station_profile"><?php echo lang('cloudlog_station_profile'); ?></label>
|
||||
<label for="station_profile"><?php echo lang('wavelog_station_profile'); ?></label>
|
||||
<select name="station_profile" class="station_id form-select">
|
||||
<option value="All"><?php echo lang('general_word_all'); ?></option>
|
||||
<?php foreach ($station_profile->result() as $station) { ?>
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
// If Logged in and session exists
|
||||
$custom_date_format = $this->session->userdata('user_date_format');
|
||||
} else {
|
||||
// Get Default date format from /config/cloudlog.php
|
||||
// Get Default date format from /config/wavelog.php
|
||||
$custom_date_format = $this->config->item('qso_date_format');
|
||||
}
|
||||
|
||||
|
||||
@@ -2350,7 +2350,7 @@ $(document).ready(function(){
|
||||
// If Logged in and session exists
|
||||
$custom_date_format = $this->session->userdata('user_date_format');
|
||||
} else {
|
||||
// Get Default date format from /config/cloudlog.php
|
||||
// Get Default date format from /config/wavelog.php
|
||||
$custom_date_format = $this->config->item('qso_date_format');
|
||||
}
|
||||
|
||||
@@ -3019,7 +3019,7 @@ function viewEqsl(picture, callsign) {
|
||||
// If Logged in and session exists
|
||||
$custom_date_format = $this->session->userdata('user_date_format');
|
||||
} else {
|
||||
// Get Default date format from /config/cloudlog.php
|
||||
// Get Default date format from /config/wavelog.php
|
||||
$custom_date_format = $this->config->item('qso_date_format');
|
||||
}
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@ if ($qsos->result() != NULL) {
|
||||
// If Logged in and session exists
|
||||
$custom_date_format = $this->session->userdata('user_date_format');
|
||||
} else {
|
||||
// Get Default date format from /config/cloudlog.php
|
||||
// Get Default date format from /config/wavelog.php
|
||||
$custom_date_format = $this->config->item('qso_date_format');
|
||||
}
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
// If Logged in and session exists
|
||||
$custom_date_format = $this->session->userdata('user_date_format');
|
||||
} else {
|
||||
// Get Default date format from /config/cloudlog.php
|
||||
// Get Default date format from /config/wavelog.php
|
||||
$custom_date_format = $this->config->item('qso_date_format');
|
||||
}
|
||||
|
||||
|
||||
@@ -95,7 +95,7 @@
|
||||
// If Logged in and session exists
|
||||
$custom_date_format = $this->session->userdata('user_date_format');
|
||||
} else {
|
||||
// Get Default date format from /config/cloudlog.php
|
||||
// Get Default date format from /config/wavelog.php
|
||||
$custom_date_format = $this->config->item('qso_date_format');
|
||||
}
|
||||
?>
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<form class="form" action="<?php echo site_url('adif/import'); ?>" method="post" enctype="multipart/form-data">
|
||||
<?php echo lang('cloudlog_station_profile'); ?>:
|
||||
<?php echo lang('wavelog_station_profile'); ?>:
|
||||
<select name="station_profile" class="station_id form-select mb-3 me-sm-3" style="width: 20%;">
|
||||
<option value="All"><?php echo lang('general_word_all'); ?></option>
|
||||
<?php foreach ($station_profile->result() as $station) { ?>
|
||||
|
||||
@@ -39,7 +39,7 @@ if ($qsos->result() != NULL) {
|
||||
// If Logged in and session exists
|
||||
$custom_date_format = $this->session->userdata('user_date_format');
|
||||
} else {
|
||||
// Get Default date format from /config/cloudlog.php
|
||||
// Get Default date format from /config/wavelog.php
|
||||
$custom_date_format = $this->config->item('qso_date_format');
|
||||
}
|
||||
|
||||
|
||||
@@ -29,7 +29,7 @@ if ($qsos->result() != NULL) {
|
||||
// If Logged in and session exists
|
||||
$custom_date_format = $this->session->userdata('user_date_format');
|
||||
} else {
|
||||
// Get Default date format from /config/cloudlog.php
|
||||
// Get Default date format from /config/wavelog.php
|
||||
$custom_date_format = $this->config->item('qso_date_format');
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
// If Logged in and session exists
|
||||
$custom_date_format = $this->session->userdata('user_date_format');
|
||||
} else {
|
||||
// Get Default date format from /config/cloudlog.php
|
||||
// Get Default date format from /config/wavelog.php
|
||||
$custom_date_format = $this->config->item('qso_date_format');
|
||||
}
|
||||
|
||||
|
||||
@@ -209,7 +209,7 @@
|
||||
<!-- Station Panel Data -->
|
||||
<div class="tab-pane fade" id="station" role="tabpanel" aria-labelledby="station-tab">
|
||||
<div class="mb-3">
|
||||
<label for="stationProfile"><?php echo lang('cloudlog_station_profile'); ?></label>
|
||||
<label for="stationProfile"><?php echo lang('wavelog_station_profile'); ?></label>
|
||||
<select id="stationProfile" class="form-select" name="station_profile">
|
||||
<?php
|
||||
$power = '';
|
||||
|
||||
@@ -22,7 +22,7 @@ if ($qsos->result() != NULL) {
|
||||
// If Logged in and session exists
|
||||
$custom_date_format = $this->session->userdata('user_date_format');
|
||||
} else {
|
||||
// Get Default date format from /config/cloudlog.php
|
||||
// Get Default date format from /config/wavelog.php
|
||||
$custom_date_format = $this->config->item('qso_date_format');
|
||||
}
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ if ($qsos->result() != NULL) {
|
||||
// If Logged in and session exists
|
||||
$custom_date_format = $this->session->userdata('user_date_format');
|
||||
} else {
|
||||
// Get Default date format from /config/cloudlog.php
|
||||
// Get Default date format from /config/wavelog.php
|
||||
$custom_date_format = $this->config->item('qso_date_format');
|
||||
}
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ if ($qsos->result() != NULL) {
|
||||
// If Logged in and session exists
|
||||
$custom_date_format = $this->session->userdata('user_date_format');
|
||||
} else {
|
||||
// Get Default date format from /config/cloudlog.php
|
||||
// Get Default date format from /config/wavelog.php
|
||||
$custom_date_format = $this->config->item('qso_date_format');
|
||||
}
|
||||
|
||||
|
||||
@@ -117,7 +117,7 @@ $ci =& get_instance();
|
||||
// If Logged in and session exists
|
||||
$custom_date_format = $this->session->userdata('user_date_format');
|
||||
} else {
|
||||
// Get Default date format from /config/cloudlog.php
|
||||
// Get Default date format from /config/wavelog.php
|
||||
$custom_date_format = $this->config->item('qso_date_format');
|
||||
}
|
||||
?>
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user