当前提交
e55984dd71
共有 41 个文件被更改,包括 346 次插入 和 70 次删除
|
|
@ -40,7 +40,7 @@ When submitting PRs please make sure code is commented and includes one feature
|
||||||
|
|
||||||
## Credits
|
## Credits
|
||||||
|
|
||||||
Thanks to Andy (VE7CXZ), Gavin (M1BXF), Graham (W5ISP), Robert (M0VFC), Corby (K0SKW), Andy (GI0VGV), Tobias (DL4TMA), Tony (G0WFV), Kim (DG9VH), Michael (G7VJR), Andreas (LA8AJA), Matthias (DL9MJ), Thomas (DO2TWE), Pat (KT3PJ), Flo (DF2ET) and Joerg (DJ7NT) for contributing code or help to Cloudlog.
|
Thanks to Andy (VE7CXZ), Gavin (M1BXF), Graham (W5ISP), Robert (M0VFC), Corby (K0SKW), Andy (GI0VGV), Tobias (DL4TMA), Tony (G0WFV), Kim (DG9VH), Michael (G7VJR), Andreas (LA8AJA), Matthias (DL9MJ), Thomas (DO2TWE), Pat (KT3PJ), Flo (DF2ET), Joerg (DJ7NT) and Fabian (HB9HIL) for contributing code or help to Cloudlog.
|
||||||
|
|
||||||
## Patreons & Donors
|
## Patreons & Donors
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ $config['migration_enabled'] = TRUE;
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$config['migration_version'] = 149;
|
$config['migration_version'] = 150;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
|
@ -500,10 +500,10 @@ class User extends CI_Controller {
|
||||||
$this->input->set_cookie($cookie);
|
$this->input->set_cookie($cookie);
|
||||||
}
|
}
|
||||||
if($this->session->userdata('user_id') == $this->input->post('id', true)) {
|
if($this->session->userdata('user_id') == $this->input->post('id', true)) {
|
||||||
$this->session->set_flashdata('success', 'User '.$this->input->post('user_name', true).' edited');
|
$this->session->set_flashdata('success', lang('account_user').' '.$this->input->post('user_name', true).' '.lang('account_word_edited'));
|
||||||
redirect('user/edit/'.$this->uri->segment(3));
|
redirect('user/edit/'.$this->uri->segment(3));
|
||||||
} else {
|
} else {
|
||||||
$this->session->set_flashdata('success', 'User '.$this->input->post('user_name', true).' edited');
|
$this->session->set_flashdata('success', lang('account_user').' '.$this->input->post('user_name', true).' '.lang('account_word_edited'));
|
||||||
redirect('user');
|
redirect('user');
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,8 @@ $lang['account_create_user_account'] = 'Create User Account';
|
||||||
$lang['account_edit_account'] = 'Edit Account';
|
$lang['account_edit_account'] = 'Edit Account';
|
||||||
|
|
||||||
$lang['account_account_information'] = 'Account Information';
|
$lang['account_account_information'] = 'Account Information';
|
||||||
|
$lang['account_user'] = "User";
|
||||||
|
$lang['account_word_edited'] = "edited";
|
||||||
$lang['account_username'] = 'Username';
|
$lang['account_username'] = 'Username';
|
||||||
$lang['account_email_address'] = 'Email Address';
|
$lang['account_email_address'] = 'Email Address';
|
||||||
$lang['account_password'] = 'Password';
|
$lang['account_password'] = 'Password';
|
||||||
|
|
|
||||||
|
|
@ -45,6 +45,7 @@ $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system
|
||||||
$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_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs.";
|
||||||
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
||||||
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
||||||
|
$lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used.";
|
||||||
$lang['qso_simplefle_qso_list'] = "QSO List";
|
$lang['qso_simplefle_qso_list'] = "QSO List";
|
||||||
$lang['qso_simplefle_qso_list_total'] = "Total";
|
$lang['qso_simplefle_qso_list_total'] = "Total";
|
||||||
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
||||||
|
|
@ -52,10 +53,13 @@ $lang['qso_simplefle_operator'] = "Operator";
|
||||||
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
||||||
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
||||||
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
||||||
|
$lang['qso_simplefle_utc_time'] = "Current UTC Time";
|
||||||
$lang['qso_simplefle_enter_the_data'] = "Enter the Data";
|
$lang['qso_simplefle_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_reload'] = "Reload QSO List";
|
||||||
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
||||||
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
||||||
|
$lang['qso_simplefle_refs_hint'] = "The Refs can be either <u>S</u>OTA, <u>I</u>OTA, <u>P</u>OTA or <u>W</u>WFF";
|
||||||
|
|
||||||
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
||||||
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
||||||
|
|
@ -64,6 +68,7 @@ $lang['qso_simplefle_error_stationcall'] = "Station Call is not selected";
|
||||||
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
||||||
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
||||||
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
||||||
|
$lang['qso_simplefle_warning_example_data'] = "Attention! The Data Field containes example data. First Clear Logging Session!";
|
||||||
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
||||||
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
||||||
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,8 @@ $lang['account_create_user_account'] = '创建用户账户i';
|
||||||
$lang['account_edit_account'] = '编辑账户';
|
$lang['account_edit_account'] = '编辑账户';
|
||||||
|
|
||||||
$lang['account_account_information'] = '账户信息';
|
$lang['account_account_information'] = '账户信息';
|
||||||
|
$lang['account_user'] = "User";
|
||||||
|
$lang['account_word_edited'] = "edited";
|
||||||
$lang['account_username'] = '用户名';
|
$lang['account_username'] = '用户名';
|
||||||
$lang['account_email_address'] = '电子邮件';
|
$lang['account_email_address'] = '电子邮件';
|
||||||
$lang['account_password'] = '密码';
|
$lang['account_password'] = '密码';
|
||||||
|
|
|
||||||
|
|
@ -45,6 +45,7 @@ $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system
|
||||||
$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_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs.";
|
||||||
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
||||||
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
||||||
|
$lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used.";
|
||||||
$lang['qso_simplefle_qso_list'] = "QSO List";
|
$lang['qso_simplefle_qso_list'] = "QSO List";
|
||||||
$lang['qso_simplefle_qso_list_total'] = "Total";
|
$lang['qso_simplefle_qso_list_total'] = "Total";
|
||||||
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
||||||
|
|
@ -52,10 +53,13 @@ $lang['qso_simplefle_operator'] = "Operator";
|
||||||
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
||||||
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
||||||
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
||||||
|
$lang['qso_simplefle_utc_time'] = "Current UTC Time";
|
||||||
$lang['qso_simplefle_enter_the_data'] = "Enter the Data";
|
$lang['qso_simplefle_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_reload'] = "Reload QSO List";
|
||||||
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
||||||
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
||||||
|
$lang['qso_simplefle_refs_hint'] = "The Refs can be either <u>S</u>OTA, <u>I</u>OTA, <u>P</u>OTA or <u>W</u>WFF";
|
||||||
|
|
||||||
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
||||||
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
||||||
|
|
@ -64,6 +68,7 @@ $lang['qso_simplefle_error_stationcall'] = "Station Call is not selected";
|
||||||
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
||||||
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
||||||
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
||||||
|
$lang['qso_simplefle_warning_example_data'] = "Attention! The Data Field containes example data. First Clear Logging Session!";
|
||||||
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
||||||
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
||||||
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,8 @@ $lang['account_create_user_account'] = 'Vytvořit uživatelský účet';
|
||||||
$lang['account_edit_account'] = 'Upravit účet';
|
$lang['account_edit_account'] = 'Upravit účet';
|
||||||
|
|
||||||
$lang['account_account_information'] = 'Informace o účtu';
|
$lang['account_account_information'] = 'Informace o účtu';
|
||||||
|
$lang['account_user'] = "User";
|
||||||
|
$lang['account_word_edited'] = "edited";
|
||||||
$lang['account_username'] = 'Uživatelské jméno';
|
$lang['account_username'] = 'Uživatelské jméno';
|
||||||
$lang['account_email_address'] = 'Emailová adresa';
|
$lang['account_email_address'] = 'Emailová adresa';
|
||||||
$lang['account_password'] = 'Heslo';
|
$lang['account_password'] = 'Heslo';
|
||||||
|
|
|
||||||
|
|
@ -45,6 +45,7 @@ $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system
|
||||||
$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_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs.";
|
||||||
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
||||||
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
||||||
|
$lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used.";
|
||||||
$lang['qso_simplefle_qso_list'] = "QSO List";
|
$lang['qso_simplefle_qso_list'] = "QSO List";
|
||||||
$lang['qso_simplefle_qso_list_total'] = "Total";
|
$lang['qso_simplefle_qso_list_total'] = "Total";
|
||||||
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
||||||
|
|
@ -52,10 +53,13 @@ $lang['qso_simplefle_operator'] = "Operator";
|
||||||
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
||||||
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
||||||
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
||||||
|
$lang['qso_simplefle_utc_time'] = "Current UTC Time";
|
||||||
$lang['qso_simplefle_enter_the_data'] = "Enter the Data";
|
$lang['qso_simplefle_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_reload'] = "Reload QSO List";
|
||||||
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
||||||
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
||||||
|
$lang['qso_simplefle_refs_hint'] = "The Refs can be either <u>S</u>OTA, <u>I</u>OTA, <u>P</u>OTA or <u>W</u>WFF";
|
||||||
|
|
||||||
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
||||||
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
||||||
|
|
@ -64,6 +68,7 @@ $lang['qso_simplefle_error_stationcall'] = "Station Call is not selected";
|
||||||
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
||||||
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
||||||
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
||||||
|
$lang['qso_simplefle_warning_example_data'] = "Attention! The Data Field containes example data. First Clear Logging Session!";
|
||||||
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
||||||
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
||||||
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,8 @@ $lang['account_create_user_account'] = 'Create User Account';
|
||||||
$lang['account_edit_account'] = 'Edit Account';
|
$lang['account_edit_account'] = 'Edit Account';
|
||||||
|
|
||||||
$lang['account_account_information'] = 'Account Information';
|
$lang['account_account_information'] = 'Account Information';
|
||||||
|
$lang['account_user'] = "User";
|
||||||
|
$lang['account_word_edited'] = "edited";
|
||||||
$lang['account_username'] = 'Username';
|
$lang['account_username'] = 'Username';
|
||||||
$lang['account_email_address'] = 'Email Address';
|
$lang['account_email_address'] = 'Email Address';
|
||||||
$lang['account_password'] = 'Password';
|
$lang['account_password'] = 'Password';
|
||||||
|
|
|
||||||
|
|
@ -45,6 +45,7 @@ $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system
|
||||||
$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_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs.";
|
||||||
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
||||||
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
||||||
|
$lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used.";
|
||||||
$lang['qso_simplefle_qso_list'] = "QSO List";
|
$lang['qso_simplefle_qso_list'] = "QSO List";
|
||||||
$lang['qso_simplefle_qso_list_total'] = "Total";
|
$lang['qso_simplefle_qso_list_total'] = "Total";
|
||||||
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
||||||
|
|
@ -52,10 +53,13 @@ $lang['qso_simplefle_operator'] = "Operator";
|
||||||
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
||||||
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
||||||
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
||||||
|
$lang['qso_simplefle_utc_time'] = "Current UTC Time";
|
||||||
$lang['qso_simplefle_enter_the_data'] = "Enter the Data";
|
$lang['qso_simplefle_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_reload'] = "Reload QSO List";
|
||||||
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
||||||
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
||||||
|
$lang['qso_simplefle_refs_hint'] = "The Refs can be either <u>S</u>OTA, <u>I</u>OTA, <u>P</u>OTA or <u>W</u>WFF";
|
||||||
|
|
||||||
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
||||||
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
||||||
|
|
@ -64,6 +68,7 @@ $lang['qso_simplefle_error_stationcall'] = "Station Call is not selected";
|
||||||
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
||||||
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
||||||
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
||||||
|
$lang['qso_simplefle_warning_example_data'] = "Attention! The Data Field containes example data. First Clear Logging Session!";
|
||||||
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
||||||
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
||||||
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,8 @@ $lang['account_create_user_account'] = 'Create User Account';
|
||||||
$lang['account_edit_account'] = 'Edit Account';
|
$lang['account_edit_account'] = 'Edit Account';
|
||||||
|
|
||||||
$lang['account_account_information'] = 'Account Information';
|
$lang['account_account_information'] = 'Account Information';
|
||||||
|
$lang['account_user'] = "User";
|
||||||
|
$lang['account_word_edited'] = "edited";
|
||||||
$lang['account_username'] = 'Username';
|
$lang['account_username'] = 'Username';
|
||||||
$lang['account_email_address'] = 'Email Address';
|
$lang['account_email_address'] = 'Email Address';
|
||||||
$lang['account_password'] = 'Password';
|
$lang['account_password'] = 'Password';
|
||||||
|
|
|
||||||
|
|
@ -45,6 +45,7 @@ $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system
|
||||||
$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_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs.";
|
||||||
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
||||||
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
||||||
|
$lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used.";
|
||||||
$lang['qso_simplefle_qso_list'] = "QSO List";
|
$lang['qso_simplefle_qso_list'] = "QSO List";
|
||||||
$lang['qso_simplefle_qso_list_total'] = "Total";
|
$lang['qso_simplefle_qso_list_total'] = "Total";
|
||||||
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
||||||
|
|
@ -52,10 +53,13 @@ $lang['qso_simplefle_operator'] = "Operator";
|
||||||
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
||||||
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
||||||
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
||||||
|
$lang['qso_simplefle_utc_time'] = "Current UTC Time";
|
||||||
$lang['qso_simplefle_enter_the_data'] = "Enter the Data";
|
$lang['qso_simplefle_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_reload'] = "Reload QSO List";
|
||||||
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
||||||
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
||||||
|
$lang['qso_simplefle_refs_hint'] = "The Refs can be either <u>S</u>OTA, <u>I</u>OTA, <u>P</u>OTA or <u>W</u>WFF";
|
||||||
|
|
||||||
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
||||||
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
||||||
|
|
@ -64,6 +68,7 @@ $lang['qso_simplefle_error_stationcall'] = "Station Call is not selected";
|
||||||
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
||||||
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
||||||
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
||||||
|
$lang['qso_simplefle_warning_example_data'] = "Attention! The Data Field containes example data. First Clear Logging Session!";
|
||||||
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
||||||
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
||||||
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,8 @@ $lang['account_create_user_account'] = 'Luo käyttäjätili';
|
||||||
$lang['account_edit_account'] = 'Muokkaa käyttäjätiliä';
|
$lang['account_edit_account'] = 'Muokkaa käyttäjätiliä';
|
||||||
|
|
||||||
$lang['account_account_information'] = 'Account Information';
|
$lang['account_account_information'] = 'Account Information';
|
||||||
|
$lang['account_user'] = "User";
|
||||||
|
$lang['account_word_edited'] = "edited";
|
||||||
$lang['account_username'] = 'käyttäjänimi';
|
$lang['account_username'] = 'käyttäjänimi';
|
||||||
$lang['account_email_address'] = 'Email';
|
$lang['account_email_address'] = 'Email';
|
||||||
$lang['account_password'] = 'Salasana';
|
$lang['account_password'] = 'Salasana';
|
||||||
|
|
|
||||||
|
|
@ -45,6 +45,7 @@ $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system
|
||||||
$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_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs.";
|
||||||
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
||||||
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
||||||
|
$lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used.";
|
||||||
$lang['qso_simplefle_qso_list'] = "QSO List";
|
$lang['qso_simplefle_qso_list'] = "QSO List";
|
||||||
$lang['qso_simplefle_qso_list_total'] = "Total";
|
$lang['qso_simplefle_qso_list_total'] = "Total";
|
||||||
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
||||||
|
|
@ -52,10 +53,13 @@ $lang['qso_simplefle_operator'] = "Operator";
|
||||||
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
||||||
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
||||||
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
||||||
|
$lang['qso_simplefle_utc_time'] = "Current UTC Time";
|
||||||
$lang['qso_simplefle_enter_the_data'] = "Enter the Data";
|
$lang['qso_simplefle_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_reload'] = "Reload QSO List";
|
||||||
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
||||||
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
||||||
|
$lang['qso_simplefle_refs_hint'] = "The Refs can be either <u>S</u>OTA, <u>I</u>OTA, <u>P</u>OTA or <u>W</u>WFF";
|
||||||
|
|
||||||
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
||||||
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
||||||
|
|
@ -64,6 +68,7 @@ $lang['qso_simplefle_error_stationcall'] = "Station Call is not selected";
|
||||||
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
||||||
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
||||||
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
||||||
|
$lang['qso_simplefle_warning_example_data'] = "Attention! The Data Field containes example data. First Clear Logging Session!";
|
||||||
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
||||||
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
||||||
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,8 @@ $lang['account_create_user_account'] = 'Creer un compte';
|
||||||
$lang['account_edit_account'] = 'Editer un compte';
|
$lang['account_edit_account'] = 'Editer un compte';
|
||||||
|
|
||||||
$lang['account_account_information'] = 'Informations du compte';
|
$lang['account_account_information'] = 'Informations du compte';
|
||||||
|
$lang['account_user'] = "User";
|
||||||
|
$lang['account_word_edited'] = "edited";
|
||||||
$lang['account_username'] = 'Utilisateur';
|
$lang['account_username'] = 'Utilisateur';
|
||||||
$lang['account_email_address'] = 'Email';
|
$lang['account_email_address'] = 'Email';
|
||||||
$lang['account_password'] = 'Mot de passe';
|
$lang['account_password'] = 'Mot de passe';
|
||||||
|
|
|
||||||
|
|
@ -45,6 +45,7 @@ $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system
|
||||||
$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_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs.";
|
||||||
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
||||||
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
||||||
|
$lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used.";
|
||||||
$lang['qso_simplefle_qso_list'] = "QSO List";
|
$lang['qso_simplefle_qso_list'] = "QSO List";
|
||||||
$lang['qso_simplefle_qso_list_total'] = "Total";
|
$lang['qso_simplefle_qso_list_total'] = "Total";
|
||||||
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
||||||
|
|
@ -52,10 +53,13 @@ $lang['qso_simplefle_operator'] = "Operator";
|
||||||
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
||||||
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
||||||
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
||||||
|
$lang['qso_simplefle_utc_time'] = "Current UTC Time";
|
||||||
$lang['qso_simplefle_enter_the_data'] = "Enter the Data";
|
$lang['qso_simplefle_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_reload'] = "Reload QSO List";
|
||||||
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
||||||
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
||||||
|
$lang['qso_simplefle_refs_hint'] = "The Refs can be either <u>S</u>OTA, <u>I</u>OTA, <u>P</u>OTA or <u>W</u>WFF";
|
||||||
|
|
||||||
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
||||||
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
||||||
|
|
@ -64,6 +68,7 @@ $lang['qso_simplefle_error_stationcall'] = "Station Call is not selected";
|
||||||
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
||||||
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
||||||
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
||||||
|
$lang['qso_simplefle_warning_example_data'] = "Attention! The Data Field containes example data. First Clear Logging Session!";
|
||||||
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
||||||
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
||||||
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,8 @@ $lang['account_create_user_account'] = 'Benutzerkonto anlegen';
|
||||||
$lang['account_edit_account'] = 'Benutzerkonto editieren';
|
$lang['account_edit_account'] = 'Benutzerkonto editieren';
|
||||||
|
|
||||||
$lang['account_account_information'] = 'Bnutzerkonto Informationen';
|
$lang['account_account_information'] = 'Bnutzerkonto Informationen';
|
||||||
|
$lang['account_user'] = "Benutzer";
|
||||||
|
$lang['account_word_edited'] = "bearbeitet";
|
||||||
$lang['account_username'] = 'Benutzername';
|
$lang['account_username'] = 'Benutzername';
|
||||||
$lang['account_email_address'] = 'Emailadresse';
|
$lang['account_email_address'] = 'Emailadresse';
|
||||||
$lang['account_password'] = 'Passwort';
|
$lang['account_password'] = 'Passwort';
|
||||||
|
|
|
||||||
|
|
@ -194,3 +194,8 @@ $lang['southamerica'] = 'Südamerika';
|
||||||
|
|
||||||
$lang['gen_band_selection'] = 'Bandauswahl';
|
$lang['gen_band_selection'] = 'Bandauswahl';
|
||||||
$lang['general_word_today'] = 'Heute';
|
$lang['general_word_today'] = 'Heute';
|
||||||
|
|
||||||
|
$lang['dashboard_php_version_warning'] = 'Die PHP Version is zu alt. Benötigt wird mindestens die Version 7.4. Die installierte Version ist';
|
||||||
|
$lang['dashboard_country_files_warning'] = 'Die Länderlisten müssen aktualisiert werden! Klicke <a href="'.site_url('update').'">hier</a>, um das zu tun!';
|
||||||
|
$lang['dashboard_locations_warning'] = 'Ea wurde kein Stationsstandort angelegt! Klicke <a href="'. site_url('station') . '">hier</a>, um das zu tun!';
|
||||||
|
$lang['dashboard_logbooks_warning'] = 'Es wurde kein Stationslogbuch angelegt. Klicke <a href="'. site_url('logbooks') . '">hier</a>, um das zu tun!';
|
||||||
|
|
|
||||||
|
|
@ -45,6 +45,7 @@ $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry' oder einfach 'FLE' ist ein S
|
||||||
$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_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 <a href='https://df3cb.com/fle/documentation/' target='_blank'>hier</a>.";
|
$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 <a href='https://df3cb.com/fle/documentation/' target='_blank'>hier</a>.";
|
||||||
$lang['qso_simplefle_qso_data'] = "QSO Daten";
|
$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";
|
$lang['qso_simplefle_qso_list'] = "QSO Liste";
|
||||||
$lang['qso_simplefle_qso_list_total'] = "Total";
|
$lang['qso_simplefle_qso_list_total'] = "Total";
|
||||||
$lang['qso_simplefle_qso_date'] = "QSO Datum";
|
$lang['qso_simplefle_qso_date'] = "QSO Datum";
|
||||||
|
|
@ -52,10 +53,13 @@ $lang['qso_simplefle_operator'] = "Operator";
|
||||||
$lang['qso_simplefle_operator_hint'] = "z.B. OK2CQR";
|
$lang['qso_simplefle_operator_hint'] = "z.B. OK2CQR";
|
||||||
$lang['qso_simplefle_station_call_location'] = "Stationsstandort";
|
$lang['qso_simplefle_station_call_location'] = "Stationsstandort";
|
||||||
$lang['qso_simplefle_station_call_location_hint'] = "Falls du von einem neuen Standort oder mit einem neuen Rufzeichen gefunkt hast, erstelle erst einen neuen <a href=". site_url('station') . ">Stationsstandort</a>";
|
$lang['qso_simplefle_station_call_location_hint'] = "Falls du von einem neuen Standort oder mit einem neuen Rufzeichen gefunkt hast, erstelle erst einen neuen <a href=". site_url('station') . ">Stationsstandort</a>";
|
||||||
|
$lang['qso_simplefle_utc_time'] = "Aktuelle UTC Zeit";
|
||||||
$lang['qso_simplefle_enter_the_data'] = "Gibt hier die Daten ein";
|
$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_reload'] = "Aktualisiere QSO Liste";
|
||||||
$lang['qso_simplefle_save'] = "Speichere in Cloudlog";
|
$lang['qso_simplefle_save'] = "Speichere in Cloudlog";
|
||||||
$lang['qso_simplefle_clear'] = "Lösche QSO Daten";
|
$lang['qso_simplefle_clear'] = "Lösche QSO Daten";
|
||||||
|
$lang['qso_simplefle_refs_hint'] = "Die Ref. kann entweder <u>S</u>OTA, <u>I</u>OTA, <u>P</u>OTA oder <u>W</u>WFF sein.";
|
||||||
|
|
||||||
$lang['qso_simplefle_error_band'] = "Band fehlt!";
|
$lang['qso_simplefle_error_band'] = "Band fehlt!";
|
||||||
$lang['qso_simplefle_error_mode'] = "Mode fehlt!";
|
$lang['qso_simplefle_error_mode'] = "Mode fehlt!";
|
||||||
|
|
@ -64,6 +68,7 @@ $lang['qso_simplefle_error_stationcall'] = "Stationsstandort nicht ausgewählt";
|
||||||
$lang['qso_simplefle_error_operator'] = "'Operator' Feld ist leer";
|
$lang['qso_simplefle_error_operator'] = "'Operator' Feld ist leer";
|
||||||
$lang['qso_simplefle_warning_reset'] = "Warnung! Willst du wirklich alles zurücksetzen?";
|
$lang['qso_simplefle_warning_reset'] = "Warnung! Willst du wirklich alles zurücksetzen?";
|
||||||
$lang['qso_simplefle_warning_missing_band_mode'] = "Warnung! Du kannst die QSO Liste nicht loggen, da bei manchen QSO das Band und/oder der Mode fehlt!";
|
$lang['qso_simplefle_warning_missing_band_mode'] = "Warnung! Du kannst die QSO Liste nicht loggen, da bei manchen QSO das Band und/oder der Mode fehlt!";
|
||||||
|
$lang['qso_simplefle_warning_example_data'] = "Achtung! Das Daten Feld enthält Beispiel Daten. Lösche zuerst die QSO Daten!";
|
||||||
$lang['qso_simplefle_confirm_save_to_log'] = "Bist du dir sicher, dass du diese QSO loggen und die Eingabe zurücksetzen willst?";
|
$lang['qso_simplefle_confirm_save_to_log'] = "Bist du dir sicher, dass du diese QSO loggen und die Eingabe zurücksetzen willst?";
|
||||||
$lang['qso_simplefle_success_save_to_log_header'] = "QSO geloggt!";
|
$lang['qso_simplefle_success_save_to_log_header'] = "QSO geloggt!";
|
||||||
$lang['qso_simplefle_success_save_to_log'] = "Die QSO wurden erfolgreich im Logbuch gespeichert!";
|
$lang['qso_simplefle_success_save_to_log'] = "Die QSO wurden erfolgreich im Logbuch gespeichert!";
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,8 @@ $lang['account_create_user_account'] = 'Create User Account';
|
||||||
$lang['account_edit_account'] = 'Edit Account';
|
$lang['account_edit_account'] = 'Edit Account';
|
||||||
|
|
||||||
$lang['account_account_information'] = 'Account Information';
|
$lang['account_account_information'] = 'Account Information';
|
||||||
|
$lang['account_user'] = "User";
|
||||||
|
$lang['account_word_edited'] = "edited";
|
||||||
$lang['account_username'] = 'Username';
|
$lang['account_username'] = 'Username';
|
||||||
$lang['account_email_address'] = 'Email Address';
|
$lang['account_email_address'] = 'Email Address';
|
||||||
$lang['account_password'] = 'Password';
|
$lang['account_password'] = 'Password';
|
||||||
|
|
|
||||||
|
|
@ -45,6 +45,7 @@ $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system
|
||||||
$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_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs.";
|
||||||
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
||||||
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
||||||
|
$lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used.";
|
||||||
$lang['qso_simplefle_qso_list'] = "QSO List";
|
$lang['qso_simplefle_qso_list'] = "QSO List";
|
||||||
$lang['qso_simplefle_qso_list_total'] = "Total";
|
$lang['qso_simplefle_qso_list_total'] = "Total";
|
||||||
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
||||||
|
|
@ -52,10 +53,13 @@ $lang['qso_simplefle_operator'] = "Operator";
|
||||||
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
||||||
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
||||||
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
||||||
|
$lang['qso_simplefle_utc_time'] = "Current UTC Time";
|
||||||
$lang['qso_simplefle_enter_the_data'] = "Enter the Data";
|
$lang['qso_simplefle_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_reload'] = "Reload QSO List";
|
||||||
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
||||||
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
||||||
|
$lang['qso_simplefle_refs_hint'] = "The Refs can be either <u>S</u>OTA, <u>I</u>OTA, <u>P</u>OTA or <u>W</u>WFF";
|
||||||
|
|
||||||
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
||||||
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
||||||
|
|
@ -64,6 +68,7 @@ $lang['qso_simplefle_error_stationcall'] = "Station Call is not selected";
|
||||||
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
||||||
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
||||||
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
||||||
|
$lang['qso_simplefle_warning_example_data'] = "Attention! The Data Field containes example data. First Clear Logging Session!";
|
||||||
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
||||||
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
||||||
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,8 @@ $lang['account_create_user_account'] = 'Create User Account';
|
||||||
$lang['account_edit_account'] = 'Edit Account';
|
$lang['account_edit_account'] = 'Edit Account';
|
||||||
|
|
||||||
$lang['account_account_information'] = 'Account Information';
|
$lang['account_account_information'] = 'Account Information';
|
||||||
|
$lang['account_user'] = "User";
|
||||||
|
$lang['account_word_edited'] = "edited";
|
||||||
$lang['account_username'] = 'Username';
|
$lang['account_username'] = 'Username';
|
||||||
$lang['account_email_address'] = 'Email Address';
|
$lang['account_email_address'] = 'Email Address';
|
||||||
$lang['account_password'] = 'Password';
|
$lang['account_password'] = 'Password';
|
||||||
|
|
|
||||||
|
|
@ -45,6 +45,7 @@ $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system
|
||||||
$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_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs.";
|
||||||
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
||||||
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
||||||
|
$lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used.";
|
||||||
$lang['qso_simplefle_qso_list'] = "QSO List";
|
$lang['qso_simplefle_qso_list'] = "QSO List";
|
||||||
$lang['qso_simplefle_qso_list_total'] = "Total";
|
$lang['qso_simplefle_qso_list_total'] = "Total";
|
||||||
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
||||||
|
|
@ -52,10 +53,13 @@ $lang['qso_simplefle_operator'] = "Operator";
|
||||||
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
||||||
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
||||||
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
||||||
|
$lang['qso_simplefle_utc_time'] = "Current UTC Time";
|
||||||
$lang['qso_simplefle_enter_the_data'] = "Enter the Data";
|
$lang['qso_simplefle_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_reload'] = "Reload QSO List";
|
||||||
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
||||||
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
||||||
|
$lang['qso_simplefle_refs_hint'] = "The Refs can be either <u>S</u>OTA, <u>I</u>OTA, <u>P</u>OTA or <u>W</u>WFF";
|
||||||
|
|
||||||
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
||||||
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
||||||
|
|
@ -64,6 +68,7 @@ $lang['qso_simplefle_error_stationcall'] = "Station Call is not selected";
|
||||||
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
||||||
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
||||||
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
||||||
|
$lang['qso_simplefle_warning_example_data'] = "Attention! The Data Field containes example data. First Clear Logging Session!";
|
||||||
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
||||||
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
||||||
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,8 @@ $lang['account_create_user_account'] = 'Create User Account';
|
||||||
$lang['account_edit_account'] = 'Edit Account';
|
$lang['account_edit_account'] = 'Edit Account';
|
||||||
|
|
||||||
$lang['account_account_information'] = 'Account Information';
|
$lang['account_account_information'] = 'Account Information';
|
||||||
|
$lang['account_user'] = "User";
|
||||||
|
$lang['account_word_edited'] = "edited";
|
||||||
$lang['account_username'] = 'Username';
|
$lang['account_username'] = 'Username';
|
||||||
$lang['account_email_address'] = 'Email Address';
|
$lang['account_email_address'] = 'Email Address';
|
||||||
$lang['account_password'] = 'Password';
|
$lang['account_password'] = 'Password';
|
||||||
|
|
|
||||||
|
|
@ -45,6 +45,7 @@ $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system
|
||||||
$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_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs.";
|
||||||
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
||||||
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
||||||
|
$lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used.";
|
||||||
$lang['qso_simplefle_qso_list'] = "QSO List";
|
$lang['qso_simplefle_qso_list'] = "QSO List";
|
||||||
$lang['qso_simplefle_qso_list_total'] = "Total";
|
$lang['qso_simplefle_qso_list_total'] = "Total";
|
||||||
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
||||||
|
|
@ -52,10 +53,13 @@ $lang['qso_simplefle_operator'] = "Operator";
|
||||||
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
||||||
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
||||||
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
||||||
|
$lang['qso_simplefle_utc_time'] = "Current UTC Time";
|
||||||
$lang['qso_simplefle_enter_the_data'] = "Enter the Data";
|
$lang['qso_simplefle_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_reload'] = "Reload QSO List";
|
||||||
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
||||||
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
||||||
|
$lang['qso_simplefle_refs_hint'] = "The Refs can be either <u>S</u>OTA, <u>I</u>OTA, <u>P</u>OTA or <u>W</u>WFF";
|
||||||
|
|
||||||
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
||||||
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
||||||
|
|
@ -64,6 +68,7 @@ $lang['qso_simplefle_error_stationcall'] = "Station Call is not selected";
|
||||||
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
||||||
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
||||||
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
||||||
|
$lang['qso_simplefle_warning_example_data'] = "Attention! The Data Field containes example data. First Clear Logging Session!";
|
||||||
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
||||||
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
||||||
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,8 @@ $lang['account_create_user_account'] = ' Создать аккаунт поль
|
||||||
$lang['account_edit_account'] = 'Редактировать аккаунт';
|
$lang['account_edit_account'] = 'Редактировать аккаунт';
|
||||||
|
|
||||||
$lang['account_account_information'] = 'Информация об аккаунте';
|
$lang['account_account_information'] = 'Информация об аккаунте';
|
||||||
|
$lang['account_user'] = "User";
|
||||||
|
$lang['account_word_edited'] = "edited";
|
||||||
$lang['account_username'] = 'Имя пользователя';
|
$lang['account_username'] = 'Имя пользователя';
|
||||||
$lang['account_email_address'] = 'Адрес электронной почты';
|
$lang['account_email_address'] = 'Адрес электронной почты';
|
||||||
$lang['account_password'] = 'Пароль';
|
$lang['account_password'] = 'Пароль';
|
||||||
|
|
|
||||||
|
|
@ -45,6 +45,7 @@ $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system
|
||||||
$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_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs.";
|
||||||
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
||||||
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
||||||
|
$lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used.";
|
||||||
$lang['qso_simplefle_qso_list'] = "QSO List";
|
$lang['qso_simplefle_qso_list'] = "QSO List";
|
||||||
$lang['qso_simplefle_qso_list_total'] = "Total";
|
$lang['qso_simplefle_qso_list_total'] = "Total";
|
||||||
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
||||||
|
|
@ -52,10 +53,13 @@ $lang['qso_simplefle_operator'] = "Operator";
|
||||||
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
||||||
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
||||||
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
||||||
|
$lang['qso_simplefle_utc_time'] = "Current UTC Time";
|
||||||
$lang['qso_simplefle_enter_the_data'] = "Enter the Data";
|
$lang['qso_simplefle_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_reload'] = "Reload QSO List";
|
||||||
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
||||||
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
||||||
|
$lang['qso_simplefle_refs_hint'] = "The Refs can be either <u>S</u>OTA, <u>I</u>OTA, <u>P</u>OTA or <u>W</u>WFF";
|
||||||
|
|
||||||
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
||||||
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
||||||
|
|
@ -64,6 +68,7 @@ $lang['qso_simplefle_error_stationcall'] = "Station Call is not selected";
|
||||||
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
||||||
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
||||||
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
||||||
|
$lang['qso_simplefle_warning_example_data'] = "Attention! The Data Field containes example data. First Clear Logging Session!";
|
||||||
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
||||||
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
||||||
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,8 @@ $lang['account_create_user_account'] = 'Create User Account';
|
||||||
$lang['account_edit_account'] = 'Edit Account';
|
$lang['account_edit_account'] = 'Edit Account';
|
||||||
|
|
||||||
$lang['account_account_information'] = 'Account Information';
|
$lang['account_account_information'] = 'Account Information';
|
||||||
|
$lang['account_user'] = "User";
|
||||||
|
$lang['account_word_edited'] = "edited";
|
||||||
$lang['account_username'] = 'Username';
|
$lang['account_username'] = 'Username';
|
||||||
$lang['account_email_address'] = 'Email Address';
|
$lang['account_email_address'] = 'Email Address';
|
||||||
$lang['account_password'] = 'Password';
|
$lang['account_password'] = 'Password';
|
||||||
|
|
|
||||||
|
|
@ -45,6 +45,7 @@ $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system
|
||||||
$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_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs.";
|
||||||
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
||||||
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
||||||
|
$lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used.";
|
||||||
$lang['qso_simplefle_qso_list'] = "QSO List";
|
$lang['qso_simplefle_qso_list'] = "QSO List";
|
||||||
$lang['qso_simplefle_qso_list_total'] = "Total";
|
$lang['qso_simplefle_qso_list_total'] = "Total";
|
||||||
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
||||||
|
|
@ -52,10 +53,13 @@ $lang['qso_simplefle_operator'] = "Operator";
|
||||||
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
||||||
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
||||||
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
||||||
|
$lang['qso_simplefle_utc_time'] = "Current UTC Time";
|
||||||
$lang['qso_simplefle_enter_the_data'] = "Enter the Data";
|
$lang['qso_simplefle_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_reload'] = "Reload QSO List";
|
||||||
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
||||||
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
||||||
|
$lang['qso_simplefle_refs_hint'] = "The Refs can be either <u>S</u>OTA, <u>I</u>OTA, <u>P</u>OTA or <u>W</u>WFF";
|
||||||
|
|
||||||
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
||||||
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
||||||
|
|
@ -64,6 +68,7 @@ $lang['qso_simplefle_error_stationcall'] = "Station Call is not selected";
|
||||||
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
||||||
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
||||||
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
||||||
|
$lang['qso_simplefle_warning_example_data'] = "Attention! The Data Field containes example data. First Clear Logging Session!";
|
||||||
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
||||||
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
||||||
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,8 @@ $lang['account_create_user_account'] = 'Skapa användarkonto';
|
||||||
$lang['account_edit_account'] = 'Redigera användarkonto';
|
$lang['account_edit_account'] = 'Redigera användarkonto';
|
||||||
|
|
||||||
$lang['account_account_information'] = 'Användarkontoinformation';
|
$lang['account_account_information'] = 'Användarkontoinformation';
|
||||||
|
$lang['account_user'] = "User";
|
||||||
|
$lang['account_word_edited'] = "edited";
|
||||||
$lang['account_username'] = 'Användarnamn';
|
$lang['account_username'] = 'Användarnamn';
|
||||||
$lang['account_email_address'] = 'E-postadress';
|
$lang['account_email_address'] = 'E-postadress';
|
||||||
$lang['account_password'] = 'Lösenord';
|
$lang['account_password'] = 'Lösenord';
|
||||||
|
|
|
||||||
|
|
@ -45,6 +45,7 @@ $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system
|
||||||
$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_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs.";
|
||||||
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
||||||
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
||||||
|
$lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used.";
|
||||||
$lang['qso_simplefle_qso_list'] = "QSO List";
|
$lang['qso_simplefle_qso_list'] = "QSO List";
|
||||||
$lang['qso_simplefle_qso_list_total'] = "Total";
|
$lang['qso_simplefle_qso_list_total'] = "Total";
|
||||||
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
||||||
|
|
@ -52,10 +53,13 @@ $lang['qso_simplefle_operator'] = "Operator";
|
||||||
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
||||||
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
||||||
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
||||||
|
$lang['qso_simplefle_utc_time'] = "Current UTC Time";
|
||||||
$lang['qso_simplefle_enter_the_data'] = "Enter the Data";
|
$lang['qso_simplefle_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_reload'] = "Reload QSO List";
|
||||||
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
||||||
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
||||||
|
$lang['qso_simplefle_refs_hint'] = "The Refs can be either <u>S</u>OTA, <u>I</u>OTA, <u>P</u>OTA or <u>W</u>WFF";
|
||||||
|
|
||||||
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
||||||
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
||||||
|
|
@ -64,6 +68,7 @@ $lang['qso_simplefle_error_stationcall'] = "Station Call is not selected";
|
||||||
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
||||||
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
||||||
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
||||||
|
$lang['qso_simplefle_warning_example_data'] = "Attention! The Data Field containes example data. First Clear Logging Session!";
|
||||||
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
||||||
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
||||||
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,8 @@ $lang['account_create_user_account'] = 'Create User Account';
|
||||||
$lang['account_edit_account'] = 'Edit Account';
|
$lang['account_edit_account'] = 'Edit Account';
|
||||||
|
|
||||||
$lang['account_account_information'] = 'Account Information';
|
$lang['account_account_information'] = 'Account Information';
|
||||||
|
$lang['account_user'] = "User";
|
||||||
|
$lang['account_word_edited'] = "edited";
|
||||||
$lang['account_username'] = 'Username';
|
$lang['account_username'] = 'Username';
|
||||||
$lang['account_email_address'] = 'Email Address';
|
$lang['account_email_address'] = 'Email Address';
|
||||||
$lang['account_password'] = 'Password';
|
$lang['account_password'] = 'Password';
|
||||||
|
|
|
||||||
|
|
@ -45,6 +45,7 @@ $lang['qso_simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system
|
||||||
$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_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs.";
|
||||||
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
$lang['qso_simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found <a href='https://df3cb.com/fle/documentation/' target='_blank'>here</a>.";
|
||||||
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
$lang['qso_simplefle_qso_data'] = "QSO Data";
|
||||||
|
$lang['qso_simplefle_qso_date_hint'] = "If you don't choose a date, today's date will be used.";
|
||||||
$lang['qso_simplefle_qso_list'] = "QSO List";
|
$lang['qso_simplefle_qso_list'] = "QSO List";
|
||||||
$lang['qso_simplefle_qso_list_total'] = "Total";
|
$lang['qso_simplefle_qso_list_total'] = "Total";
|
||||||
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
$lang['qso_simplefle_qso_date'] = "QSO Date";
|
||||||
|
|
@ -52,10 +53,13 @@ $lang['qso_simplefle_operator'] = "Operator";
|
||||||
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
$lang['qso_simplefle_operator_hint'] = "e.g. OK2CQR";
|
||||||
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
$lang['qso_simplefle_station_call_location'] = "Station Call/Location";
|
||||||
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
$lang['qso_simplefle_station_call_location_hint'] = "If you did operate from a new location, first create a new <a href=". site_url('station') . ">Station Location</a>";
|
||||||
|
$lang['qso_simplefle_utc_time'] = "Current UTC Time";
|
||||||
$lang['qso_simplefle_enter_the_data'] = "Enter the Data";
|
$lang['qso_simplefle_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_reload'] = "Reload QSO List";
|
||||||
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
$lang['qso_simplefle_save'] = "Save in Cloudlog";
|
||||||
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
$lang['qso_simplefle_clear'] = "Clear Logging Session";
|
||||||
|
$lang['qso_simplefle_refs_hint'] = "The Refs can be either <u>S</u>OTA, <u>I</u>OTA, <u>P</u>OTA or <u>W</u>WFF";
|
||||||
|
|
||||||
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
$lang['qso_simplefle_error_band'] = "Band is missing!";
|
||||||
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
$lang['qso_simplefle_error_mode'] = "Mode is missing!";
|
||||||
|
|
@ -64,6 +68,7 @@ $lang['qso_simplefle_error_stationcall'] = "Station Call is not selected";
|
||||||
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
$lang['qso_simplefle_error_operator'] = "'Operator' Field is empty";
|
||||||
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
$lang['qso_simplefle_warning_reset'] = "Warning! Do you really want to reset everything?";
|
||||||
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
$lang['qso_simplefle_warning_missing_band_mode'] = "Warning! You can't log the QSO List, because some QSO don't have band and/or mode defined!";
|
||||||
|
$lang['qso_simplefle_warning_example_data'] = "Attention! The Data Field containes example data. First Clear Logging Session!";
|
||||||
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
$lang['qso_simplefle_confirm_save_to_log'] = "Are you sure that you want to add these QSO to the Log and clear the session?";
|
||||||
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
$lang['qso_simplefle_success_save_to_log_header'] = "QSO Logged!";
|
||||||
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
$lang['qso_simplefle_success_save_to_log'] = "The QSO were successfully logged in the logbook!";
|
||||||
|
|
|
||||||
|
|
@ -198,7 +198,13 @@ class AdifHelper {
|
||||||
|
|
||||||
$line .= $this->getAdifFieldLine("MY_ITU_ZONE", $qso->station_itu);
|
$line .= $this->getAdifFieldLine("MY_ITU_ZONE", $qso->station_itu);
|
||||||
|
|
||||||
$line .= $this->getAdifFieldLine("MY_CNTY", $qso->station_cnty);
|
if($qso->state) {
|
||||||
|
$county = trim($qso->state) . "," . trim($qso->station_cnty);
|
||||||
|
} else {
|
||||||
|
$county = trim($qso->station_cnty);
|
||||||
|
}
|
||||||
|
|
||||||
|
$line .= $this->getAdifFieldLine("MY_CNTY", $county);
|
||||||
|
|
||||||
$line .= $this->getAdifFieldLine("MY_SIG", $qso->station_sig);
|
$line .= $this->getAdifFieldLine("MY_SIG", $qso->station_sig);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,24 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Tag Cloudlog as 2.5.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
class Migration_tag_2_5_0 extends CI_Migration {
|
||||||
|
|
||||||
|
public function up()
|
||||||
|
{
|
||||||
|
|
||||||
|
// Tag Cloudlog 2.5.0
|
||||||
|
$this->db->where('option_name', 'version');
|
||||||
|
$this->db->update('options', array('option_value' => '2.5.0'));
|
||||||
|
}
|
||||||
|
|
||||||
|
public function down()
|
||||||
|
{
|
||||||
|
$this->db->where('option_name', 'version');
|
||||||
|
$this->db->update('options', array('option_value' => '2.4.11'));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1005,6 +1005,19 @@ $(document).on('keypress',function(e) {
|
||||||
var utc = localTime + (now.getTimezoneOffset() * 60000);
|
var utc = localTime + (now.getTimezoneOffset() * 60000);
|
||||||
$('#start_time').val(("0" + now.getUTCHours()).slice(-2)+':'+("0" + now.getUTCMinutes()).slice(-2)+':'+("0" + now.getUTCSeconds()).slice(-2));
|
$('#start_time').val(("0" + now.getUTCHours()).slice(-2)+':'+("0" + now.getUTCMinutes()).slice(-2)+':'+("0" + now.getUTCSeconds()).slice(-2));
|
||||||
});
|
});
|
||||||
|
$('#reset_start_time').click(function() {
|
||||||
|
var now = new Date();
|
||||||
|
var localTime = now.getTime();
|
||||||
|
var utc = localTime + (now.getTimezoneOffset() * 60000);
|
||||||
|
$('#start_time').val(("0" + now.getUTCHours()).slice(-2)+':'+("0" + now.getUTCMinutes()).slice(-2));
|
||||||
|
$('#end_time').val(("0" + now.getUTCHours()).slice(-2)+':'+("0" + now.getUTCMinutes()).slice(-2));
|
||||||
|
});
|
||||||
|
$('#reset_end_time').click(function() {
|
||||||
|
var now = new Date();
|
||||||
|
var localTime = now.getTime();
|
||||||
|
var utc = localTime + (now.getTimezoneOffset() * 60000);
|
||||||
|
$('#end_time').val(("0" + now.getUTCHours()).slice(-2)+':'+("0" + now.getUTCMinutes()).slice(-2));
|
||||||
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -59,12 +59,20 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group col-md-3">
|
<div class="form-group col-md-3">
|
||||||
<label for="start_time"><?php echo lang('general_word_time_on'); ?></label> <?php if ($_GET['manual'] != 1) { ?><i id="reset_time" data-toggle="tooltip" data-original-title="Reset start time" class="fas fa-stopwatch"></i><?php } ?>
|
<label for="start_time"><?php echo lang('general_word_time_on'); ?></label>
|
||||||
|
<?php if ($_GET['manual'] != 1) { ?>
|
||||||
|
<i id="reset_time" data-toggle="tooltip" data-original-title="Reset start time" class="fas fa-stopwatch"></i>
|
||||||
|
<?php } else { ?>
|
||||||
|
<i id="reset_start_time" data-toggle="tooltip" data-original-title="Reset start time" class="fas fa-stopwatch"></i>
|
||||||
|
<?php } ?>
|
||||||
<input type="text" class="form-control form-control-sm input_start_time" name="start_time" id="start_time" value="<?php if (($this->session->userdata('start_time') != NULL && ((time() - $this->session->userdata('time_stamp')) < 24 * 60 * 60))) { echo substr($this->session->userdata('start_time'),0,5); } else { echo $_GET['manual'] == 0 ? date('H:i:s') : date('H:i'); } ?>" size="7" <?php echo ($_GET['manual'] == 0 ? "disabled" : ""); ?> required pattern="[0-2][0-9]:[0-5][0-9]">
|
<input type="text" class="form-control form-control-sm input_start_time" name="start_time" id="start_time" value="<?php if (($this->session->userdata('start_time') != NULL && ((time() - $this->session->userdata('time_stamp')) < 24 * 60 * 60))) { echo substr($this->session->userdata('start_time'),0,5); } else { echo $_GET['manual'] == 0 ? date('H:i:s') : date('H:i'); } ?>" size="7" <?php echo ($_GET['manual'] == 0 ? "disabled" : ""); ?> required pattern="[0-2][0-9]:[0-5][0-9]">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group col-md-3">
|
<div class="form-group col-md-3">
|
||||||
<label for="end_time"><?php echo lang('general_word_time_off'); ?></label>
|
<label for="end_time"><?php echo lang('general_word_time_off'); ?></label>
|
||||||
|
<?php if ($_GET['manual'] == 1) { ?>
|
||||||
|
<i id="reset_end_time" data-toggle="tooltip" data-original-title="Reset end time" class="fas fa-stopwatch"></i>
|
||||||
|
<?php } ?>
|
||||||
<input type="text" class="form-control form-control-sm input_end_time" name="end_time" id="end_time" value="<?php if (($this->session->userdata('end_time') != NULL && ((time() - $this->session->userdata('time_stamp')) < 24 * 60 * 60))) { echo substr($this->session->userdata('end_time'),0,5); } else { echo $_GET['manual'] == 0 ? date('H:i:s') : date('H:i'); } ?>" size="7" <?php echo ($_GET['manual'] == 0 ? "disabled" : ""); ?> required pattern="[0-2][0-9]:[0-5][0-9]">
|
<input type="text" class="form-control form-control-sm input_end_time" name="end_time" id="end_time" value="<?php if (($this->session->userdata('end_time') != NULL && ((time() - $this->session->userdata('time_stamp')) < 24 * 60 * 60))) { echo substr($this->session->userdata('end_time'),0,5); } else { echo $_GET['manual'] == 0 ? date('H:i:s') : date('H:i'); } ?>" size="7" <?php echo ($_GET['manual'] == 0 ? "disabled" : ""); ?> required pattern="[0-2][0-9]:[0-5][0-9]">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
@ -84,6 +92,9 @@
|
||||||
|
|
||||||
<div class="form-group col-md-6">
|
<div class="form-group col-md-6">
|
||||||
<label for="start_time"><?php echo lang('general_word_time'); ?></label>
|
<label for="start_time"><?php echo lang('general_word_time'); ?></label>
|
||||||
|
<?php if ($_GET['manual'] == 1) { ?>
|
||||||
|
<i id="reset_start_time" data-toggle="tooltip" data-original-title="Reset start time" class="fas fa-stopwatch"></i>
|
||||||
|
<?php } ?>
|
||||||
<input type="text" class="form-control form-control-sm input_start_time" name="start_time" id="start_time" value="<?php if (($this->session->userdata('start_time') != NULL && ((time() - $this->session->userdata('time_stamp')) < 24 * 60 * 60))) { echo substr($this->session->userdata('start_time'),0,5); } else { echo $_GET['manual'] == 0 ? date('H:i:s') : date('H:i'); } ?>" size="7" <?php echo ($_GET['manual'] == 0 ? "disabled" : ""); ?> required pattern="[0-2][0-9]:[0-5][0-9]">
|
<input type="text" class="form-control form-control-sm input_start_time" name="start_time" id="start_time" value="<?php if (($this->session->userdata('start_time') != NULL && ((time() - $this->session->userdata('time_stamp')) < 24 * 60 * 60))) { echo substr($this->session->userdata('start_time'),0,5); } else { echo $_GET['manual'] == 0 ? date('H:i:s') : date('H:i'); } ?>" size="7" <?php echo ($_GET['manual'] == 0 ? "disabled" : ""); ?> required pattern="[0-2][0-9]:[0-5][0-9]">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,8 @@
|
||||||
var lang_qso_simplefle_info_ln4 = "<?php echo lang('qso_simplefle_info_ln4'); ?>";
|
var lang_qso_simplefle_info_ln4 = "<?php echo lang('qso_simplefle_info_ln4'); ?>";
|
||||||
var lang_qso_simplefle_syntax_help = "<?php echo lang('qso_simplefle_syntax_help_button'); ?>";
|
var lang_qso_simplefle_syntax_help = "<?php echo lang('qso_simplefle_syntax_help_button'); ?>";
|
||||||
var lang_qso_simplefle_syntax_help_title = "<?php echo lang('qso_simplefle_syntax_help_title'); ?>";
|
var lang_qso_simplefle_syntax_help_title = "<?php echo lang('qso_simplefle_syntax_help_title'); ?>";
|
||||||
|
var lang_qso_simplefle_syntax_help_close_w_sample = "<?php echo lang('qso_simplefle_syntax_help_close_w_sample'); ?>";
|
||||||
|
var lang_admin_close = "<?php echo lang('admin_close'); ?>";
|
||||||
var lang_qso_simplefle_error_band = "<?php echo lang('qso_simplefle_error_band'); ?>";
|
var lang_qso_simplefle_error_band = "<?php echo lang('qso_simplefle_error_band'); ?>";
|
||||||
var lang_qso_simplefle_error_mode = "<?php echo lang('qso_simplefle_error_mode'); ?>";
|
var lang_qso_simplefle_error_mode = "<?php echo lang('qso_simplefle_error_mode'); ?>";
|
||||||
var lang_qso_simplefle_error_time = "<?php echo lang('qso_simplefle_error_time'); ?>";
|
var lang_qso_simplefle_error_time = "<?php echo lang('qso_simplefle_error_time'); ?>";
|
||||||
|
|
@ -24,9 +26,11 @@
|
||||||
var lang_qso_simplefle_error_operator = "<?php echo lang('qso_simplefle_error_operator'); ?>";
|
var lang_qso_simplefle_error_operator = "<?php echo lang('qso_simplefle_error_operator'); ?>";
|
||||||
var lang_qso_simplefle_warning_reset = "<?php echo lang('qso_simplefle_warning_reset'); ?>";
|
var lang_qso_simplefle_warning_reset = "<?php echo lang('qso_simplefle_warning_reset'); ?>";
|
||||||
var lang_qso_simplefle_warning_missing_band_mode = "<?php echo lang('qso_simplefle_warning_missing_band_mode'); ?>";
|
var lang_qso_simplefle_warning_missing_band_mode = "<?php echo lang('qso_simplefle_warning_missing_band_mode'); ?>";
|
||||||
|
var lang_qso_simplefle_warning_example_data = "<?php echo lang('qso_simplefle_warning_example_data'); ?>";
|
||||||
var lang_qso_simplefle_confirm_save_to_log = "<?php echo lang('qso_simplefle_confirm_save_to_log'); ?>";
|
var lang_qso_simplefle_confirm_save_to_log = "<?php echo lang('qso_simplefle_confirm_save_to_log'); ?>";
|
||||||
var lang_qso_simplefle_success_save_to_log_header = "<?php echo lang('qso_simplefle_success_save_to_log_header'); ?>";
|
var lang_qso_simplefle_success_save_to_log_header = "<?php echo lang('qso_simplefle_success_save_to_log_header'); ?>";
|
||||||
var lang_qso_simplefle_success_save_to_log = "<?php echo lang('qso_simplefle_success_save_to_log'); ?>";
|
var lang_qso_simplefle_success_save_to_log = "<?php echo lang('qso_simplefle_success_save_to_log'); ?>";
|
||||||
|
var lang_qso_simplefle_sample_data = "<?php echo lang('qso_simplefle_sample_data'); ?>";
|
||||||
</script>
|
</script>
|
||||||
<h2><?php echo $page_title; ?></h2>
|
<h2><?php echo $page_title; ?></h2>
|
||||||
<button type="button" class="btn btn-sm btn-primary mr-1" id="simpleFleInfoButton"><?php echo lang('qso_simplefle_info'); ?></button>
|
<button type="button" class="btn btn-sm btn-primary mr-1" id="simpleFleInfoButton"><?php echo lang('qso_simplefle_info'); ?></button>
|
||||||
|
|
@ -64,14 +68,12 @@
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="qsodate"><?php echo lang('qso_simplefle_qso_date'); ?></label>
|
<label for="qsodate"><?php echo lang('qso_simplefle_qso_date'); ?></label>
|
||||||
<input type="date" class="form-control" id="qsodate">
|
<input type="date" class="form-control" id="qsodate">
|
||||||
|
<small class="form-text text-muted"><?php echo lang('qso_simplefle_qso_date_hint'); ?></small>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-xs-12 col-lg-6">
|
<div class="col-xs-12 col-lg-12 col-xl-6">
|
||||||
<div class="form-group">
|
<label for="utc-time"><?php echo lang('qso_simplefle_utc_time'); ?></label>
|
||||||
<label for="operator"><?php echo lang('qso_simplefle_operator'); ?> <span class="text-muted input-example"><?php echo lang('qso_simplefle_operator_hint'); ?></span></label>
|
<h4 class="font-weight-bold" id="utc-time"></h4>
|
||||||
<input type="text" class="form-control text-uppercase" id="operator" value="<?php echo $this->session->userdata('operator_callsign'); ?>">
|
|
||||||
<div class="alert alert-danger" role="alert" id="warningOperatorField" style="display: none"> </div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
@ -94,6 +96,13 @@
|
||||||
<small class="form-text text-muted"><?php echo lang('qso_simplefle_station_call_location_hint'); ?></small>
|
<small class="form-text text-muted"><?php echo lang('qso_simplefle_station_call_location_hint'); ?></small>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col-xs-12 col-lg-6">
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="operator"><?php echo lang('qso_simplefle_operator'); ?> <span class="text-muted input-example"><?php echo lang('qso_simplefle_operator_hint'); ?></span></label>
|
||||||
|
<input type="text" class="form-control text-uppercase" id="operator" value="<?php echo $this->session->userdata('operator_callsign'); ?>">
|
||||||
|
<div class="alert alert-danger" role="alert" id="warningOperatorField" style="display: none"> </div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
@ -113,7 +122,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<div class="qsoList">
|
<div class="qsoList">
|
||||||
<table class="table table-condensed table-striped table-sm" id="qsoTable">
|
<table class="table table-condensed table-striped table-sm sfletable" id="qsoTable">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th><?php echo lang('general_word_date'); ?></th>
|
<th><?php echo lang('general_word_date'); ?></th>
|
||||||
|
|
@ -124,7 +133,8 @@
|
||||||
<th><?php echo lang('gen_hamradio_rsts'); ?></th>
|
<th><?php echo lang('gen_hamradio_rsts'); ?></th>
|
||||||
<th><?php echo lang('gen_hamradio_rstr'); ?></th>
|
<th><?php echo lang('gen_hamradio_rstr'); ?></th>
|
||||||
<th><?php echo lang('gen_hamradio_operator'); ?></th>
|
<th><?php echo lang('gen_hamradio_operator'); ?></th>
|
||||||
<th>SOTA | IOTA | POTA | WWFF</th>
|
<th><?php echo lang('gen_hamradio_refs'); ?>*</th>
|
||||||
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody id="qsoTableBody">
|
<tbody id="qsoTableBody">
|
||||||
|
|
@ -132,8 +142,15 @@
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="row mt-2">
|
||||||
|
<div class="col-6 col-sm-6">
|
||||||
<span class="js-qso-count"></span>
|
<span class="js-qso-count"></span>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col-6 col-sm-6 text-right">
|
||||||
|
<?php echo lang('qso_simplefle_refs_hint'); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="row mt-2">
|
<div class="row mt-2">
|
||||||
<div class="col-3 col-sm-3">
|
<div class="col-3 col-sm-3">
|
||||||
<button class="btn btn-primary js-reload-qso"><?php echo lang('qso_simplefle_reload'); ?></button>
|
<button class="btn btn-primary js-reload-qso"><?php echo lang('qso_simplefle_reload'); ?></button>
|
||||||
|
|
|
||||||
|
|
@ -554,4 +554,26 @@ div#station_logbooks_linked_table_paginate {
|
||||||
|
|
||||||
input:invalid {
|
input:invalid {
|
||||||
border-color: red;
|
border-color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sfletable{
|
||||||
|
height: 470px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sfletable.table {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sfletable.table thead, .sfletable.table tbody tr {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
table-layout: fixed;
|
||||||
|
display: inline-table;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sfletable.table tbody {
|
||||||
|
width: 95%;
|
||||||
|
overflow-y: scroll;
|
||||||
|
max-height: 440px;
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -27,19 +27,71 @@ $('#simpleFleInfoButton').click(function (event) {
|
||||||
$('#js-syntax').click(function (event) {
|
$('#js-syntax').click(function (event) {
|
||||||
$('#js-syntax').prop("disabled", false);
|
$('#js-syntax').prop("disabled", false);
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: base_url + 'index.php/simplefle/displaySyntax',
|
url: base_url + "index.php/simplefle/displaySyntax",
|
||||||
type: 'post',
|
type: "post",
|
||||||
success: function (html) {
|
success: function (html) {
|
||||||
BootstrapDialog.alert({
|
BootstrapDialog.show({
|
||||||
title: "<h4>"+lang_qso_simplefle_syntax_help_title+"</h4>",
|
title: "<h4>" + lang_qso_simplefle_syntax_help_title + "</h4>",
|
||||||
|
type: BootstrapDialog.TYPE_INFO,
|
||||||
size: BootstrapDialog.SIZE_WIDE,
|
size: BootstrapDialog.SIZE_WIDE,
|
||||||
nl2br: false,
|
nl2br: false,
|
||||||
message: html,
|
message: html,
|
||||||
});
|
buttons: [
|
||||||
|
{
|
||||||
|
label: lang_qso_simplefle_syntax_help_close_w_sample,
|
||||||
|
action: function () {
|
||||||
|
BootstrapDialog.confirm({
|
||||||
|
title: lang_general_word_warning,
|
||||||
|
message: lang_qso_simplefle_warning_reset,
|
||||||
|
type: BootstrapDialog.TYPE_DANGER,
|
||||||
|
btnCancelLabel: lang_general_word_cancel,
|
||||||
|
btnOKLabel: lang_general_word_ok,
|
||||||
|
btnOKClass: "btn-warning",
|
||||||
|
callback: function (result) {
|
||||||
|
if (result) {
|
||||||
|
clearSession();
|
||||||
|
|
||||||
|
const logData = `
|
||||||
|
*example-data*
|
||||||
|
80m cw
|
||||||
|
1212 m0abc okff-1234
|
||||||
|
3 hb9hil
|
||||||
|
4 ok1tn
|
||||||
|
20 dl6kva 7 8
|
||||||
|
5 dl5cw
|
||||||
|
ssb
|
||||||
|
32 ok7wa ol/zl-071 5 8
|
||||||
|
33 ok1xxx 4 3
|
||||||
|
`;
|
||||||
|
|
||||||
|
$textarea.val(logData.trim());
|
||||||
|
handleInput();
|
||||||
|
BootstrapDialog.closeAll();
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: lang_admin_close,
|
||||||
|
cssClass: "btn-primary",
|
||||||
|
action: function (dialogItself) {
|
||||||
|
dialogItself.close();
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
});
|
||||||
|
},
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function updateUTCTime() {
|
||||||
|
const utcTimeElement = document.getElementById("utc-time");
|
||||||
|
const now = new Date();
|
||||||
|
const utcTimeString = now.toISOString().split("T")[1].split(".")[0];
|
||||||
|
utcTimeElement.textContent = utcTimeString;
|
||||||
|
}
|
||||||
|
|
||||||
function handleInput() {
|
function handleInput() {
|
||||||
var qsodate = "";
|
var qsodate = "";
|
||||||
if ($("#qsodate").val()) {
|
if ($("#qsodate").val()) {
|
||||||
|
|
@ -58,7 +110,7 @@ function handleInput() {
|
||||||
var mode = "";
|
var mode = "";
|
||||||
var freq = "";
|
var freq = "";
|
||||||
var callsign = "";
|
var callsign = "";
|
||||||
var sotaWff = "";
|
var sotaWwff = "";
|
||||||
qsoList = [];
|
qsoList = [];
|
||||||
$("#qsoTable tbody").empty();
|
$("#qsoTable tbody").empty();
|
||||||
|
|
||||||
|
|
@ -113,7 +165,7 @@ function handleInput() {
|
||||||
/^[A-Z0-9]{1,3}\/[A-Z]{2}-\d{3}|[AENOS]*[FNSUACA]-\d{3}|(?!.*FF)[A-Z0-9]{1,3}-\d{4}|[A-Z0-9]{1,3}[F]{2}-\d{4}$/i
|
/^[A-Z0-9]{1,3}\/[A-Z]{2}-\d{3}|[AENOS]*[FNSUACA]-\d{3}|(?!.*FF)[A-Z0-9]{1,3}-\d{4}|[A-Z0-9]{1,3}[F]{2}-\d{4}$/i
|
||||||
)
|
)
|
||||||
) {
|
) {
|
||||||
sotaWff = item.toUpperCase();
|
sotaWwff = item.toUpperCase();
|
||||||
} else if (
|
} else if (
|
||||||
item.match(
|
item.match(
|
||||||
/([a-zA-Z0-9]{1,3}[0123456789][a-zA-Z0-9]{0,3}[a-zA-Z])|.*\/([a-zA-Z0-9]{1,3}[0123456789][a-zA-Z0-9]{0,3}[a-zA-Z])|([a-zA-Z0-9]{1,3}[0123456789][a-zA-Z0-9]{0,3}[a-zA-Z])\/.*/
|
/([a-zA-Z0-9]{1,3}[0123456789][a-zA-Z0-9]{0,3}[a-zA-Z])|.*\/([a-zA-Z0-9]{1,3}[0123456789][a-zA-Z0-9]{0,3}[a-zA-Z])|([a-zA-Z0-9]{1,3}[0123456789][a-zA-Z0-9]{0,3}[a-zA-Z])\/.*/
|
||||||
|
|
@ -168,9 +220,21 @@ function handleInput() {
|
||||||
mode,
|
mode,
|
||||||
rst_s,
|
rst_s,
|
||||||
rst_r,
|
rst_r,
|
||||||
sotaWff,
|
sotaWwff,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
let sotaWwffText = "";
|
||||||
|
|
||||||
|
if (isSOTA(sotaWwff)) {
|
||||||
|
sotaWwffText = `S: ${sotaWwff}`;
|
||||||
|
} else if (isPOTA(sotaWwff)) {
|
||||||
|
sotaWwffText = `P: ${sotaWwff}`;
|
||||||
|
} else if (isIOTA(sotaWwff)) {
|
||||||
|
sotaWwffText = `I: ${sotaWwff}`;
|
||||||
|
} else if (isWWFF(sotaWwff)) {
|
||||||
|
sotaWwffText = `W: ${sotaWwff}`;
|
||||||
|
}
|
||||||
|
|
||||||
const tableRow = $(`<tr>
|
const tableRow = $(`<tr>
|
||||||
<td>${extraQsoDate}</td>
|
<td>${extraQsoDate}</td>
|
||||||
<td>${qsotime}</td>
|
<td>${qsotime}</td>
|
||||||
|
|
@ -180,7 +244,7 @@ function handleInput() {
|
||||||
<td>${rst_s}</td>
|
<td>${rst_s}</td>
|
||||||
<td>${rst_r}</td>
|
<td>${rst_r}</td>
|
||||||
<td>${operator}</td>
|
<td>${operator}</td>
|
||||||
<td>${sotaWff}</td>
|
<td>${sotaWwffText}</td>
|
||||||
</tr>`);
|
</tr>`);
|
||||||
|
|
||||||
$("#qsoTable > tbody:last-child").append(tableRow);
|
$("#qsoTable > tbody:last-child").append(tableRow);
|
||||||
|
|
@ -195,7 +259,7 @@ function handleInput() {
|
||||||
localStorage.setItem(`user_${user_id}_my-grid`, $("#my-grid").val());
|
localStorage.setItem(`user_${user_id}_my-grid`, $("#my-grid").val());
|
||||||
|
|
||||||
callsign = "";
|
callsign = "";
|
||||||
sotaWff = "";
|
sotaWwff = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
showErrors();
|
showErrors();
|
||||||
|
|
@ -418,6 +482,16 @@ function isBandModeEntered() {
|
||||||
return isBandModeOK;
|
return isBandModeOK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function isExampleDataEntered() {
|
||||||
|
let isExampleData = false;
|
||||||
|
if (textarea.value.startsWith("*example-data*")) {
|
||||||
|
isExampleData = true;
|
||||||
|
|
||||||
|
};
|
||||||
|
return isExampleData;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
function getAdifTag(tagName, value) {
|
function getAdifTag(tagName, value) {
|
||||||
return "<" + tagName + ":" + value.length + ">" + value + " ";
|
return "<" + tagName + ":" + value.length + ">" + value + " ";
|
||||||
}
|
}
|
||||||
|
|
@ -481,23 +555,10 @@ function isWWFF(value) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
function download(filename, text) {
|
|
||||||
var element = document.createElement("a");
|
|
||||||
element.setAttribute(
|
|
||||||
"href",
|
|
||||||
"data:text/plain;charset=utf-8," + encodeURIComponent(text)
|
|
||||||
);
|
|
||||||
element.setAttribute("download", filename);
|
|
||||||
|
|
||||||
element.style.display = "none";
|
|
||||||
document.body.appendChild(element);
|
|
||||||
|
|
||||||
element.click();
|
|
||||||
|
|
||||||
document.body.removeChild(element);
|
|
||||||
}
|
|
||||||
|
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
|
setInterval(updateUTCTime, 1000);
|
||||||
|
updateUTCTime();
|
||||||
var tabledata = localStorage.getItem(`user_${user_id}_tabledata`);
|
var tabledata = localStorage.getItem(`user_${user_id}_tabledata`);
|
||||||
var mycall = localStorage.getItem(`user_${user_id}_my-call`);
|
var mycall = localStorage.getItem(`user_${user_id}_my-call`);
|
||||||
var operator = localStorage.getItem(`user_${user_id}_operator`);
|
var operator = localStorage.getItem(`user_${user_id}_operator`);
|
||||||
|
|
@ -547,6 +608,7 @@ $(".js-save-to-log").click(function () {
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
$('#textarea').css('border', '');
|
$('#textarea').css('border', '');
|
||||||
}, 2000);
|
}, 2000);
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
if (false === isBandModeEntered()) {
|
if (false === isBandModeEntered()) {
|
||||||
BootstrapDialog.alert({
|
BootstrapDialog.alert({
|
||||||
|
|
@ -559,6 +621,17 @@ $(".js-save-to-log").click(function () {
|
||||||
});
|
});
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
if (true === isExampleDataEntered()) {
|
||||||
|
BootstrapDialog.alert({
|
||||||
|
title: lang_general_word_warning,
|
||||||
|
message: lang_qso_simplefle_warning_example_data,
|
||||||
|
type: BootstrapDialog.TYPE_DANGER,
|
||||||
|
btnCancelLabel: lang_general_word_cancel,
|
||||||
|
btnOKLabel: lang_general_word_ok,
|
||||||
|
btnOKClass: "btn-warning",
|
||||||
|
});
|
||||||
|
return false;
|
||||||
|
}
|
||||||
else {
|
else {
|
||||||
handleInput();
|
handleInput();
|
||||||
BootstrapDialog.confirm({
|
BootstrapDialog.confirm({
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用