当前提交
						6f14280ab2
					
				
					共有  57 个文件被更改,包括 815 次插入 和 100 次删除
				
			
		|  | @ -98,16 +98,19 @@ $autoload['config'] = array('cloudlog', 'bands', 'lotw'); | ||||||
| 
 | 
 | ||||||
| $autoload['language'] = array( | $autoload['language'] = array( | ||||||
|     'account', |     'account', | ||||||
|  |     'admin', | ||||||
|     'contesting', |     'contesting', | ||||||
|     'eqsl', |     'eqsl', | ||||||
|  |     'filter', | ||||||
|     'general_words', |     'general_words', | ||||||
|  |     'gridsquares', | ||||||
|     'lotw', |     'lotw', | ||||||
|     'menu', |     'menu', | ||||||
|     'notes', |     'notes', | ||||||
|  |     'options', | ||||||
|     'qslcard', |     'qslcard', | ||||||
|     'qso', |     'qso', | ||||||
|     'gridsquares', |     'statistics' | ||||||
|     'filter' |  | ||||||
|     ); |     ); | ||||||
| 
 | 
 | ||||||
| /* | /* | ||||||
|  |  | ||||||
|  | @ -80,7 +80,7 @@ class Contesting extends CI_Controller { | ||||||
| 		$this->load->library('form_validation'); | 		$this->load->library('form_validation'); | ||||||
| 
 | 
 | ||||||
| 		$this->form_validation->set_rules('name', 'Contest Name', 'required'); | 		$this->form_validation->set_rules('name', 'Contest Name', 'required'); | ||||||
| 		$this->form_validation->set_rules('adifname', 'Contest Adif Name', 'required'); | 		$this->form_validation->set_rules('adifname', 'Adif Contest Name', 'required'); | ||||||
| 
 | 
 | ||||||
| 		if ($this->form_validation->run() == FALSE) | 		if ($this->form_validation->run() == FALSE) | ||||||
| 		{ | 		{ | ||||||
|  | @ -106,15 +106,14 @@ class Contesting extends CI_Controller { | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	public function edit($id) { | 	public function edit($id) { | ||||||
| 		$this->load->library('form_validation'); |  | ||||||
| 
 |  | ||||||
| 		$this->load->model('Contesting_model'); | 		$this->load->model('Contesting_model'); | ||||||
|  | 		$this->load->library('form_validation'); | ||||||
| 
 | 
 | ||||||
| 		$item_id_clean = $this->security->xss_clean($id); | 		$item_id_clean = $this->security->xss_clean($id); | ||||||
| 
 | 
 | ||||||
| 		$data['contest'] = $this->Contesting_model->contest($item_id_clean); | 		$data['contest'] = $this->Contesting_model->contest($item_id_clean); | ||||||
| 
 | 
 | ||||||
| 		$data['page_title'] = "Edit Contest"; | 		$data['page_title'] = lang('admin_contest_edit_update_contest'); | ||||||
| 
 | 
 | ||||||
| 		$this->form_validation->set_rules('name', 'Contest Name', 'required'); | 		$this->form_validation->set_rules('name', 'Contest Name', 'required'); | ||||||
| 		$this->form_validation->set_rules('adifname', 'Adif Contest Name', 'required'); | 		$this->form_validation->set_rules('adifname', 'Adif Contest Name', 'required'); | ||||||
|  |  | ||||||
|  | @ -16,4 +16,35 @@ $lang['admin_options'] = 'Options'; | ||||||
| $lang['admin_create_user'] = 'Create user'; | $lang['admin_create_user'] = 'Create user'; | ||||||
| $lang['admin_delete'] = 'Delete'; | $lang['admin_delete'] = 'Delete'; | ||||||
| $lang['admin_edit'] = 'Edit'; | $lang['admin_edit'] = 'Edit'; | ||||||
|  | $lang['admin_save'] = 'Save'; | ||||||
|  | $lang['admin_close'] = 'Close'; | ||||||
| $lang['admin_user_accounts'] = 'User Accounts'; | $lang['admin_user_accounts'] = 'User Accounts'; | ||||||
|  | $lang['admin_danger'] = 'DANGER!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | // Contest Menu
 | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_menu_line_1'] = 'Using the contest list, you can control which Contests are shown when logging QSOs in a contest.'; | ||||||
|  | $lang['admin_contest_menu_line_2'] = 'Active contests will be shown in the Contest Name drop-down, while inactive contests will be hidden and cannot be selected.'; | ||||||
|  | $lang['admin_contest_menu_name'] = 'Name'; | ||||||
|  | $lang['admin_contest_menu_adif'] = 'ADIF Name'; | ||||||
|  | $lang['admin_contest_menu_active'] = 'Active'; | ||||||
|  | $lang['admin_contest_menu_n_active'] = 'Not Active'; | ||||||
|  | $lang['admin_contest_menu_activate'] = 'Activate'; | ||||||
|  | $lang['admin_contest_menu_deactivate'] = 'Deactivate'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_add_contest'] = 'Add a Contest'; | ||||||
|  | $lang["admin_contest_create"] = "Create"; | ||||||
|  | $lang['admin_contest_all_active'] = 'Activate All'; | ||||||
|  | $lang['admin_contest_all_deactive'] = 'Deactivate All'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_name_adif'] = 'Contest ADIF Name'; | ||||||
|  | $lang['admin_contest_name_of_contest'] = 'Name of the Contest'; | ||||||
|  | $lang['admin_contest_name_of_adif'] = 'Name of Contest in ADIF-specification'; | ||||||
|  | $lang['admin_contest_edit_active_hint'] = 'Set to active if to be listed in Contest-list'; | ||||||
|  | $lang['admin_contest_edit_update_contest'] = 'Update Contest'; | ||||||
|  | $lang['admin_contest_deletion_warning'] = 'Warning! Are you sure you want to delete the following contest: '; | ||||||
|  | $lang['admin_contest_active_all_warning'] = 'Warning! Are you sure you want to activate all contests?'; | ||||||
|  | $lang['admin_contest_deactive_all_warning'] = 'Warning! Are you sure you want to deactivate all contests?'; | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -4,10 +4,20 @@ defined('BASEPATH') OR exit('Не е разрешен директен дост | ||||||
| 
 | 
 | ||||||
| $lang['contesting_page_title'] = 'Регистриране на състезание'; | $lang['contesting_page_title'] = 'Регистриране на състезание'; | ||||||
| $lang['contesting_button_reset_contest_session'] = 'Нулиране на сесията на състезанието'; | $lang['contesting_button_reset_contest_session'] = 'Нулиране на сесията на състезанието'; | ||||||
|  | $lang['contesting_operator_callsign'] = 'Operator Callsign'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_exchange_type'] = 'Тип обмен'; | $lang['contesting_exchange_type'] = 'Тип обмен'; | ||||||
| $lang['contesting_exchange_type_serial'] = 'Serial'; | $lang['contesting_exchange_type_serial'] = 'Serial'; | ||||||
|  | $lang['contesting_exchange_type_none'] = 'None'; | ||||||
|  | $lang['contesting_exchange_type_exchange'] = 'Exchange'; | ||||||
|  | $lang['contesting_exchange_type_gridsquare'] = 'Gridsquare'; | ||||||
| $lang['contesting_exchange_type_other'] = 'Друг'; | $lang['contesting_exchange_type_other'] = 'Друг'; | ||||||
|  | $lang['contesting_exchange_type_serial_exchange'] = 'Serial + Exchange'; | ||||||
|  | $lang['contesting_exchange_type_serial_gridsquare'] = 'Serial + Gridsquare'; | ||||||
|  | $lang['contesting_exchange_serial_s'] = 'Serial (S)'; | ||||||
|  | $lang['contesting_exchange_serial_r'] = 'Serial (R)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_s'] = 'Gridsquare (S)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_r'] = 'Gridsquare (R)'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_contest_name'] = 'Име на състезанието'; | $lang['contesting_contest_name'] = 'Име на състезанието'; | ||||||
| 
 | 
 | ||||||
|  | @ -16,3 +26,7 @@ $lang['contesting_btn_save_qso'] = 'Запазване на QSO'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_title_callsign_suggestions'] = 'Предложения за инициали'; | $lang['contesting_title_callsign_suggestions'] = 'Предложения за инициали'; | ||||||
| $lang['contesting_title_contest_logbook'] = 'Дневник на състезанието'; | $lang['contesting_title_contest_logbook'] = 'Дневник на състезанието'; | ||||||
|  | 
 | ||||||
|  | $lang['contesting_copy_exch_to_dok'] = 'Copy received exchange to DOK field in the database!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -58,6 +58,7 @@ $lang['general_word_lotw'] = 'Logbook of the World'; | ||||||
| $lang['general_word_lotw_short'] = 'LoTW'; | $lang['general_word_lotw_short'] = 'LoTW'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_details'] = 'Details'; | $lang['general_word_details'] = 'Details'; | ||||||
|  | $lang['general_word_qso_data'] = 'QSO Data'; | ||||||
| 
 | 
 | ||||||
| $lang['general_edit_qso'] = 'Редактирай QSO'; | $lang['general_edit_qso'] = 'Редактирай QSO'; | ||||||
| $lang['general_mark_qsl_rx_bureau'] = 'Маркирайте QSL получена (Бюро)'; | $lang['general_mark_qsl_rx_bureau'] = 'Маркирайте QSL получена (Бюро)'; | ||||||
|  |  | ||||||
|  | @ -16,4 +16,35 @@ $lang['admin_options'] = '设置'; | ||||||
| $lang['admin_create_user'] = '创建用户'; | $lang['admin_create_user'] = '创建用户'; | ||||||
| $lang['admin_delete'] = '删除用户'; | $lang['admin_delete'] = '删除用户'; | ||||||
| $lang['admin_edit'] = '编辑用户'; | $lang['admin_edit'] = '编辑用户'; | ||||||
|  | $lang['admin_save'] = 'Save'; | ||||||
|  | $lang['admin_close'] = 'Close'; | ||||||
| $lang['admin_user_accounts'] = 'User Accounts'; | $lang['admin_user_accounts'] = 'User Accounts'; | ||||||
|  | $lang['admin_danger'] = 'DANGER!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | // Contest Menu
 | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_menu_line_1'] = 'Using the contest list, you can control which Contests are shown when logging QSOs in a contest.'; | ||||||
|  | $lang['admin_contest_menu_line_2'] = 'Active contests will be shown in the Contest Name drop-down, while inactive contests will be hidden and cannot be selected.'; | ||||||
|  | $lang['admin_contest_menu_name'] = 'Name'; | ||||||
|  | $lang['admin_contest_menu_adif'] = 'ADIF Name'; | ||||||
|  | $lang['admin_contest_menu_active'] = 'Active'; | ||||||
|  | $lang['admin_contest_menu_n_active'] = 'Not Active'; | ||||||
|  | $lang['admin_contest_menu_activate'] = 'Activate'; | ||||||
|  | $lang['admin_contest_menu_deactivate'] = 'Deactivate'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_add_contest'] = 'Add a Contest'; | ||||||
|  | $lang["admin_contest_create"] = "Create"; | ||||||
|  | $lang['admin_contest_all_active'] = 'Activate All'; | ||||||
|  | $lang['admin_contest_all_deactive'] = 'Deactivate All'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_name_adif'] = 'Contest ADIF Name'; | ||||||
|  | $lang['admin_contest_name_of_contest'] = 'Name of the Contest'; | ||||||
|  | $lang['admin_contest_name_of_adif'] = 'Name of Contest in ADIF-specification'; | ||||||
|  | $lang['admin_contest_edit_active_hint'] = 'Set to active if to be listed in Contest-list'; | ||||||
|  | $lang['admin_contest_edit_update_contest'] = 'Update Contest'; | ||||||
|  | $lang['admin_contest_deletion_warning'] = 'Warning! Are you sure you want to delete the following contest: '; | ||||||
|  | $lang['admin_contest_active_all_warning'] = 'Warning! Are you sure you want to activate all contests?'; | ||||||
|  | $lang['admin_contest_deactive_all_warning'] = 'Warning! Are you sure you want to deactivate all contests?'; | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -4,10 +4,20 @@ defined('BASEPATH') OR exit('No direct script access allowed'); | ||||||
| 
 | 
 | ||||||
| $lang['contesting_page_title'] = '竞赛日志'; | $lang['contesting_page_title'] = '竞赛日志'; | ||||||
| $lang['contesting_button_reset_contest_session'] = '重置竞赛会话'; | $lang['contesting_button_reset_contest_session'] = '重置竞赛会话'; | ||||||
|  | $lang['contesting_operator_callsign'] = 'Operator Callsign'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_exchange_type'] = '信号交换类型'; | $lang['contesting_exchange_type'] = '信号交换类型'; | ||||||
| $lang['contesting_exchange_type_serial'] = '序列编号'; | $lang['contesting_exchange_type_serial'] = '序列编号'; | ||||||
|  | $lang['contesting_exchange_type_none'] = 'None'; | ||||||
|  | $lang['contesting_exchange_type_exchange'] = 'Exchange'; | ||||||
|  | $lang['contesting_exchange_type_gridsquare'] = 'Gridsquare'; | ||||||
| $lang['contesting_exchange_type_other'] = '其他'; | $lang['contesting_exchange_type_other'] = '其他'; | ||||||
|  | $lang['contesting_exchange_type_serial_exchange'] = 'Serial + Exchange'; | ||||||
|  | $lang['contesting_exchange_type_serial_gridsquare'] = 'Serial + Gridsquare'; | ||||||
|  | $lang['contesting_exchange_serial_s'] = 'Serial (S)'; | ||||||
|  | $lang['contesting_exchange_serial_r'] = 'Serial (R)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_s'] = 'Gridsquare (S)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_r'] = 'Gridsquare (R)'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_contest_name'] = '竞赛名称'; | $lang['contesting_contest_name'] = '竞赛名称'; | ||||||
| 
 | 
 | ||||||
|  | @ -16,3 +26,7 @@ $lang['contesting_btn_save_qso'] = '保存 QSO'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_title_callsign_suggestions'] = '呼号建议'; | $lang['contesting_title_callsign_suggestions'] = '呼号建议'; | ||||||
| $lang['contesting_title_contest_logbook'] = '竞赛日志簿'; | $lang['contesting_title_contest_logbook'] = '竞赛日志簿'; | ||||||
|  | 
 | ||||||
|  | $lang['contesting_copy_exch_to_dok'] = 'Copy received exchange to DOK field in the database!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -58,6 +58,7 @@ $lang['general_word_lotw'] = 'Logbook of the World'; | ||||||
| $lang['general_word_lotw_short'] = 'LoTW'; | $lang['general_word_lotw_short'] = 'LoTW'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_details'] = 'Details'; | $lang['general_word_details'] = 'Details'; | ||||||
|  | $lang['general_word_qso_data'] = 'QSO Data'; | ||||||
| 
 | 
 | ||||||
| $lang['general_edit_qso'] = '编辑 QSO'; | $lang['general_edit_qso'] = '编辑 QSO'; | ||||||
| $lang['general_mark_qsl_rx_bureau'] = '标记 已收到的QSL (卡片局)'; | $lang['general_mark_qsl_rx_bureau'] = '标记 已收到的QSL (卡片局)'; | ||||||
|  |  | ||||||
|  | @ -16,4 +16,35 @@ $lang['admin_options'] = 'Možnosti'; | ||||||
| $lang['admin_create_user'] = 'Vytvořit uživatele'; | $lang['admin_create_user'] = 'Vytvořit uživatele'; | ||||||
| $lang['admin_delete'] = 'Smazat'; | $lang['admin_delete'] = 'Smazat'; | ||||||
| $lang['admin_edit'] = 'Upravit'; | $lang['admin_edit'] = 'Upravit'; | ||||||
|  | $lang['admin_save'] = 'Save'; | ||||||
|  | $lang['admin_close'] = 'Close'; | ||||||
| $lang['admin_user_accounts'] = 'User Accounts'; | $lang['admin_user_accounts'] = 'User Accounts'; | ||||||
|  | $lang['admin_danger'] = 'DANGER!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | // Contest Menu
 | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_menu_line_1'] = 'Using the contest list, you can control which Contests are shown when logging QSOs in a contest.'; | ||||||
|  | $lang['admin_contest_menu_line_2'] = 'Active contests will be shown in the Contest Name drop-down, while inactive contests will be hidden and cannot be selected.'; | ||||||
|  | $lang['admin_contest_menu_name'] = 'Name'; | ||||||
|  | $lang['admin_contest_menu_adif'] = 'ADIF Name'; | ||||||
|  | $lang['admin_contest_menu_active'] = 'Active'; | ||||||
|  | $lang['admin_contest_menu_n_active'] = 'Not Active'; | ||||||
|  | $lang['admin_contest_menu_activate'] = 'Activate'; | ||||||
|  | $lang['admin_contest_menu_deactivate'] = 'Deactivate'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_add_contest'] = 'Add a Contest'; | ||||||
|  | $lang["admin_contest_create"] = "Create"; | ||||||
|  | $lang['admin_contest_all_active'] = 'Activate All'; | ||||||
|  | $lang['admin_contest_all_deactive'] = 'Deactivate All'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_name_adif'] = 'Contest ADIF Name'; | ||||||
|  | $lang['admin_contest_name_of_contest'] = 'Name of the Contest'; | ||||||
|  | $lang['admin_contest_name_of_adif'] = 'Name of Contest in ADIF-specification'; | ||||||
|  | $lang['admin_contest_edit_active_hint'] = 'Set to active if to be listed in Contest-list'; | ||||||
|  | $lang['admin_contest_edit_update_contest'] = 'Update Contest'; | ||||||
|  | $lang['admin_contest_deletion_warning'] = 'Warning! Are you sure you want to delete the following contest: '; | ||||||
|  | $lang['admin_contest_active_all_warning'] = 'Warning! Are you sure you want to activate all contests?'; | ||||||
|  | $lang['admin_contest_deactive_all_warning'] = 'Warning! Are you sure you want to deactivate all contests?'; | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -4,10 +4,20 @@ defined('BASEPATH') OR exit('No direct script access allowed'); | ||||||
| 
 | 
 | ||||||
| $lang['contesting_page_title'] = 'Závodní deník'; | $lang['contesting_page_title'] = 'Závodní deník'; | ||||||
| $lang['contesting_button_reset_contest_session'] = 'Resetovat závod'; | $lang['contesting_button_reset_contest_session'] = 'Resetovat závod'; | ||||||
|  | $lang['contesting_operator_callsign'] = 'Operator Callsign'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_exchange_type'] = 'Typ předávaného kódu'; | $lang['contesting_exchange_type'] = 'Typ předávaného kódu'; | ||||||
| $lang['contesting_exchange_type_serial'] = 'Číslo spojení'; | $lang['contesting_exchange_type_serial'] = 'Číslo spojení'; | ||||||
|  | $lang['contesting_exchange_type_none'] = 'None'; | ||||||
|  | $lang['contesting_exchange_type_exchange'] = 'Exchange'; | ||||||
|  | $lang['contesting_exchange_type_gridsquare'] = 'Gridsquare'; | ||||||
| $lang['contesting_exchange_type_other'] = 'Jiné'; | $lang['contesting_exchange_type_other'] = 'Jiné'; | ||||||
|  | $lang['contesting_exchange_type_serial_exchange'] = 'Serial + Exchange'; | ||||||
|  | $lang['contesting_exchange_type_serial_gridsquare'] = 'Serial + Gridsquare'; | ||||||
|  | $lang['contesting_exchange_serial_s'] = 'Serial (S)'; | ||||||
|  | $lang['contesting_exchange_serial_r'] = 'Serial (R)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_s'] = 'Gridsquare (S)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_r'] = 'Gridsquare (R)'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_contest_name'] = 'Název závodu'; | $lang['contesting_contest_name'] = 'Název závodu'; | ||||||
| 
 | 
 | ||||||
|  | @ -16,3 +26,7 @@ $lang['contesting_btn_save_qso'] = 'Uložit QSO'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_title_callsign_suggestions'] = 'Našeptávač značek'; | $lang['contesting_title_callsign_suggestions'] = 'Našeptávač značek'; | ||||||
| $lang['contesting_title_contest_logbook'] = 'Závodní deník'; | $lang['contesting_title_contest_logbook'] = 'Závodní deník'; | ||||||
|  | 
 | ||||||
|  | $lang['contesting_copy_exch_to_dok'] = 'Copy received exchange to DOK field in the database!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -58,6 +58,7 @@ $lang['general_word_lotw'] = 'Logbook of the World'; | ||||||
| $lang['general_word_lotw_short'] = 'LoTW'; | $lang['general_word_lotw_short'] = 'LoTW'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_details'] = 'Details'; | $lang['general_word_details'] = 'Details'; | ||||||
|  | $lang['general_word_qso_data'] = 'QSO Data'; | ||||||
| 
 | 
 | ||||||
| $lang['general_edit_qso'] = 'Upravit QSO'; | $lang['general_edit_qso'] = 'Upravit QSO'; | ||||||
| $lang['general_mark_qsl_rx_bureau'] = 'Označit QSL přijato (Bureau)'; | $lang['general_mark_qsl_rx_bureau'] = 'Označit QSL přijato (Bureau)'; | ||||||
|  |  | ||||||
|  | @ -16,4 +16,35 @@ $lang['admin_options'] = 'Options'; | ||||||
| $lang['admin_create_user'] = 'Create user'; | $lang['admin_create_user'] = 'Create user'; | ||||||
| $lang['admin_delete'] = 'Delete'; | $lang['admin_delete'] = 'Delete'; | ||||||
| $lang['admin_edit'] = 'Edit'; | $lang['admin_edit'] = 'Edit'; | ||||||
|  | $lang['admin_save'] = 'Save'; | ||||||
|  | $lang['admin_close'] = 'Close'; | ||||||
| $lang['admin_user_accounts'] = 'User Accounts'; | $lang['admin_user_accounts'] = 'User Accounts'; | ||||||
|  | $lang['admin_danger'] = 'DANGER!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | // Contest Menu
 | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_menu_line_1'] = 'Using the contest list, you can control which Contests are shown when logging QSOs in a contest.'; | ||||||
|  | $lang['admin_contest_menu_line_2'] = 'Active contests will be shown in the Contest Name drop-down, while inactive contests will be hidden and cannot be selected.'; | ||||||
|  | $lang['admin_contest_menu_name'] = 'Name'; | ||||||
|  | $lang['admin_contest_menu_adif'] = 'ADIF Name'; | ||||||
|  | $lang['admin_contest_menu_active'] = 'Active'; | ||||||
|  | $lang['admin_contest_menu_n_active'] = 'Not Active'; | ||||||
|  | $lang['admin_contest_menu_activate'] = 'Activate'; | ||||||
|  | $lang['admin_contest_menu_deactivate'] = 'Deactivate'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_add_contest'] = 'Add a Contest'; | ||||||
|  | $lang["admin_contest_create"] = "Create"; | ||||||
|  | $lang['admin_contest_all_active'] = 'Activate All'; | ||||||
|  | $lang['admin_contest_all_deactive'] = 'Deactivate All'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_name_adif'] = 'Contest ADIF Name'; | ||||||
|  | $lang['admin_contest_name_of_contest'] = 'Name of the Contest'; | ||||||
|  | $lang['admin_contest_name_of_adif'] = 'Name of Contest in ADIF-specification'; | ||||||
|  | $lang['admin_contest_edit_active_hint'] = 'Set to active if to be listed in Contest-list'; | ||||||
|  | $lang['admin_contest_edit_update_contest'] = 'Update Contest'; | ||||||
|  | $lang['admin_contest_deletion_warning'] = 'Warning! Are you sure you want to delete the following contest: '; | ||||||
|  | $lang['admin_contest_active_all_warning'] = 'Warning! Are you sure you want to activate all contests?'; | ||||||
|  | $lang['admin_contest_deactive_all_warning'] = 'Warning! Are you sure you want to deactivate all contests?'; | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -4,10 +4,20 @@ defined('BASEPATH') OR exit('Directe toegang tot scripts is niet toegestaan'); | ||||||
| 
 | 
 | ||||||
| $lang['contesting_page_title'] = 'Contest Logging'; | $lang['contesting_page_title'] = 'Contest Logging'; | ||||||
| $lang['contesting_button_reset_contest_session'] = 'Herstel Contest Sessie'; | $lang['contesting_button_reset_contest_session'] = 'Herstel Contest Sessie'; | ||||||
|  | $lang['contesting_operator_callsign'] = 'Operator Callsign'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_exchange_type'] = 'Soort uitwisseling'; | $lang['contesting_exchange_type'] = 'Soort uitwisseling'; | ||||||
| $lang['contesting_exchange_type_serial'] = 'Volgnummer'; | $lang['contesting_exchange_type_serial'] = 'Volgnummer'; | ||||||
|  | $lang['contesting_exchange_type_none'] = 'None'; | ||||||
|  | $lang['contesting_exchange_type_exchange'] = 'Exchange'; | ||||||
|  | $lang['contesting_exchange_type_gridsquare'] = 'Gridsquare'; | ||||||
| $lang['contesting_exchange_type_other'] = 'Anders'; | $lang['contesting_exchange_type_other'] = 'Anders'; | ||||||
|  | $lang['contesting_exchange_type_serial_exchange'] = 'Serial + Exchange'; | ||||||
|  | $lang['contesting_exchange_type_serial_gridsquare'] = 'Serial + Gridsquare'; | ||||||
|  | $lang['contesting_exchange_serial_s'] = 'Serial (S)'; | ||||||
|  | $lang['contesting_exchange_serial_r'] = 'Serial (R)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_s'] = 'Gridsquare (S)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_r'] = 'Gridsquare (R)'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_contest_name'] = 'Contest Naam'; | $lang['contesting_contest_name'] = 'Contest Naam'; | ||||||
| 
 | 
 | ||||||
|  | @ -16,3 +26,7 @@ $lang['contesting_btn_save_qso'] = 'Bewaar QSO'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_title_callsign_suggestions'] = 'Roepnaam suggesties'; | $lang['contesting_title_callsign_suggestions'] = 'Roepnaam suggesties'; | ||||||
| $lang['contesting_title_contest_logbook'] = 'Contest Logboek'; | $lang['contesting_title_contest_logbook'] = 'Contest Logboek'; | ||||||
|  | 
 | ||||||
|  | $lang['contesting_copy_exch_to_dok'] = 'Copy received exchange to DOK field in the database!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -58,6 +58,7 @@ $lang['general_word_lotw'] = 'Logbook of the World'; | ||||||
| $lang['general_word_lotw_short'] = 'LoTW'; | $lang['general_word_lotw_short'] = 'LoTW'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_details'] = 'Details'; | $lang['general_word_details'] = 'Details'; | ||||||
|  | $lang['general_word_qso_data'] = 'QSO Data'; | ||||||
| 
 | 
 | ||||||
| $lang['general_edit_qso'] = 'Wijzig QSO'; | $lang['general_edit_qso'] = 'Wijzig QSO'; | ||||||
| $lang['general_mark_qsl_rx_bureau'] = 'Markeer QSL ontvangen (Bureau)'; | $lang['general_mark_qsl_rx_bureau'] = 'Markeer QSL ontvangen (Bureau)'; | ||||||
|  |  | ||||||
|  | @ -16,4 +16,35 @@ $lang['admin_options'] = 'Options'; | ||||||
| $lang['admin_create_user'] = 'Create user'; | $lang['admin_create_user'] = 'Create user'; | ||||||
| $lang['admin_delete'] = 'Delete'; | $lang['admin_delete'] = 'Delete'; | ||||||
| $lang['admin_edit'] = 'Edit'; | $lang['admin_edit'] = 'Edit'; | ||||||
|  | $lang['admin_save'] = 'Save'; | ||||||
|  | $lang['admin_close'] = 'Close'; | ||||||
| $lang['admin_user_accounts'] = 'User Accounts'; | $lang['admin_user_accounts'] = 'User Accounts'; | ||||||
|  | $lang['admin_danger'] = 'DANGER!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | // Contest Menu
 | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_menu_line_1'] = 'Using the contest list, you can control which Contests are shown when logging QSOs in a contest.'; | ||||||
|  | $lang['admin_contest_menu_line_2'] = 'Active contests will be shown in the Contest Name drop-down, while inactive contests will be hidden and cannot be selected.'; | ||||||
|  | $lang['admin_contest_menu_name'] = 'Name'; | ||||||
|  | $lang['admin_contest_menu_adif'] = 'ADIF Name'; | ||||||
|  | $lang['admin_contest_menu_active'] = 'Active'; | ||||||
|  | $lang['admin_contest_menu_n_active'] = 'Not Active'; | ||||||
|  | $lang['admin_contest_menu_activate'] = 'Activate'; | ||||||
|  | $lang['admin_contest_menu_deactivate'] = 'Deactivate'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_add_contest'] = 'Add a Contest'; | ||||||
|  | $lang["admin_contest_create"] = "Create"; | ||||||
|  | $lang['admin_contest_all_active'] = 'Activate All'; | ||||||
|  | $lang['admin_contest_all_deactive'] = 'Deactivate All'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_name_adif'] = 'Contest ADIF Name'; | ||||||
|  | $lang['admin_contest_name_of_contest'] = 'Name of the Contest'; | ||||||
|  | $lang['admin_contest_name_of_adif'] = 'Name of Contest in ADIF-specification'; | ||||||
|  | $lang['admin_contest_edit_active_hint'] = 'Set to active if to be listed in Contest-list'; | ||||||
|  | $lang['admin_contest_edit_update_contest'] = 'Update Contest'; | ||||||
|  | $lang['admin_contest_deletion_warning'] = 'Warning! Are you sure you want to delete the following contest: '; | ||||||
|  | $lang['admin_contest_active_all_warning'] = 'Warning! Are you sure you want to activate all contests?'; | ||||||
|  | $lang['admin_contest_deactive_all_warning'] = 'Warning! Are you sure you want to deactivate all contests?'; | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -4,10 +4,20 @@ defined('BASEPATH') OR exit('No direct script access allowed'); | ||||||
| 
 | 
 | ||||||
| $lang['contesting_page_title'] = 'Contest Logging'; | $lang['contesting_page_title'] = 'Contest Logging'; | ||||||
| $lang['contesting_button_reset_contest_session'] = 'Start new Contest Session'; | $lang['contesting_button_reset_contest_session'] = 'Start new Contest Session'; | ||||||
|  | $lang['contesting_operator_callsign'] = 'Operator Callsign'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_exchange_type'] = 'Exchange Type'; | $lang['contesting_exchange_type'] = 'Exchange Type'; | ||||||
| $lang['contesting_exchange_type_serial'] = 'Serial'; | $lang['contesting_exchange_type_serial'] = 'Serial'; | ||||||
|  | $lang['contesting_exchange_type_none'] = 'None'; | ||||||
|  | $lang['contesting_exchange_type_exchange'] = 'Exchange'; | ||||||
|  | $lang['contesting_exchange_type_gridsquare'] = 'Gridsquare'; | ||||||
| $lang['contesting_exchange_type_other'] = 'Other'; | $lang['contesting_exchange_type_other'] = 'Other'; | ||||||
|  | $lang['contesting_exchange_type_serial_exchange'] = 'Serial + Exchange'; | ||||||
|  | $lang['contesting_exchange_type_serial_gridsquare'] = 'Serial + Gridsquare'; | ||||||
|  | $lang['contesting_exchange_serial_s'] = 'Serial (S)'; | ||||||
|  | $lang['contesting_exchange_serial_r'] = 'Serial (R)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_s'] = 'Gridsquare (S)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_r'] = 'Gridsquare (R)'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_contest_name'] = 'Contest Name'; | $lang['contesting_contest_name'] = 'Contest Name'; | ||||||
| 
 | 
 | ||||||
|  | @ -16,3 +26,7 @@ $lang['contesting_btn_save_qso'] = 'Save QSO'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_title_callsign_suggestions'] = 'Callsign Suggestions'; | $lang['contesting_title_callsign_suggestions'] = 'Callsign Suggestions'; | ||||||
| $lang['contesting_title_contest_logbook'] = 'Contest Logbook'; | $lang['contesting_title_contest_logbook'] = 'Contest Logbook'; | ||||||
|  | 
 | ||||||
|  | $lang['contesting_copy_exch_to_dok'] = 'Copy received exchange to DOK field in the database!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -58,6 +58,7 @@ $lang['general_word_lotw'] = 'Logbook of the World'; | ||||||
| $lang['general_word_lotw_short'] = 'LoTW'; | $lang['general_word_lotw_short'] = 'LoTW'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_details'] = 'Details'; | $lang['general_word_details'] = 'Details'; | ||||||
|  | $lang['general_word_qso_data'] = 'QSO Data'; | ||||||
| 
 | 
 | ||||||
| $lang['general_edit_qso'] = 'Edit QSO'; | $lang['general_edit_qso'] = 'Edit QSO'; | ||||||
| $lang['general_mark_qsl_rx_bureau'] = 'Mark QSL Received (Bureau)'; | $lang['general_mark_qsl_rx_bureau'] = 'Mark QSL Received (Bureau)'; | ||||||
|  |  | ||||||
|  | @ -16,4 +16,35 @@ $lang['admin_options'] = 'Valinnat'; | ||||||
| $lang['admin_create_user'] = 'Luo käyttäjä'; | $lang['admin_create_user'] = 'Luo käyttäjä'; | ||||||
| $lang['admin_delete'] = 'Poista'; | $lang['admin_delete'] = 'Poista'; | ||||||
| $lang['admin_edit'] = 'Muokkaa'; | $lang['admin_edit'] = 'Muokkaa'; | ||||||
|  | $lang['admin_save'] = 'Save'; | ||||||
|  | $lang['admin_close'] = 'Close'; | ||||||
| $lang['admin_user_accounts'] = 'User Accounts'; | $lang['admin_user_accounts'] = 'User Accounts'; | ||||||
|  | $lang['admin_danger'] = 'DANGER!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | // Contest Menu
 | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_menu_line_1'] = 'Using the contest list, you can control which Contests are shown when logging QSOs in a contest.'; | ||||||
|  | $lang['admin_contest_menu_line_2'] = 'Active contests will be shown in the Contest Name drop-down, while inactive contests will be hidden and cannot be selected.'; | ||||||
|  | $lang['admin_contest_menu_name'] = 'Name'; | ||||||
|  | $lang['admin_contest_menu_adif'] = 'ADIF Name'; | ||||||
|  | $lang['admin_contest_menu_active'] = 'Active'; | ||||||
|  | $lang['admin_contest_menu_n_active'] = 'Not Active'; | ||||||
|  | $lang['admin_contest_menu_activate'] = 'Activate'; | ||||||
|  | $lang['admin_contest_menu_deactivate'] = 'Deactivate'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_add_contest'] = 'Add a Contest'; | ||||||
|  | $lang["admin_contest_create"] = "Create"; | ||||||
|  | $lang['admin_contest_all_active'] = 'Activate All'; | ||||||
|  | $lang['admin_contest_all_deactive'] = 'Deactivate All'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_name_adif'] = 'Contest ADIF Name'; | ||||||
|  | $lang['admin_contest_name_of_contest'] = 'Name of the Contest'; | ||||||
|  | $lang['admin_contest_name_of_adif'] = 'Name of Contest in ADIF-specification'; | ||||||
|  | $lang['admin_contest_edit_active_hint'] = 'Set to active if to be listed in Contest-list'; | ||||||
|  | $lang['admin_contest_edit_update_contest'] = 'Update Contest'; | ||||||
|  | $lang['admin_contest_deletion_warning'] = 'Warning! Are you sure you want to delete the following contest: '; | ||||||
|  | $lang['admin_contest_active_all_warning'] = 'Warning! Are you sure you want to activate all contests?'; | ||||||
|  | $lang['admin_contest_deactive_all_warning'] = 'Warning! Are you sure you want to deactivate all contests?'; | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -4,10 +4,20 @@ defined('BASEPATH') OR exit('No direct script access allowed'); | ||||||
| 
 | 
 | ||||||
| $lang['contesting_page_title'] = 'Kilpailuloki'; | $lang['contesting_page_title'] = 'Kilpailuloki'; | ||||||
| $lang['contesting_button_reset_contest_session'] = 'Nollaa kilpailuloki'; | $lang['contesting_button_reset_contest_session'] = 'Nollaa kilpailuloki'; | ||||||
|  | $lang['contesting_operator_callsign'] = 'Operator Callsign'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_exchange_type'] = 'Annettava sanoma'; | $lang['contesting_exchange_type'] = 'Annettava sanoma'; | ||||||
| $lang['contesting_exchange_type_serial'] = 'Sarjanumero'; | $lang['contesting_exchange_type_serial'] = 'Sarjanumero'; | ||||||
|  | $lang['contesting_exchange_type_none'] = 'None'; | ||||||
|  | $lang['contesting_exchange_type_exchange'] = 'Exchange'; | ||||||
|  | $lang['contesting_exchange_type_gridsquare'] = 'Gridsquare'; | ||||||
| $lang['contesting_exchange_type_other'] = 'Muu'; | $lang['contesting_exchange_type_other'] = 'Muu'; | ||||||
|  | $lang['contesting_exchange_type_serial_exchange'] = 'Serial + Exchange'; | ||||||
|  | $lang['contesting_exchange_type_serial_gridsquare'] = 'Serial + Gridsquare'; | ||||||
|  | $lang['contesting_exchange_serial_s'] = 'Serial (S)'; | ||||||
|  | $lang['contesting_exchange_serial_r'] = 'Serial (R)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_s'] = 'Gridsquare (S)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_r'] = 'Gridsquare (R)'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_contest_name'] = 'Kilpailun nimi'; | $lang['contesting_contest_name'] = 'Kilpailun nimi'; | ||||||
| 
 | 
 | ||||||
|  | @ -16,3 +26,7 @@ $lang['contesting_btn_save_qso'] = 'TALLENNA QSO'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_title_callsign_suggestions'] = 'Ehdotettu kutsu'; | $lang['contesting_title_callsign_suggestions'] = 'Ehdotettu kutsu'; | ||||||
| $lang['contesting_title_contest_logbook'] = 'Kilpailussa pidetyt yhteydet'; | $lang['contesting_title_contest_logbook'] = 'Kilpailussa pidetyt yhteydet'; | ||||||
|  | 
 | ||||||
|  | $lang['contesting_copy_exch_to_dok'] = 'Copy received exchange to DOK field in the database!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -58,6 +58,7 @@ $lang['general_word_lotw'] = 'Logbook of the World'; | ||||||
| $lang['general_word_lotw_short'] = 'LoTW'; | $lang['general_word_lotw_short'] = 'LoTW'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_details'] = 'Details'; | $lang['general_word_details'] = 'Details'; | ||||||
|  | $lang['general_word_qso_data'] = 'QSO Data'; | ||||||
| 
 | 
 | ||||||
| $lang['general_edit_qso'] = 'Muokkaa QSO:a'; | $lang['general_edit_qso'] = 'Muokkaa QSO:a'; | ||||||
| $lang['general_mark_qsl_rx_bureau'] = 'Merkitse QSL vastaanotetuksi (Bureau)'; | $lang['general_mark_qsl_rx_bureau'] = 'Merkitse QSL vastaanotetuksi (Bureau)'; | ||||||
|  |  | ||||||
|  | @ -16,4 +16,35 @@ $lang['admin_options'] = 'Options'; | ||||||
| $lang['admin_create_user'] = 'Creation d\'un utilisateur'; | $lang['admin_create_user'] = 'Creation d\'un utilisateur'; | ||||||
| $lang['admin_delete'] = 'Supprimer'; | $lang['admin_delete'] = 'Supprimer'; | ||||||
| $lang['admin_edit'] = 'Editer'; | $lang['admin_edit'] = 'Editer'; | ||||||
|  | $lang['admin_save'] = 'Save'; | ||||||
|  | $lang['admin_close'] = 'Close'; | ||||||
| $lang['admin_user_accounts'] = 'User Accounts'; | $lang['admin_user_accounts'] = 'User Accounts'; | ||||||
|  | $lang['admin_danger'] = 'DANGER!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | // Contest Menu
 | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_menu_line_1'] = 'Using the contest list, you can control which Contests are shown when logging QSOs in a contest.'; | ||||||
|  | $lang['admin_contest_menu_line_2'] = 'Active contests will be shown in the Contest Name drop-down, while inactive contests will be hidden and cannot be selected.'; | ||||||
|  | $lang['admin_contest_menu_name'] = 'Name'; | ||||||
|  | $lang['admin_contest_menu_adif'] = 'ADIF Name'; | ||||||
|  | $lang['admin_contest_menu_active'] = 'Active'; | ||||||
|  | $lang['admin_contest_menu_n_active'] = 'Not Active'; | ||||||
|  | $lang['admin_contest_menu_activate'] = 'Activate'; | ||||||
|  | $lang['admin_contest_menu_deactivate'] = 'Deactivate'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_add_contest'] = 'Add a Contest'; | ||||||
|  | $lang["admin_contest_create"] = "Create"; | ||||||
|  | $lang['admin_contest_all_active'] = 'Activate All'; | ||||||
|  | $lang['admin_contest_all_deactive'] = 'Deactivate All'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_name_adif'] = 'Contest ADIF Name'; | ||||||
|  | $lang['admin_contest_name_of_contest'] = 'Name of the Contest'; | ||||||
|  | $lang['admin_contest_name_of_adif'] = 'Name of Contest in ADIF-specification'; | ||||||
|  | $lang['admin_contest_edit_active_hint'] = 'Set to active if to be listed in Contest-list'; | ||||||
|  | $lang['admin_contest_edit_update_contest'] = 'Update Contest'; | ||||||
|  | $lang['admin_contest_deletion_warning'] = 'Warning! Are you sure you want to delete the following contest: '; | ||||||
|  | $lang['admin_contest_active_all_warning'] = 'Warning! Are you sure you want to activate all contests?'; | ||||||
|  | $lang['admin_contest_deactive_all_warning'] = 'Warning! Are you sure you want to deactivate all contests?'; | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -4,10 +4,20 @@ defined('BASEPATH') OR exit('No direct script access allowed'); | ||||||
| 
 | 
 | ||||||
| $lang['contesting_page_title'] = 'Logging Contest'; | $lang['contesting_page_title'] = 'Logging Contest'; | ||||||
| $lang['contesting_button_reset_contest_session'] = 'Réinitialiser la session Contest'; | $lang['contesting_button_reset_contest_session'] = 'Réinitialiser la session Contest'; | ||||||
|  | $lang['contesting_operator_callsign'] = 'Operator Callsign'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_exchange_type'] = 'Type d\'échange'; | $lang['contesting_exchange_type'] = 'Type d\'échange'; | ||||||
| $lang['contesting_exchange_type_serial'] = 'Série'; | $lang['contesting_exchange_type_serial'] = 'Série'; | ||||||
|  | $lang['contesting_exchange_type_none'] = 'None'; | ||||||
|  | $lang['contesting_exchange_type_exchange'] = 'Exchange'; | ||||||
|  | $lang['contesting_exchange_type_gridsquare'] = 'Gridsquare'; | ||||||
| $lang['contesting_exchange_type_other'] = 'Autre'; | $lang['contesting_exchange_type_other'] = 'Autre'; | ||||||
|  | $lang['contesting_exchange_type_serial_exchange'] = 'Serial + Exchange'; | ||||||
|  | $lang['contesting_exchange_type_serial_gridsquare'] = 'Serial + Gridsquare'; | ||||||
|  | $lang['contesting_exchange_serial_s'] = 'Serial (S)'; | ||||||
|  | $lang['contesting_exchange_serial_r'] = 'Serial (R)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_s'] = 'Gridsquare (S)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_r'] = 'Gridsquare (R)'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_contest_name'] = 'Nom du Contest'; | $lang['contesting_contest_name'] = 'Nom du Contest'; | ||||||
| 
 | 
 | ||||||
|  | @ -16,3 +26,7 @@ $lang['contesting_btn_save_qso'] = 'Sauvegarder QSO'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_title_callsign_suggestions'] = 'Suggestion d\'indicatif'; | $lang['contesting_title_callsign_suggestions'] = 'Suggestion d\'indicatif'; | ||||||
| $lang['contesting_title_contest_logbook'] = 'Logbook du Contest'; | $lang['contesting_title_contest_logbook'] = 'Logbook du Contest'; | ||||||
|  | 
 | ||||||
|  | $lang['contesting_copy_exch_to_dok'] = 'Copy received exchange to DOK field in the database!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -58,6 +58,7 @@ $lang['general_word_lotw'] = 'Logbook of the World'; | ||||||
| $lang['general_word_lotw_short'] = 'LoTW'; | $lang['general_word_lotw_short'] = 'LoTW'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_details'] = 'Details'; | $lang['general_word_details'] = 'Details'; | ||||||
|  | $lang['general_word_qso_data'] = 'QSO Data'; | ||||||
| 
 | 
 | ||||||
| $lang['general_edit_qso'] = 'Editer QSO'; | $lang['general_edit_qso'] = 'Editer QSO'; | ||||||
| $lang['general_mark_qsl_rx_bureau'] = 'Marquer QSL Reçue (Bureau)'; | $lang['general_mark_qsl_rx_bureau'] = 'Marquer QSL Reçue (Bureau)'; | ||||||
|  |  | ||||||
|  | @ -16,4 +16,35 @@ $lang['admin_options'] = 'Optionen'; | ||||||
| $lang['admin_create_user'] = 'Benutzer anlegen'; | $lang['admin_create_user'] = 'Benutzer anlegen'; | ||||||
| $lang['admin_delete'] = 'Löschen'; | $lang['admin_delete'] = 'Löschen'; | ||||||
| $lang['admin_edit'] = 'Editieren'; | $lang['admin_edit'] = 'Editieren'; | ||||||
|  | $lang['admin_save'] = 'Speichern'; | ||||||
|  | $lang['admin_close'] = 'Schliessen'; | ||||||
| $lang['admin_user_accounts'] = 'Benutzerkonten'; | $lang['admin_user_accounts'] = 'Benutzerkonten'; | ||||||
|  | $lang['admin_danger'] = 'ACHTUNG!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | // Contest Menu
 | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_menu_line_1'] = 'Mit dieser Contest-Liste kannst du steuern, welche Contests im Contest-Logging Fenster angezeigt werden.'; | ||||||
|  | $lang['admin_contest_menu_line_2'] = 'Aktivierte Contests können im Contest-Logging Fenster ausgewählt werden, wohingegen deaktivierte ausgeblendet und somit auch nicht auswählbar gemacht werden.'; | ||||||
|  | $lang['admin_contest_menu_name'] = 'Name'; | ||||||
|  | $lang['admin_contest_menu_adif'] = 'ADIF Name'; | ||||||
|  | $lang['admin_contest_menu_active'] = 'Aktiv'; | ||||||
|  | $lang['admin_contest_menu_n_active'] = 'Nicht Aktiv'; | ||||||
|  | $lang['admin_contest_menu_activate'] = 'Aktiviere'; | ||||||
|  | $lang['admin_contest_menu_deactivate'] = 'Deaktiviere'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_add_contest'] = 'Erstelle einen Contest'; | ||||||
|  | $lang["admin_contest_create"] = "Erstellen"; | ||||||
|  | $lang['admin_contest_all_active'] = 'Aktiviere Alle'; | ||||||
|  | $lang['admin_contest_all_deactive'] = 'Deaktiviere Alle'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_name_adif'] = 'Contest ADIF Name'; | ||||||
|  | $lang['admin_contest_name_of_contest'] = 'Der Name des Contest'; | ||||||
|  | $lang['admin_contest_name_of_adif'] = 'Der Name des Contest in ADIF Spezifikation'; | ||||||
|  | $lang['admin_contest_edit_active_hint'] = 'Wähle "Aktiv" um den Contest in der Contest-Liste anzuzeigen'; | ||||||
|  | $lang['admin_contest_edit_update_contest'] = 'Aktualisiere Contest'; | ||||||
|  | $lang['admin_contest_deletion_warning'] = 'Warnung! Bist du sicher den folgenden Contest zu löschen: '; | ||||||
|  | $lang['admin_contest_active_all_warning'] = 'Warnung! Bist du sicher, dass du ALLE Contests aktivieren willst?'; | ||||||
|  | $lang['admin_contest_deactive_all_warning'] = 'Warnung! Bist du sicher, dass du ALLE Contests deaktivieren willst?'; | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -4,15 +4,29 @@ defined('BASEPATH') OR exit('Direkter Zugriff auf Skripte ist nicht erlaubt'); | ||||||
| 
 | 
 | ||||||
| $lang['contesting_page_title'] = 'Contest-Logging'; | $lang['contesting_page_title'] = 'Contest-Logging'; | ||||||
| $lang['contesting_button_reset_contest_session'] = 'Beginne neue Contest-Sitzung'; | $lang['contesting_button_reset_contest_session'] = 'Beginne neue Contest-Sitzung'; | ||||||
|  | $lang['contesting_operator_callsign'] = 'Operator Rufzeichen'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_exchange_type'] = 'Austauschtyp'; | $lang['contesting_exchange_type'] = 'Austauschtyp'; | ||||||
| $lang['contesting_exchange_type_serial'] = 'Laufende Nummer'; | $lang['contesting_exchange_type_serial'] = '(Lauf)-Nummer'; | ||||||
|  | $lang['contesting_exchange_type_none'] = 'Nichts'; | ||||||
|  | $lang['contesting_exchange_type_exchange'] = 'Exchange'; | ||||||
|  | $lang['contesting_exchange_type_gridsquare'] = 'Planquadrat'; | ||||||
| $lang['contesting_exchange_type_other'] = 'Andere'; | $lang['contesting_exchange_type_other'] = 'Andere'; | ||||||
|  | $lang['contesting_exchange_type_serial_exchange'] = 'Serial + Exchange'; | ||||||
|  | $lang['contesting_exchange_type_serial_gridsquare'] = 'Serial + Planquadrat'; | ||||||
|  | $lang['contesting_exchange_serial_s'] = 'Nummer (S)'; | ||||||
|  | $lang['contesting_exchange_serial_r'] = 'Nummer (R)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_s'] = 'Planquadrat (S)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_r'] = 'Planquadrat (R)'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_contest_name'] = 'Contest-Name'; | $lang['contesting_contest_name'] = 'Contest Name'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_btn_reset_qso'] = 'Setze QSO zurück'; | $lang['contesting_btn_reset_qso'] = 'Setze QSO zurück'; | ||||||
| $lang['contesting_btn_save_qso'] = 'Speichere QSO'; | $lang['contesting_btn_save_qso'] = 'Speichere QSO'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_title_callsign_suggestions'] = 'Rufzeichenvorschläge'; | $lang['contesting_title_callsign_suggestions'] = 'Rufzeichenvorschläge'; | ||||||
| $lang['contesting_title_contest_logbook'] = 'Contest-Logbuch'; | $lang['contesting_title_contest_logbook'] = 'Contest-Logbuch'; | ||||||
|  | 
 | ||||||
|  | $lang['contesting_copy_exch_to_dok'] = 'Kopiere den erhaltenen Exchange in das DOK Feld der Datenbank!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -58,6 +58,7 @@ $lang['general_word_lotw'] = 'Logbook of the World'; | ||||||
| $lang['general_word_lotw_short'] = 'LoTW'; | $lang['general_word_lotw_short'] = 'LoTW'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_details'] = 'Details'; | $lang['general_word_details'] = 'Details'; | ||||||
|  | $lang['general_word_qso_data'] = 'QSO Daten'; | ||||||
| 
 | 
 | ||||||
| $lang['general_edit_qso'] = 'QSO bearbeiten'; | $lang['general_edit_qso'] = 'QSO bearbeiten'; | ||||||
| $lang['general_mark_qsl_rx_bureau'] = 'Markiere QSL erhalten (Büro)'; | $lang['general_mark_qsl_rx_bureau'] = 'Markiere QSL erhalten (Büro)'; | ||||||
|  |  | ||||||
|  | @ -16,4 +16,35 @@ $lang['admin_options'] = 'Options'; | ||||||
| $lang['admin_create_user'] = 'Create user'; | $lang['admin_create_user'] = 'Create user'; | ||||||
| $lang['admin_delete'] = 'Delete'; | $lang['admin_delete'] = 'Delete'; | ||||||
| $lang['admin_edit'] = 'Edit'; | $lang['admin_edit'] = 'Edit'; | ||||||
|  | $lang['admin_save'] = 'Save'; | ||||||
|  | $lang['admin_close'] = 'Close'; | ||||||
| $lang['admin_user_accounts'] = 'User Accounts'; | $lang['admin_user_accounts'] = 'User Accounts'; | ||||||
|  | $lang['admin_danger'] = 'DANGER!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | // Contest Menu
 | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_menu_line_1'] = 'Using the contest list, you can control which Contests are shown when logging QSOs in a contest.'; | ||||||
|  | $lang['admin_contest_menu_line_2'] = 'Active contests will be shown in the Contest Name drop-down, while inactive contests will be hidden and cannot be selected.'; | ||||||
|  | $lang['admin_contest_menu_name'] = 'Name'; | ||||||
|  | $lang['admin_contest_menu_adif'] = 'ADIF Name'; | ||||||
|  | $lang['admin_contest_menu_active'] = 'Active'; | ||||||
|  | $lang['admin_contest_menu_n_active'] = 'Not Active'; | ||||||
|  | $lang['admin_contest_menu_activate'] = 'Activate'; | ||||||
|  | $lang['admin_contest_menu_deactivate'] = 'Deactivate'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_add_contest'] = 'Add a Contest'; | ||||||
|  | $lang["admin_contest_create"] = "Create"; | ||||||
|  | $lang['admin_contest_all_active'] = 'Activate All'; | ||||||
|  | $lang['admin_contest_all_deactive'] = 'Deactivate All'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_name_adif'] = 'Contest ADIF Name'; | ||||||
|  | $lang['admin_contest_name_of_contest'] = 'Name of the Contest'; | ||||||
|  | $lang['admin_contest_name_of_adif'] = 'Name of Contest in ADIF-specification'; | ||||||
|  | $lang['admin_contest_edit_active_hint'] = 'Set to active if to be listed in Contest-list'; | ||||||
|  | $lang['admin_contest_edit_update_contest'] = 'Update Contest'; | ||||||
|  | $lang['admin_contest_deletion_warning'] = 'Warning! Are you sure you want to delete the following contest: '; | ||||||
|  | $lang['admin_contest_active_all_warning'] = 'Warning! Are you sure you want to activate all contests?'; | ||||||
|  | $lang['admin_contest_deactive_all_warning'] = 'Warning! Are you sure you want to deactivate all contests?'; | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -4,10 +4,20 @@ defined('BASEPATH') OR exit('No direct script access allowed'); | ||||||
| 
 | 
 | ||||||
| $lang['contesting_page_title'] = 'Αρχείο διαγωνισμού'; | $lang['contesting_page_title'] = 'Αρχείο διαγωνισμού'; | ||||||
| $lang['contesting_button_reset_contest_session'] = 'Επαναφορά Session διαγωνισμού'; | $lang['contesting_button_reset_contest_session'] = 'Επαναφορά Session διαγωνισμού'; | ||||||
|  | $lang['contesting_operator_callsign'] = 'Operator Callsign'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_exchange_type'] = 'Είδος Ανταλλαγής'; | $lang['contesting_exchange_type'] = 'Είδος Ανταλλαγής'; | ||||||
| $lang['contesting_exchange_type_serial'] = 'Serial'; | $lang['contesting_exchange_type_serial'] = 'Serial'; | ||||||
|  | $lang['contesting_exchange_type_none'] = 'None'; | ||||||
|  | $lang['contesting_exchange_type_exchange'] = 'Exchange'; | ||||||
|  | $lang['contesting_exchange_type_gridsquare'] = 'Gridsquare'; | ||||||
| $lang['contesting_exchange_type_other'] = 'Αλλα'; | $lang['contesting_exchange_type_other'] = 'Αλλα'; | ||||||
|  | $lang['contesting_exchange_type_serial_exchange'] = 'Serial + Exchange'; | ||||||
|  | $lang['contesting_exchange_type_serial_gridsquare'] = 'Serial + Gridsquare'; | ||||||
|  | $lang['contesting_exchange_serial_s'] = 'Serial (S)'; | ||||||
|  | $lang['contesting_exchange_serial_r'] = 'Serial (R)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_s'] = 'Gridsquare (S)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_r'] = 'Gridsquare (R)'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_contest_name'] = 'Ονομα Διαγωνισμού'; | $lang['contesting_contest_name'] = 'Ονομα Διαγωνισμού'; | ||||||
| 
 | 
 | ||||||
|  | @ -16,3 +26,7 @@ $lang['contesting_btn_save_qso'] = 'Aποθήκευση QSO'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_title_callsign_suggestions'] = 'Προτάσεις διακριτικού'; | $lang['contesting_title_callsign_suggestions'] = 'Προτάσεις διακριτικού'; | ||||||
| $lang['contesting_title_contest_logbook'] = 'Αρχείο διαγωνισμού'; | $lang['contesting_title_contest_logbook'] = 'Αρχείο διαγωνισμού'; | ||||||
|  | 
 | ||||||
|  | $lang['contesting_copy_exch_to_dok'] = 'Copy received exchange to DOK field in the database!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -58,6 +58,7 @@ $lang['general_word_lotw'] = 'Logbook of the World'; | ||||||
| $lang['general_word_lotw_short'] = 'LoTW'; | $lang['general_word_lotw_short'] = 'LoTW'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_details'] = 'Details'; | $lang['general_word_details'] = 'Details'; | ||||||
|  | $lang['general_word_qso_data'] = 'QSO Data'; | ||||||
| 
 | 
 | ||||||
| $lang['general_edit_qso'] = 'Επεξεργασία QSO'; | $lang['general_edit_qso'] = 'Επεξεργασία QSO'; | ||||||
| $lang['general_mark_qsl_rx_bureau'] = 'Σημείωση QSL ως Ελήφθη (Bureau)'; | $lang['general_mark_qsl_rx_bureau'] = 'Σημείωση QSL ως Ελήφθη (Bureau)'; | ||||||
|  |  | ||||||
|  | @ -16,4 +16,35 @@ $lang['admin_options'] = 'Options'; | ||||||
| $lang['admin_create_user'] = 'Create user'; | $lang['admin_create_user'] = 'Create user'; | ||||||
| $lang['admin_delete'] = 'Delete'; | $lang['admin_delete'] = 'Delete'; | ||||||
| $lang['admin_edit'] = 'Edit'; | $lang['admin_edit'] = 'Edit'; | ||||||
|  | $lang['admin_save'] = 'Save'; | ||||||
|  | $lang['admin_close'] = 'Close'; | ||||||
| $lang['admin_user_accounts'] = 'User Accounts'; | $lang['admin_user_accounts'] = 'User Accounts'; | ||||||
|  | $lang['admin_danger'] = 'DANGER!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | // Contest Menu
 | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_menu_line_1'] = 'Using the contest list, you can control which Contests are shown when logging QSOs in a contest.'; | ||||||
|  | $lang['admin_contest_menu_line_2'] = 'Active contests will be shown in the Contest Name drop-down, while inactive contests will be hidden and cannot be selected.'; | ||||||
|  | $lang['admin_contest_menu_name'] = 'Name'; | ||||||
|  | $lang['admin_contest_menu_adif'] = 'ADIF Name'; | ||||||
|  | $lang['admin_contest_menu_active'] = 'Active'; | ||||||
|  | $lang['admin_contest_menu_n_active'] = 'Not Active'; | ||||||
|  | $lang['admin_contest_menu_activate'] = 'Activate'; | ||||||
|  | $lang['admin_contest_menu_deactivate'] = 'Deactivate'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_add_contest'] = 'Add a Contest'; | ||||||
|  | $lang["admin_contest_create"] = "Create"; | ||||||
|  | $lang['admin_contest_all_active'] = 'Activate All'; | ||||||
|  | $lang['admin_contest_all_deactive'] = 'Deactivate All'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_name_adif'] = 'Contest ADIF Name'; | ||||||
|  | $lang['admin_contest_name_of_contest'] = 'Name of the Contest'; | ||||||
|  | $lang['admin_contest_name_of_adif'] = 'Name of Contest in ADIF-specification'; | ||||||
|  | $lang['admin_contest_edit_active_hint'] = 'Set to active if to be listed in Contest-list'; | ||||||
|  | $lang['admin_contest_edit_update_contest'] = 'Update Contest'; | ||||||
|  | $lang['admin_contest_deletion_warning'] = 'Warning! Are you sure you want to delete the following contest: '; | ||||||
|  | $lang['admin_contest_active_all_warning'] = 'Warning! Are you sure you want to activate all contests?'; | ||||||
|  | $lang['admin_contest_deactive_all_warning'] = 'Warning! Are you sure you want to deactivate all contests?'; | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -4,10 +4,20 @@ defined('BASEPATH') OR exit('Non è permesso l\'accesso diretto allo script'); | ||||||
| 
 | 
 | ||||||
| $lang['contesting_page_title'] = 'Log per Contest'; | $lang['contesting_page_title'] = 'Log per Contest'; | ||||||
| $lang['contesting_button_reset_contest_session'] = 'Azzera Sessione Contest'; | $lang['contesting_button_reset_contest_session'] = 'Azzera Sessione Contest'; | ||||||
|  | $lang['contesting_operator_callsign'] = 'Operator Callsign'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_exchange_type'] = 'Tipologia Scambio'; | $lang['contesting_exchange_type'] = 'Tipologia Scambio'; | ||||||
| $lang['contesting_exchange_type_serial'] = 'Seriale'; | $lang['contesting_exchange_type_serial'] = 'Seriale'; | ||||||
|  | $lang['contesting_exchange_type_none'] = 'None'; | ||||||
|  | $lang['contesting_exchange_type_exchange'] = 'Exchange'; | ||||||
|  | $lang['contesting_exchange_type_gridsquare'] = 'Gridsquare'; | ||||||
| $lang['contesting_exchange_type_other'] = 'Altro'; | $lang['contesting_exchange_type_other'] = 'Altro'; | ||||||
|  | $lang['contesting_exchange_type_serial_exchange'] = 'Serial + Exchange'; | ||||||
|  | $lang['contesting_exchange_type_serial_gridsquare'] = 'Serial + Gridsquare'; | ||||||
|  | $lang['contesting_exchange_serial_s'] = 'Serial (S)'; | ||||||
|  | $lang['contesting_exchange_serial_r'] = 'Serial (R)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_s'] = 'Gridsquare (S)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_r'] = 'Gridsquare (R)'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_contest_name'] = 'Nome Contest'; | $lang['contesting_contest_name'] = 'Nome Contest'; | ||||||
| 
 | 
 | ||||||
|  | @ -16,3 +26,7 @@ $lang['contesting_btn_save_qso'] = 'Salva QSO'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_title_callsign_suggestions'] = 'Suggerimenti Nominativi'; | $lang['contesting_title_callsign_suggestions'] = 'Suggerimenti Nominativi'; | ||||||
| $lang['contesting_title_contest_logbook'] = 'Log del Contest'; | $lang['contesting_title_contest_logbook'] = 'Log del Contest'; | ||||||
|  | 
 | ||||||
|  | $lang['contesting_copy_exch_to_dok'] = 'Copy received exchange to DOK field in the database!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -58,6 +58,7 @@ $lang['general_word_lotw'] = 'Logbook of the World'; | ||||||
| $lang['general_word_lotw_short'] = 'LoTW'; | $lang['general_word_lotw_short'] = 'LoTW'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_details'] = 'Details'; | $lang['general_word_details'] = 'Details'; | ||||||
|  | $lang['general_word_qso_data'] = 'QSO Data'; | ||||||
| 
 | 
 | ||||||
| $lang['general_edit_qso'] = 'Modifica QSO'; | $lang['general_edit_qso'] = 'Modifica QSO'; | ||||||
| $lang['general_mark_qsl_rx_bureau'] = 'Segna QSL Ricevuta (Bureau)'; | $lang['general_mark_qsl_rx_bureau'] = 'Segna QSL Ricevuta (Bureau)'; | ||||||
|  |  | ||||||
|  | @ -16,4 +16,35 @@ $lang['admin_options'] = 'Options'; | ||||||
| $lang['admin_create_user'] = 'Create user'; | $lang['admin_create_user'] = 'Create user'; | ||||||
| $lang['admin_delete'] = 'Delete'; | $lang['admin_delete'] = 'Delete'; | ||||||
| $lang['admin_edit'] = 'Edit'; | $lang['admin_edit'] = 'Edit'; | ||||||
|  | $lang['admin_save'] = 'Save'; | ||||||
|  | $lang['admin_close'] = 'Close'; | ||||||
| $lang['admin_user_accounts'] = 'User Accounts'; | $lang['admin_user_accounts'] = 'User Accounts'; | ||||||
|  | $lang['admin_danger'] = 'DANGER!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | // Contest Menu
 | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_menu_line_1'] = 'Using the contest list, you can control which Contests are shown when logging QSOs in a contest.'; | ||||||
|  | $lang['admin_contest_menu_line_2'] = 'Active contests will be shown in the Contest Name drop-down, while inactive contests will be hidden and cannot be selected.'; | ||||||
|  | $lang['admin_contest_menu_name'] = 'Name'; | ||||||
|  | $lang['admin_contest_menu_adif'] = 'ADIF Name'; | ||||||
|  | $lang['admin_contest_menu_active'] = 'Active'; | ||||||
|  | $lang['admin_contest_menu_n_active'] = 'Not Active'; | ||||||
|  | $lang['admin_contest_menu_activate'] = 'Activate'; | ||||||
|  | $lang['admin_contest_menu_deactivate'] = 'Deactivate'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_add_contest'] = 'Add a Contest'; | ||||||
|  | $lang["admin_contest_create"] = "Create"; | ||||||
|  | $lang['admin_contest_all_active'] = 'Activate All'; | ||||||
|  | $lang['admin_contest_all_deactive'] = 'Deactivate All'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_name_adif'] = 'Contest ADIF Name'; | ||||||
|  | $lang['admin_contest_name_of_contest'] = 'Name of the Contest'; | ||||||
|  | $lang['admin_contest_name_of_adif'] = 'Name of Contest in ADIF-specification'; | ||||||
|  | $lang['admin_contest_edit_active_hint'] = 'Set to active if to be listed in Contest-list'; | ||||||
|  | $lang['admin_contest_edit_update_contest'] = 'Update Contest'; | ||||||
|  | $lang['admin_contest_deletion_warning'] = 'Warning! Are you sure you want to delete the following contest: '; | ||||||
|  | $lang['admin_contest_active_all_warning'] = 'Warning! Are you sure you want to activate all contests?'; | ||||||
|  | $lang['admin_contest_deactive_all_warning'] = 'Warning! Are you sure you want to deactivate all contests?'; | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -4,10 +4,20 @@ defined('BASEPATH') OR exit('No direct script access allowed'); | ||||||
| 
 | 
 | ||||||
| $lang['contesting_page_title'] = 'Logowanie Zawodów'; | $lang['contesting_page_title'] = 'Logowanie Zawodów'; | ||||||
| $lang['contesting_button_reset_contest_session'] = 'Wyczyść sesje'; | $lang['contesting_button_reset_contest_session'] = 'Wyczyść sesje'; | ||||||
|  | $lang['contesting_operator_callsign'] = 'Operator Callsign'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_exchange_type'] = 'Typ wymiany'; | $lang['contesting_exchange_type'] = 'Typ wymiany'; | ||||||
| $lang['contesting_exchange_type_serial'] = 'Numeracja'; | $lang['contesting_exchange_type_serial'] = 'Numeracja'; | ||||||
|  | $lang['contesting_exchange_type_none'] = 'None'; | ||||||
|  | $lang['contesting_exchange_type_exchange'] = 'Exchange'; | ||||||
|  | $lang['contesting_exchange_type_gridsquare'] = 'Gridsquare'; | ||||||
| $lang['contesting_exchange_type_other'] = 'Inne'; | $lang['contesting_exchange_type_other'] = 'Inne'; | ||||||
|  | $lang['contesting_exchange_type_serial_exchange'] = 'Serial + Exchange'; | ||||||
|  | $lang['contesting_exchange_type_serial_gridsquare'] = 'Serial + Gridsquare'; | ||||||
|  | $lang['contesting_exchange_serial_s'] = 'Serial (S)'; | ||||||
|  | $lang['contesting_exchange_serial_r'] = 'Serial (R)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_s'] = 'Gridsquare (S)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_r'] = 'Gridsquare (R)'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_contest_name'] = 'Nazwa Zawodów'; | $lang['contesting_contest_name'] = 'Nazwa Zawodów'; | ||||||
| 
 | 
 | ||||||
|  | @ -16,3 +26,7 @@ $lang['contesting_btn_save_qso'] = 'Zapisz łączność'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_title_callsign_suggestions'] = 'Podpowiadanie znaków'; | $lang['contesting_title_callsign_suggestions'] = 'Podpowiadanie znaków'; | ||||||
| $lang['contesting_title_contest_logbook'] = 'Log zawodów'; | $lang['contesting_title_contest_logbook'] = 'Log zawodów'; | ||||||
|  | 
 | ||||||
|  | $lang['contesting_copy_exch_to_dok'] = 'Copy received exchange to DOK field in the database!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -58,6 +58,7 @@ $lang['general_mark_qsl_requested'] = 'Zaznacz QSL zgodnie z żądaniem'; | ||||||
| $lang['general_mark_qsl_requested_bureau'] = 'Zaznacz QSL zgodnie z żądaniem (Biuro)'; | $lang['general_mark_qsl_requested_bureau'] = 'Zaznacz QSL zgodnie z żądaniem (Biuro)'; | ||||||
| $lang['general_mark_qsl_requested_direct'] = 'Zaznacz QSL zgodnie z żądaniem (Bezpośredni)'; | $lang['general_mark_qsl_requested_direct'] = 'Zaznacz QSL zgodnie z żądaniem (Bezpośredni)'; | ||||||
| $lang['general_mark_qsl_not_required'] = 'Zaznacz QSLjako niewymagane'; | $lang['general_mark_qsl_not_required'] = 'Zaznacz QSLjako niewymagane'; | ||||||
|  | $lang['general_word_qso_data'] = 'QSO Data'; | ||||||
| 
 | 
 | ||||||
| $lang['general_delete_qso'] = 'Usuń QSO'; | $lang['general_delete_qso'] = 'Usuń QSO'; | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -16,4 +16,35 @@ $lang['admin_options'] = 'Опции'; | ||||||
| $lang['admin_create_user'] = 'Создать пользователя'; | $lang['admin_create_user'] = 'Создать пользователя'; | ||||||
| $lang['admin_delete'] = 'Удалить'; | $lang['admin_delete'] = 'Удалить'; | ||||||
| $lang['admin_edit'] = 'Редактировать'; | $lang['admin_edit'] = 'Редактировать'; | ||||||
|  | $lang['admin_save'] = 'Save'; | ||||||
|  | $lang['admin_close'] = 'Close'; | ||||||
| $lang['admin_user_accounts'] = 'Аккаунты пользователей'; | $lang['admin_user_accounts'] = 'Аккаунты пользователей'; | ||||||
|  | $lang['admin_danger'] = 'DANGER!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | // Contest Menu
 | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_menu_line_1'] = 'Using the contest list, you can control which Contests are shown when logging QSOs in a contest.'; | ||||||
|  | $lang['admin_contest_menu_line_2'] = 'Active contests will be shown in the Contest Name drop-down, while inactive contests will be hidden and cannot be selected.'; | ||||||
|  | $lang['admin_contest_menu_name'] = 'Name'; | ||||||
|  | $lang['admin_contest_menu_adif'] = 'ADIF Name'; | ||||||
|  | $lang['admin_contest_menu_active'] = 'Active'; | ||||||
|  | $lang['admin_contest_menu_n_active'] = 'Not Active'; | ||||||
|  | $lang['admin_contest_menu_activate'] = 'Activate'; | ||||||
|  | $lang['admin_contest_menu_deactivate'] = 'Deactivate'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_add_contest'] = 'Add a Contest'; | ||||||
|  | $lang["admin_contest_create"] = "Create"; | ||||||
|  | $lang['admin_contest_all_active'] = 'Activate All'; | ||||||
|  | $lang['admin_contest_all_deactive'] = 'Deactivate All'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_name_adif'] = 'Contest ADIF Name'; | ||||||
|  | $lang['admin_contest_name_of_contest'] = 'Name of the Contest'; | ||||||
|  | $lang['admin_contest_name_of_adif'] = 'Name of Contest in ADIF-specification'; | ||||||
|  | $lang['admin_contest_edit_active_hint'] = 'Set to active if to be listed in Contest-list'; | ||||||
|  | $lang['admin_contest_edit_update_contest'] = 'Update Contest'; | ||||||
|  | $lang['admin_contest_deletion_warning'] = 'Warning! Are you sure you want to delete the following contest: '; | ||||||
|  | $lang['admin_contest_active_all_warning'] = 'Warning! Are you sure you want to activate all contests?'; | ||||||
|  | $lang['admin_contest_deactive_all_warning'] = 'Warning! Are you sure you want to deactivate all contests?'; | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -4,10 +4,20 @@ defined('BASEPATH') OR exit('No direct script access allowed'); | ||||||
| 
 | 
 | ||||||
| $lang['contesting_page_title'] = 'Журнал соревнований'; | $lang['contesting_page_title'] = 'Журнал соревнований'; | ||||||
| $lang['contesting_button_reset_contest_session'] = 'Сбросить сессию соревнований'; | $lang['contesting_button_reset_contest_session'] = 'Сбросить сессию соревнований'; | ||||||
|  | $lang['contesting_operator_callsign'] = 'Operator Callsign'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_exchange_type'] = 'Тип обмена'; | $lang['contesting_exchange_type'] = 'Тип обмена'; | ||||||
| $lang['contesting_exchange_type_serial'] = 'Последовательный'; | $lang['contesting_exchange_type_serial'] = 'Последовательный'; | ||||||
|  | $lang['contesting_exchange_type_none'] = 'None'; | ||||||
|  | $lang['contesting_exchange_type_exchange'] = 'Exchange'; | ||||||
|  | $lang['contesting_exchange_type_gridsquare'] = 'Gridsquare'; | ||||||
| $lang['contesting_exchange_type_other'] = 'Другой'; | $lang['contesting_exchange_type_other'] = 'Другой'; | ||||||
|  | $lang['contesting_exchange_type_serial_exchange'] = 'Serial + Exchange'; | ||||||
|  | $lang['contesting_exchange_type_serial_gridsquare'] = 'Serial + Gridsquare'; | ||||||
|  | $lang['contesting_exchange_serial_s'] = 'Serial (S)'; | ||||||
|  | $lang['contesting_exchange_serial_r'] = 'Serial (R)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_s'] = 'Gridsquare (S)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_r'] = 'Gridsquare (R)'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_contest_name'] = 'Название соревнований'; | $lang['contesting_contest_name'] = 'Название соревнований'; | ||||||
| 
 | 
 | ||||||
|  | @ -16,3 +26,7 @@ $lang['contesting_btn_save_qso'] = 'Сохранить QSO'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_title_callsign_suggestions'] = 'Предложение позывных'; | $lang['contesting_title_callsign_suggestions'] = 'Предложение позывных'; | ||||||
| $lang['contesting_title_contest_logbook'] = 'Журнал соревнований'; | $lang['contesting_title_contest_logbook'] = 'Журнал соревнований'; | ||||||
|  | 
 | ||||||
|  | $lang['contesting_copy_exch_to_dok'] = 'Copy received exchange to DOK field in the database!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -58,6 +58,7 @@ $lang['general_word_eqslcards'] = 'eQSL'; | ||||||
| $lang['general_word_lotw'] = 'Logbook of the World'; | $lang['general_word_lotw'] = 'Logbook of the World'; | ||||||
| $lang['general_word_lotw_short'] = 'LoTW'; | $lang['general_word_lotw_short'] = 'LoTW'; | ||||||
| 
 | 
 | ||||||
|  | $lang['general_word_qso_data'] = 'QSO Data'; | ||||||
| $lang['general_word_details'] = 'Details'; | $lang['general_word_details'] = 'Details'; | ||||||
| 
 | 
 | ||||||
| $lang['general_edit_qso'] = 'Редактировать QSO'; | $lang['general_edit_qso'] = 'Редактировать QSO'; | ||||||
|  |  | ||||||
|  | @ -16,4 +16,35 @@ $lang['admin_options'] = 'Options'; | ||||||
| $lang['admin_create_user'] = 'Create user'; | $lang['admin_create_user'] = 'Create user'; | ||||||
| $lang['admin_delete'] = 'Delete'; | $lang['admin_delete'] = 'Delete'; | ||||||
| $lang['admin_edit'] = 'Edit'; | $lang['admin_edit'] = 'Edit'; | ||||||
|  | $lang['admin_save'] = 'Save'; | ||||||
|  | $lang['admin_close'] = 'Close'; | ||||||
| $lang['admin_user_accounts'] = 'User Accounts'; | $lang['admin_user_accounts'] = 'User Accounts'; | ||||||
|  | $lang['admin_danger'] = 'DANGER!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | // Contest Menu
 | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_menu_line_1'] = 'Using the contest list, you can control which Contests are shown when logging QSOs in a contest.'; | ||||||
|  | $lang['admin_contest_menu_line_2'] = 'Active contests will be shown in the Contest Name drop-down, while inactive contests will be hidden and cannot be selected.'; | ||||||
|  | $lang['admin_contest_menu_name'] = 'Name'; | ||||||
|  | $lang['admin_contest_menu_adif'] = 'ADIF Name'; | ||||||
|  | $lang['admin_contest_menu_active'] = 'Active'; | ||||||
|  | $lang['admin_contest_menu_n_active'] = 'Not Active'; | ||||||
|  | $lang['admin_contest_menu_activate'] = 'Activate'; | ||||||
|  | $lang['admin_contest_menu_deactivate'] = 'Deactivate'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_add_contest'] = 'Add a Contest'; | ||||||
|  | $lang["admin_contest_create"] = "Create"; | ||||||
|  | $lang['admin_contest_all_active'] = 'Activate All'; | ||||||
|  | $lang['admin_contest_all_deactive'] = 'Deactivate All'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_name_adif'] = 'Contest ADIF Name'; | ||||||
|  | $lang['admin_contest_name_of_contest'] = 'Name of the Contest'; | ||||||
|  | $lang['admin_contest_name_of_adif'] = 'Name of Contest in ADIF-specification'; | ||||||
|  | $lang['admin_contest_edit_active_hint'] = 'Set to active if to be listed in Contest-list'; | ||||||
|  | $lang['admin_contest_edit_update_contest'] = 'Update Contest'; | ||||||
|  | $lang['admin_contest_deletion_warning'] = 'Warning! Are you sure you want to delete the following contest: '; | ||||||
|  | $lang['admin_contest_active_all_warning'] = 'Warning! Are you sure you want to activate all contests?'; | ||||||
|  | $lang['admin_contest_deactive_all_warning'] = 'Warning! Are you sure you want to deactivate all contests?'; | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -4,10 +4,20 @@ defined('BASEPATH') OR exit('Acceso directo a los scripts restringido'); | ||||||
| 
 | 
 | ||||||
| $lang['contesting_page_title'] = 'Registro de concurso'; | $lang['contesting_page_title'] = 'Registro de concurso'; | ||||||
| $lang['contesting_button_reset_contest_session'] = 'Resetar la sesión del concurso'; | $lang['contesting_button_reset_contest_session'] = 'Resetar la sesión del concurso'; | ||||||
|  | $lang['contesting_operator_callsign'] = 'Operator Callsign'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_exchange_type'] = 'Tipo de intercambio'; | $lang['contesting_exchange_type'] = 'Tipo de intercambio'; | ||||||
| $lang['contesting_exchange_type_serial'] = 'Serial'; | $lang['contesting_exchange_type_serial'] = 'Serial'; | ||||||
|  | $lang['contesting_exchange_type_none'] = 'None'; | ||||||
|  | $lang['contesting_exchange_type_exchange'] = 'Exchange'; | ||||||
|  | $lang['contesting_exchange_type_gridsquare'] = 'Gridsquare'; | ||||||
| $lang['contesting_exchange_type_other'] = 'Other'; | $lang['contesting_exchange_type_other'] = 'Other'; | ||||||
|  | $lang['contesting_exchange_type_serial_exchange'] = 'Serial + Exchange'; | ||||||
|  | $lang['contesting_exchange_type_serial_gridsquare'] = 'Serial + Gridsquare'; | ||||||
|  | $lang['contesting_exchange_serial_s'] = 'Serial (S)'; | ||||||
|  | $lang['contesting_exchange_serial_r'] = 'Serial (R)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_s'] = 'Gridsquare (S)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_r'] = 'Gridsquare (R)'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_contest_name'] = 'Nombre del concurso'; | $lang['contesting_contest_name'] = 'Nombre del concurso'; | ||||||
| 
 | 
 | ||||||
|  | @ -16,3 +26,7 @@ $lang['contesting_btn_save_qso'] = 'Guardar QSO'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_title_callsign_suggestions'] = 'Indicativos sugeridos'; | $lang['contesting_title_callsign_suggestions'] = 'Indicativos sugeridos'; | ||||||
| $lang['contesting_title_contest_logbook'] = 'Logbook del concurso'; | $lang['contesting_title_contest_logbook'] = 'Logbook del concurso'; | ||||||
|  | 
 | ||||||
|  | $lang['contesting_copy_exch_to_dok'] = 'Copy received exchange to DOK field in the database!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -58,6 +58,7 @@ $lang['general_word_lotw'] = 'Logbook of the World'; | ||||||
| $lang['general_word_lotw_short'] = 'LoTW'; | $lang['general_word_lotw_short'] = 'LoTW'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_details'] = 'Details'; | $lang['general_word_details'] = 'Details'; | ||||||
|  | $lang['general_word_qso_data'] = 'QSO Data'; | ||||||
| 
 | 
 | ||||||
| $lang['general_edit_qso'] = 'Editar QSO'; | $lang['general_edit_qso'] = 'Editar QSO'; | ||||||
| $lang['general_mark_qsl_rx_bureau'] = 'Marcar QSL Recibida (Buró)'; | $lang['general_mark_qsl_rx_bureau'] = 'Marcar QSL Recibida (Buró)'; | ||||||
|  |  | ||||||
|  | @ -16,4 +16,35 @@ $lang['admin_options'] = 'Alternativ'; | ||||||
| $lang['admin_create_user'] = 'Skapa användare'; | $lang['admin_create_user'] = 'Skapa användare'; | ||||||
| $lang['admin_delete'] = 'Radera'; | $lang['admin_delete'] = 'Radera'; | ||||||
| $lang['admin_edit'] = 'Redigera'; | $lang['admin_edit'] = 'Redigera'; | ||||||
|  | $lang['admin_save'] = 'Save'; | ||||||
|  | $lang['admin_close'] = 'Close'; | ||||||
| $lang['admin_user_accounts'] = 'User Accounts'; | $lang['admin_user_accounts'] = 'User Accounts'; | ||||||
|  | $lang['admin_danger'] = 'DANGER!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | // Contest Menu
 | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_menu_line_1'] = 'Using the contest list, you can control which Contests are shown when logging QSOs in a contest.'; | ||||||
|  | $lang['admin_contest_menu_line_2'] = 'Active contests will be shown in the Contest Name drop-down, while inactive contests will be hidden and cannot be selected.'; | ||||||
|  | $lang['admin_contest_menu_name'] = 'Name'; | ||||||
|  | $lang['admin_contest_menu_adif'] = 'ADIF Name'; | ||||||
|  | $lang['admin_contest_menu_active'] = 'Active'; | ||||||
|  | $lang['admin_contest_menu_n_active'] = 'Not Active'; | ||||||
|  | $lang['admin_contest_menu_activate'] = 'Activate'; | ||||||
|  | $lang['admin_contest_menu_deactivate'] = 'Deactivate'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_add_contest'] = 'Add a Contest'; | ||||||
|  | $lang["admin_contest_create"] = "Create"; | ||||||
|  | $lang['admin_contest_all_active'] = 'Activate All'; | ||||||
|  | $lang['admin_contest_all_deactive'] = 'Deactivate All'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_name_adif'] = 'Contest ADIF Name'; | ||||||
|  | $lang['admin_contest_name_of_contest'] = 'Name of the Contest'; | ||||||
|  | $lang['admin_contest_name_of_adif'] = 'Name of Contest in ADIF-specification'; | ||||||
|  | $lang['admin_contest_edit_active_hint'] = 'Set to active if to be listed in Contest-list'; | ||||||
|  | $lang['admin_contest_edit_update_contest'] = 'Update Contest'; | ||||||
|  | $lang['admin_contest_deletion_warning'] = 'Warning! Are you sure you want to delete the following contest: '; | ||||||
|  | $lang['admin_contest_active_all_warning'] = 'Warning! Are you sure you want to activate all contests?'; | ||||||
|  | $lang['admin_contest_deactive_all_warning'] = 'Warning! Are you sure you want to deactivate all contests?'; | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -4,10 +4,20 @@ defined('BASEPATH') OR exit('No direct script access allowed'); | ||||||
| 
 | 
 | ||||||
| $lang['contesting_page_title'] = 'Contest-loggning'; | $lang['contesting_page_title'] = 'Contest-loggning'; | ||||||
| $lang['contesting_button_reset_contest_session'] = 'Nollställ denna contest-session'; | $lang['contesting_button_reset_contest_session'] = 'Nollställ denna contest-session'; | ||||||
|  | $lang['contesting_operator_callsign'] = 'Operator Callsign'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_exchange_type'] = 'Exchange-typ'; | $lang['contesting_exchange_type'] = 'Exchange-typ'; | ||||||
| $lang['contesting_exchange_type_serial'] = 'Seriell'; | $lang['contesting_exchange_type_serial'] = 'Seriell'; | ||||||
|  | $lang['contesting_exchange_type_none'] = 'None'; | ||||||
|  | $lang['contesting_exchange_type_exchange'] = 'Exchange'; | ||||||
|  | $lang['contesting_exchange_type_gridsquare'] = 'Gridsquare'; | ||||||
| $lang['contesting_exchange_type_other'] = 'Annat'; | $lang['contesting_exchange_type_other'] = 'Annat'; | ||||||
|  | $lang['contesting_exchange_type_serial_exchange'] = 'Serial + Exchange'; | ||||||
|  | $lang['contesting_exchange_type_serial_gridsquare'] = 'Serial + Gridsquare'; | ||||||
|  | $lang['contesting_exchange_serial_s'] = 'Serial (S)'; | ||||||
|  | $lang['contesting_exchange_serial_r'] = 'Serial (R)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_s'] = 'Gridsquare (S)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_r'] = 'Gridsquare (R)'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_contest_name'] = 'Contest-namn'; | $lang['contesting_contest_name'] = 'Contest-namn'; | ||||||
| 
 | 
 | ||||||
|  | @ -16,3 +26,7 @@ $lang['contesting_btn_save_qso'] = 'Spara QSO'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_title_callsign_suggestions'] = 'Signal-förslag'; | $lang['contesting_title_callsign_suggestions'] = 'Signal-förslag'; | ||||||
| $lang['contesting_title_contest_logbook'] = 'Contest loggbok'; | $lang['contesting_title_contest_logbook'] = 'Contest loggbok'; | ||||||
|  | 
 | ||||||
|  | $lang['contesting_copy_exch_to_dok'] = 'Copy received exchange to DOK field in the database!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -58,6 +58,7 @@ $lang['general_word_lotw'] = 'Logbook of the World'; | ||||||
| $lang['general_word_lotw_short'] = 'LoTW'; | $lang['general_word_lotw_short'] = 'LoTW'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_details'] = 'Details'; | $lang['general_word_details'] = 'Details'; | ||||||
|  | $lang['general_word_qso_data'] = 'QSO Data'; | ||||||
| 
 | 
 | ||||||
| $lang['general_edit_qso'] = 'Redigera QSO'; | $lang['general_edit_qso'] = 'Redigera QSO'; | ||||||
| $lang['general_mark_qsl_rx_bureau'] = 'Ange QSL mottagen (Byrå)'; | $lang['general_mark_qsl_rx_bureau'] = 'Ange QSL mottagen (Byrå)'; | ||||||
|  |  | ||||||
|  | @ -16,4 +16,35 @@ $lang['admin_options'] = 'Options'; | ||||||
| $lang['admin_create_user'] = 'Create user'; | $lang['admin_create_user'] = 'Create user'; | ||||||
| $lang['admin_delete'] = 'Delete'; | $lang['admin_delete'] = 'Delete'; | ||||||
| $lang['admin_edit'] = 'Edit'; | $lang['admin_edit'] = 'Edit'; | ||||||
|  | $lang['admin_save'] = 'Save'; | ||||||
|  | $lang['admin_close'] = 'Close'; | ||||||
| $lang['admin_user_accounts'] = 'User Accounts'; | $lang['admin_user_accounts'] = 'User Accounts'; | ||||||
|  | $lang['admin_danger'] = 'DANGER!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | // Contest Menu
 | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_menu_line_1'] = 'Using the contest list, you can control which Contests are shown when logging QSOs in a contest.'; | ||||||
|  | $lang['admin_contest_menu_line_2'] = 'Active contests will be shown in the Contest Name drop-down, while inactive contests will be hidden and cannot be selected.'; | ||||||
|  | $lang['admin_contest_menu_name'] = 'Name'; | ||||||
|  | $lang['admin_contest_menu_adif'] = 'ADIF Name'; | ||||||
|  | $lang['admin_contest_menu_active'] = 'Active'; | ||||||
|  | $lang['admin_contest_menu_n_active'] = 'Not Active'; | ||||||
|  | $lang['admin_contest_menu_activate'] = 'Activate'; | ||||||
|  | $lang['admin_contest_menu_deactivate'] = 'Deactivate'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_add_contest'] = 'Add a Contest'; | ||||||
|  | $lang["admin_contest_create"] = "Create"; | ||||||
|  | $lang['admin_contest_all_active'] = 'Activate All'; | ||||||
|  | $lang['admin_contest_all_deactive'] = 'Deactivate All'; | ||||||
|  | 
 | ||||||
|  | $lang['admin_contest_name_adif'] = 'Contest ADIF Name'; | ||||||
|  | $lang['admin_contest_name_of_contest'] = 'Name of the Contest'; | ||||||
|  | $lang['admin_contest_name_of_adif'] = 'Name of Contest in ADIF-specification'; | ||||||
|  | $lang['admin_contest_edit_active_hint'] = 'Set to active if to be listed in Contest-list'; | ||||||
|  | $lang['admin_contest_edit_update_contest'] = 'Update Contest'; | ||||||
|  | $lang['admin_contest_deletion_warning'] = 'Warning! Are you sure you want to delete the following contest: '; | ||||||
|  | $lang['admin_contest_active_all_warning'] = 'Warning! Are you sure you want to activate all contests?'; | ||||||
|  | $lang['admin_contest_deactive_all_warning'] = 'Warning! Are you sure you want to deactivate all contests?'; | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -4,10 +4,20 @@ defined('BASEPATH') OR exit('Doğrudan komut dosyası erişimine izin verilmez') | ||||||
| 
 | 
 | ||||||
| $lang['contesting_page_title'] = 'Contest Logging'; | $lang['contesting_page_title'] = 'Contest Logging'; | ||||||
| $lang['contesting_button_reset_contest_session'] = 'Yarışma oturumunu baştan başlat'; | $lang['contesting_button_reset_contest_session'] = 'Yarışma oturumunu baştan başlat'; | ||||||
|  | $lang['contesting_operator_callsign'] = 'Operator Callsign'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_exchange_type'] = 'Haberleşme Tipi'; | $lang['contesting_exchange_type'] = 'Haberleşme Tipi'; | ||||||
| $lang['contesting_exchange_type_serial'] = 'Seri numarası'; | $lang['contesting_exchange_type_serial'] = 'Seri numarası'; | ||||||
|  | $lang['contesting_exchange_type_none'] = 'None'; | ||||||
|  | $lang['contesting_exchange_type_exchange'] = 'Exchange'; | ||||||
|  | $lang['contesting_exchange_type_gridsquare'] = 'Gridsquare'; | ||||||
| $lang['contesting_exchange_type_other'] = 'Diğer'; | $lang['contesting_exchange_type_other'] = 'Diğer'; | ||||||
|  | $lang['contesting_exchange_type_serial_exchange'] = 'Serial + Exchange'; | ||||||
|  | $lang['contesting_exchange_type_serial_gridsquare'] = 'Serial + Gridsquare'; | ||||||
|  | $lang['contesting_exchange_serial_s'] = 'Serial (S)'; | ||||||
|  | $lang['contesting_exchange_serial_r'] = 'Serial (R)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_s'] = 'Gridsquare (S)'; | ||||||
|  | $lang['contesting_exchange_gridsquare_r'] = 'Gridsquare (R)'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_contest_name'] = 'Yarışma İsmi'; | $lang['contesting_contest_name'] = 'Yarışma İsmi'; | ||||||
| 
 | 
 | ||||||
|  | @ -16,3 +26,7 @@ $lang['contesting_btn_save_qso'] = 'QSO\'yu kaydet'; | ||||||
| 
 | 
 | ||||||
| $lang['contesting_title_callsign_suggestions'] = 'Çağrı Kodu Önerileri'; | $lang['contesting_title_callsign_suggestions'] = 'Çağrı Kodu Önerileri'; | ||||||
| $lang['contesting_title_contest_logbook'] = 'Yarışma kayıt defteri'; | $lang['contesting_title_contest_logbook'] = 'Yarışma kayıt defteri'; | ||||||
|  | 
 | ||||||
|  | $lang['contesting_copy_exch_to_dok'] = 'Copy received exchange to DOK field in the database!'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |  | ||||||
|  | @ -58,6 +58,7 @@ $lang['general_word_lotw'] = 'Logbook of the World'; | ||||||
| $lang['general_word_lotw_short'] = 'LoTW'; | $lang['general_word_lotw_short'] = 'LoTW'; | ||||||
| 
 | 
 | ||||||
| $lang['general_word_details'] = 'Details'; | $lang['general_word_details'] = 'Details'; | ||||||
|  | $lang['general_word_qso_data'] = 'QSO Data'; | ||||||
| 
 | 
 | ||||||
| $lang['general_edit_qso'] = 'QSO değiştirme'; | $lang['general_edit_qso'] = 'QSO değiştirme'; | ||||||
| $lang['general_mark_qsl_rx_bureau'] = 'QSL\'i alındı Olarak İşaretle (Ofis)'; | $lang['general_mark_qsl_rx_bureau'] = 'QSL\'i alındı Olarak İşaretle (Ofis)'; | ||||||
|  |  | ||||||
|  | @ -11,23 +11,20 @@ | ||||||
| 	<h2><?php echo $page_title; ?></h2>
 | 	<h2><?php echo $page_title; ?></h2>
 | ||||||
| 
 | 
 | ||||||
| 	<div class="card"> | 	<div class="card"> | ||||||
| 		<div class="card-header"> |  | ||||||
| 			Contests |  | ||||||
| 		</div> |  | ||||||
| 		<div class="card-body"> | 		<div class="card-body"> | ||||||
| 			<p class="card-text"> | 			<p class="card-text"> | ||||||
| 				Using the contest list, you can control which Contests are shown when logging QSOs in a contest. | 				<?php echo lang('admin_contest_menu_line_1'); ?>
 | ||||||
| 			</p> | 			</p> | ||||||
| 			<p class="card-text"> | 			<p class="card-text"> | ||||||
| 				Active contests will be shown in the Contest Name drop-down, while inactive contests will be hidden and cannot be selected. | 				<?php echo lang('admin_contest_menu_line_2'); ?>
 | ||||||
| 			</p> | 			</p> | ||||||
| 			<div class="table-responsive"> | 			<div class="table-responsive"> | ||||||
| 				<table style="width:100%" class="contesttable table table-sm table-striped"> | 				<table style="width:100%" class="contesttable table table-sm table-striped"> | ||||||
| 					<thead> | 					<thead> | ||||||
| 					<tr> | 					<tr> | ||||||
| 						<th scope="col">Name</th> | 						<th scope="col"><?php echo lang('admin_contest_menu_name'); ?></th>
 | ||||||
| 						<th scope="col">Adif mode</th> | 						<th scope="col"><?php echo lang('admin_contest_menu_adif'); ?></th>
 | ||||||
| 						<th scope="col">Active</th> | 						<th scope="col"><?php echo lang('admin_contest_menu_active'); ?></th>
 | ||||||
| 						<th scope="col"></th> | 						<th scope="col"></th> | ||||||
| 						<th scope="col"></th> | 						<th scope="col"></th> | ||||||
| 						<th scope="col"></th> | 						<th scope="col"></th> | ||||||
|  | @ -38,19 +35,31 @@ | ||||||
| 						<tr> | 						<tr> | ||||||
| 							<td><?php echo $row['name'];?></td>
 | 							<td><?php echo $row['name'];?></td>
 | ||||||
| 							<td><?php echo $row['adifname'];?></td>
 | 							<td><?php echo $row['adifname'];?></td>
 | ||||||
| 							<td class='contest_<?php echo $row['id'] ?>'><?php if ($row['active'] == 1) { echo "active";} else { echo "not active";};?></td>
 | 							<script> | ||||||
|  | 								var lang_admin_contest_menu_n_active = '<?php echo lang('admin_contest_menu_n_active'); ?>'; | ||||||
|  | 								var lang_admin_contest_menu_activate = '<?php echo lang('admin_contest_menu_activate'); ?>'; | ||||||
|  | 								var lang_admin_contest_menu_active = '<?php echo lang('admin_contest_menu_active'); ?>'; | ||||||
|  | 								var lang_admin_contest_menu_deactivate = '<?php echo lang('admin_contest_menu_deactivate'); ?>'; | ||||||
|  | 							</script> | ||||||
|  | 							<td class='contest_<?php echo $row['id'] ?>'><?php if ($row['active'] == 1) { echo lang('admin_contest_menu_active');} else { echo lang('admin_contest_menu_n_active');};?></td>
 | ||||||
| 							<td style="text-align: center"> | 							<td style="text-align: center"> | ||||||
| 								<?php if ($row['active'] == 1) { | 								<?php if ($row['active'] == 1) { | ||||||
| 									echo "<button onclick='javascript:deactivateContest(". $row['id'] . ")' class='btn_" . $row['id'] . " btn btn-secondary btn-sm'>Deactivate</button>"; | 									echo "<button onclick='javascript:deactivateContest(". $row['id'] . ")' class='btn_" . $row['id'] . " btn btn-secondary btn-sm'>" . lang('admin_contest_menu_deactivate') . "</button>"; | ||||||
| 								} else { | 								} else { | ||||||
| 									echo "<button onclick='javascript:activateContest(". $row['id'] . ")' class='btn_" . $row['id'] . " btn btn-primary btn-sm'>Activate</button>"; | 									echo "<button onclick='javascript:activateContest(". $row['id'] . ")' class='btn_" . $row['id'] . " btn btn-secondary btn-sm'>" . lang('admin_contest_menu_activate') . "</button>"; | ||||||
| 								};?>
 | 								};?>
 | ||||||
| 							</td> | 							</td> | ||||||
| 							<td> | 							<td> | ||||||
| 								<a href="<?php echo site_url('contesting/edit')."/".$row['id']; ?>" class="btn btn-outline-primary btn-sm"><i class="fas fa-edit"></i> Edit</a> | 								<script> | ||||||
|  | 									var lang_admin_danger = '<?php echo lang('admin_danger'); ?>'; | ||||||
|  | 									var lang_admin_contest_deletion_warning = '<?php echo lang('admin_contest_deletion_warning'); ?>'; | ||||||
|  | 									var lang_admin_contest_active_all_warning = '<?php echo lang('admin_contest_active_all_warning'); ?>'; | ||||||
|  | 									var lang_admin_contest_deactive_all_warning = '<?php echo lang('admin_contest_deactive_all_warning'); ?>'; | ||||||
|  | 								</script> | ||||||
|  | 								<a href="<?php echo site_url('contesting/edit')."/".$row['id']; ?>" class="btn btn-outline-primary btn-sm"><i class="fas fa-edit"></i> <?php echo lang('admin_edit'); ?></a>
 | ||||||
| 							</td> | 							</td> | ||||||
| 							<td> | 							<td> | ||||||
| 								<a href="javascript:deleteContest('<?php echo $row['id']; ?>', '<?php echo $row['name']; ?>');" class="btn btn-danger btn-sm" ><i class="fas fa-trash-alt"></i> Delete</a> | 								<a href="javascript:deleteContest('<?php echo $row['id']; ?>', '<?php echo $row['name']; ?>');" class="btn btn-danger btn-sm" ><i class="fas fa-trash-alt"></i> <?php echo lang('admin_delete'); ?></a>
 | ||||||
| 							</td> | 							</td> | ||||||
| 						</tr> | 						</tr> | ||||||
| 
 | 
 | ||||||
|  | @ -60,9 +69,13 @@ | ||||||
| 			</div> | 			</div> | ||||||
| 			<br/> | 			<br/> | ||||||
| 			<p> | 			<p> | ||||||
| 				<button onclick="createContestDialog();" class="btn btn-primary btn-sm"><i class="fas fa-plus"></i> Add a Contest</button> | 				<script> | ||||||
| 				<button onclick="activateAllContests();" class="btn btn-primary btn-sm">Activate All</button> | 					var lang_admin_contest_add_contest = '<?php echo lang('admin_contest_add_contest'); ?>'; | ||||||
| 				<button onclick="deactivateAllContests();" class="btn btn-primary btn-sm">Deactivate All </button> | 					var lang_admin_close = '<?php echo lang('admin_close'); ?>' | ||||||
|  | 				</script> | ||||||
|  | 				<button onclick="createContestDialog();" class="btn btn-primary btn-sm"><i class="fas fa-plus"></i> <?php echo lang('admin_contest_add_contest'); ?></button>
 | ||||||
|  | 				<button onclick="activateAllContests();" class="btn btn-primary btn-sm"><?php echo lang('admin_contest_all_active'); ?></button>
 | ||||||
|  | 				<button onclick="deactivateAllContests();" class="btn btn-primary btn-sm"><?php echo lang('admin_contest_all_deactive'); ?></button>
 | ||||||
| 			</p> | 			</p> | ||||||
| 		</div> | 		</div> | ||||||
| 	</div> | 	</div> | ||||||
|  |  | ||||||
|  | @ -21,18 +21,18 @@ | ||||||
| 
 | 
 | ||||||
| 		<form> | 		<form> | ||||||
| 		<div class="form-group"> | 		<div class="form-group"> | ||||||
| 		    <label for="contestInput">Contest Name</label> | 		    <label for="contestInput"><?php echo lang('admin_contest_menu_name'); ?></label>
 | ||||||
| 		    <input type="text" class="form-control" name="contestname" id="contestInput" aria-describedby="contestInputHelp" required> | 		    <input type="text" class="form-control" name="contestname" id="contestInput" aria-describedby="contestInputHelp" required> | ||||||
| 		    <small id="contestInputHelp" class="form-text text-muted">Name of Contest</small> | 		    <small id="contestInputHelp" class="form-text text-muted"><?php echo lang('admin_contest_name_of_contest'); ?></small>
 | ||||||
| 		  </div> | 		  </div> | ||||||
| 
 | 
 | ||||||
| 		  <div class="form-group"> | 		  <div class="form-group"> | ||||||
| 		    <label for="adifcontestInput">Contest ADIF Name</label> | 		    <label for="adifcontestInput"><?php echo lang('admin_contest_menu_adif'); ?></label>
 | ||||||
| 		    <input type="text" class="form-control" name="adifcontestname" id="adifcontestInput" aria-describedby="adifcontestInputHelp"> | 		    <input type="text" class="form-control" name="adifcontestname" id="adifcontestInput" aria-describedby="adifcontestInputHelp"> | ||||||
| 		    <small id="adifcontestInputHelp" class="form-text text-muted">Name of Contest in ADIF-specification</small> | 		    <small id="adifcontestInputHelp" class="form-text text-muted"><?php echo lang('admin_contest_name_of_adif'); ?></small>
 | ||||||
| 		  </div> | 		  </div> | ||||||
| 
 | 
 | ||||||
| 			<button type="button" onclick="createContest(this.form);" class="btn btn-primary btn-sm"><i class="fas fa-plus-square"></i> Create Contest</button> | 			<button type="button" onclick="createContest(this.form);" class="btn btn-primary btn-sm"><i class="fas fa-plus-square"></i> <?php echo lang('admin_contest_create'); ?></button>
 | ||||||
| 
 | 
 | ||||||
| 		</form> | 		</form> | ||||||
| </div> | </div> | ||||||
|  |  | ||||||
|  | @ -28,29 +28,31 @@ | ||||||
| 
 | 
 | ||||||
| 			<form method="post" action="<?php echo site_url('contesting/edit/'); ?><?php echo $contest->id; ?>" name="edit_contest"> | 			<form method="post" action="<?php echo site_url('contesting/edit/'); ?><?php echo $contest->id; ?>" name="edit_contest"> | ||||||
| 				<div class="form-group"> | 				<div class="form-group"> | ||||||
| 					<label for="contestnameInput">Contest Name</label> | 					<label for="contestnameInput"><?php echo lang('contesting_contest_name'); ?></label>
 | ||||||
| 					<input type="text" class="form-control" name="name" id="nameInput" aria-describedby="contestnameInputHelp" value="<?php if(set_value('name') != "") { echo set_value('name'); } else { echo $contest->name; } ?>" required> | 					<input type="text" class="form-control" name="name" id="nameInput" aria-describedby="contestnameInputHelp" value="<?php if(set_value('name') != "") { echo set_value('name'); } else { echo $contest->name; } ?>" required> | ||||||
| 					<small id="contestnameInputHelp" class="form-text text-muted">Name of Contest</small> | 					<small id="contestnameInputHelp" class="form-text text-muted"><?php echo lang('admin_contest_name_of_contest'); ?></small>
 | ||||||
| 				</div> | 				</div> | ||||||
| 
 | 
 | ||||||
| 				<div class="form-group"> | 				<div class="form-group"> | ||||||
| 					<label for="adifnameInput">ADIF Contest Name</label> | 					<label for="adifnameInput"><?php echo lang('admin_contest_name_adif'); ?></label>
 | ||||||
| 					<input type="text" class="form-control" name="adifname" id="adifnameInput" aria-describedby="adifnameInputHelp" value="<?php if(set_value('adifname') != "") { echo set_value('adifname'); } else { echo $contest->adifname; } ?>"> | 					<input type="text" class="form-control" name="adifname" id="adifnameInput" aria-describedby="adifnameInputHelp" value="<?php if(set_value('adifname') != "") { echo set_value('adifname'); } else { echo $contest->adifname; } ?>"> | ||||||
| 					<small id="adifnameInputHelp" class="form-text text-muted">Name of Contest in ADIF-specification</small> | 					<small id="adifnameInputHelp" class="form-text text-muted"><?php echo lang('admin_contest_name_of_adif'); ?></small>
 | ||||||
| 				</div> | 				</div> | ||||||
| 
 | 
 | ||||||
| 				<div class="form-group"> | 				<div class="form-group"> | ||||||
| 					<label for="activeInput">Active</label> | 					<label for="activeInput"><?php echo lang('admin_contest_menu_active'); ?></label>
 | ||||||
| 					<select id="activeInput" class="form-control mode form-control-sm" name="active"> | 					<select id="activeInput" class="form-control mode form-control-sm" name="active"> | ||||||
| 						<?php |         				<option value="1" <?php echo $contest->active == 1 ? "selected=\"selected\"" : ""; ?>>
 | ||||||
| 						printf("<option value=\"1\" %s>active</option>", $contest->active==1?"selected=\"selected\"":""); |             				<?php echo lang('admin_contest_menu_active'); ?>
 | ||||||
| 						printf("<option value=\"0\" %s>not active</option>", $contest->active==0?"selected=\"selected\"":""); |         				</option> | ||||||
| 						?>
 |         				<option value="0" <?php echo $contest->active == 0 ? "selected=\"selected\"" : ""; ?>>
 | ||||||
|  |             				<?php echo lang('admin_contest_menu_n_active'); ?>
 | ||||||
|  |         				</option> | ||||||
|     				</select> |     				</select> | ||||||
| 					<small id="activeInputHelp" class="form-text text-muted">Set to active if to be listed in Contest-list</small> | 					<small id="activeInputHelp" class="form-text text-muted"><?php echo lang('admin_contest_edit_active_hint'); ?></small>
 | ||||||
| 				</div> | 				</div> | ||||||
| 
 | 
 | ||||||
| 				<button type="submit" class="btn btn-primary btn-sm"><i class="fas fa-plus-square"></i> Update Contest</button> | 				<button type="submit" class="btn btn-primary btn-sm"><i class="fas fa-plus-square"></i> <?php echo lang('admin_save'); ?></button>
 | ||||||
| 
 | 
 | ||||||
| 			</form> | 			</form> | ||||||
| 		</div> | 		</div> | ||||||
|  |  | ||||||
|  | @ -12,12 +12,12 @@ | ||||||
| 
 | 
 | ||||||
| 							<div class="col-auto"> | 							<div class="col-auto"> | ||||||
| 								<select class="form-control-sm" id="exchangetype" name="exchangetype"> | 								<select class="form-control-sm" id="exchangetype" name="exchangetype"> | ||||||
| 									<option value='None'>None</option> | 									<option value='None'><?php echo lang('contesting_exchange_type_none'); ?></option>
 | ||||||
| 									<option value='Exchange'>Exchange</option> | 									<option value='Exchange'><?php echo lang('contesting_exchange_type_exchange'); ?></option>
 | ||||||
| 									<option value='Gridsquare'>Gridsquare</option> | 									<option value='Gridsquare'><?php echo lang('contesting_exchange_type_gridsquare'); ?></option>
 | ||||||
| 									<option value='Serial'>Serial</option> | 									<option value='Serial'><?php echo lang('contesting_exchange_type_serial'); ?></option>
 | ||||||
| 									<option value='Serialexchange'>Serial + Exchange</option> | 									<option value='Serialexchange'><?php echo lang('contesting_exchange_type_serial_exchange'); ?></option>
 | ||||||
| 									<option value='Serialgridsquare'>Serial + Gridsquare</option> | 									<option value='Serialgridsquare'><?php echo lang('contesting_exchange_type_serial_gridsquare'); ?></option>
 | ||||||
| 								</select> | 								</select> | ||||||
| 							</div> | 							</div> | ||||||
| 
 | 
 | ||||||
|  | @ -31,7 +31,7 @@ | ||||||
|                                 </select> |                                 </select> | ||||||
|                             </div> |                             </div> | ||||||
| 
 | 
 | ||||||
|                             <label class="col-auto control-label" for="operatorcall">Operator Callsign</label> |                             <label class="col-auto control-label" for="operatorcall"><?php echo lang('contesting_operator_callsign'); ?></label>
 | ||||||
|                             <div class="col-auto"> |                             <div class="col-auto"> | ||||||
|                                 <input type="text" class="form-control form-control-sm" id="operator_callsign" name="operator_callsign" value='<?php echo $this->session->userdata('operator_callsign'); ?>' required> |                                 <input type="text" class="form-control form-control-sm" id="operator_callsign" name="operator_callsign" value='<?php echo $this->session->userdata('operator_callsign'); ?>' required> | ||||||
|                             </div> |                             </div> | ||||||
|  | @ -112,7 +112,7 @@ | ||||||
|                             </div> |                             </div> | ||||||
| 
 | 
 | ||||||
|                             <div style="display:none" class="form-group col-md-1 serials"> |                             <div style="display:none" class="form-group col-md-1 serials"> | ||||||
| 								<label for="exch_serial_s">Serial (S)</label> | 								<label for="exch_serial_s"><?php echo lang('contesting_exchange_serial_s'); ?></label>
 | ||||||
| 								<input type="number" class="form-control form-control-sm" name="exch_serial_s" id="exch_serial_s" value=""> | 								<input type="number" class="form-control form-control-sm" name="exch_serial_s" id="exch_serial_s" value=""> | ||||||
| 							</div> | 							</div> | ||||||
|                              |                              | ||||||
|  | @ -122,7 +122,7 @@ | ||||||
|                             </div> |                             </div> | ||||||
| 
 | 
 | ||||||
| 							<div style="display:none" class="form-group col-md-2 gridsquares"> | 							<div style="display:none" class="form-group col-md-2 gridsquares"> | ||||||
| 								<label for="exch_gridsquare_s">Gridsquare (S)</label> | 								<label for="exch_gridsquare_s"><?php echo lang('contesting_exchange_gridsquare_s'); ?></label>
 | ||||||
| 								<input disabled type="text" class="form-control form-control-sm" name="exch_gridsquare_s" id="exch_gridsquare_s" value="<?php echo $my_gridsquare;?>"> | 								<input disabled type="text" class="form-control form-control-sm" name="exch_gridsquare_s" id="exch_gridsquare_s" value="<?php echo $my_gridsquare;?>"> | ||||||
| 							</div> | 							</div> | ||||||
| 
 | 
 | ||||||
|  | @ -132,7 +132,7 @@ | ||||||
|                             </div> |                             </div> | ||||||
| 
 | 
 | ||||||
|                             <div style="display:none" class="form-group col-md-1 serialr"> |                             <div style="display:none" class="form-group col-md-1 serialr"> | ||||||
| 								<label for="exch_serial_r">Serial (R)</label> | 								<label for="exch_serial_r"><?php echo lang('contesting_exchange_serial_r'); ?></label>
 | ||||||
| 								<input type="number" class="form-control form-control-sm" name="exch_serial_r" id="exch_serial_r" value=""> | 								<input type="number" class="form-control form-control-sm" name="exch_serial_r" id="exch_serial_r" value=""> | ||||||
| 							</div> | 							</div> | ||||||
| 							 | 							 | ||||||
|  | @ -142,7 +142,7 @@ | ||||||
| 							</div> | 							</div> | ||||||
| 
 | 
 | ||||||
| 							<div style="display:none" class="form-group col-md-2 gridsquarer"> | 							<div style="display:none" class="form-group col-md-2 gridsquarer"> | ||||||
| 								<label for="exch_gridsquare_r">Gridsquare (R)</label> | 								<label for="exch_gridsquare_r"><?php echo lang('contesting_exchange_gridsquare_r'); ?></label>
 | ||||||
| 								<input type="text" class="form-control form-control-sm" name="locator" id="exch_gridsquare_r" value=""> | 								<input type="text" class="form-control form-control-sm" name="locator" id="exch_gridsquare_r" value=""> | ||||||
| 							</div> | 							</div> | ||||||
|                         </div> |                         </div> | ||||||
|  | @ -165,7 +165,7 @@ | ||||||
|                           <div class="col-md-12"> |                           <div class="col-md-12"> | ||||||
|                               <div class="form-check-inline"> |                               <div class="form-check-inline"> | ||||||
|                                   <input class="form-check-input" type="checkbox" name="copyexchangetodok" value="1" id="copyexchangetodok"> |                                   <input class="form-check-input" type="checkbox" name="copyexchangetodok" value="1" id="copyexchangetodok"> | ||||||
|                                   <label class="form-check-label" for="copyexchangetodok">Copy received exchange to DOK field in the database!</label> |                                   <label class="form-check-label" for="copyexchangetodok"><?php echo lang('contesting_copy_exch_to_dok'); ?></label>
 | ||||||
|                               </div> |                               </div> | ||||||
|                           </div> |                           </div> | ||||||
|                       </div> |                       </div> | ||||||
|  | @ -198,10 +198,10 @@ | ||||||
|                             <th><?php echo lang('gen_hamradio_rstr'); ?></th>
 |                             <th><?php echo lang('gen_hamradio_rstr'); ?></th>
 | ||||||
|                             <th><?php echo lang('gen_hamradio_exchange_sent_short'); ?></th>
 |                             <th><?php echo lang('gen_hamradio_exchange_sent_short'); ?></th>
 | ||||||
|                             <th><?php echo lang('gen_hamradio_exchange_rcvd_short'); ?></th>
 |                             <th><?php echo lang('gen_hamradio_exchange_rcvd_short'); ?></th>
 | ||||||
| 							<th>Serial (S)</th> | 							<th><?php echo lang('contesting_exchange_serial_s'); ?></th>
 | ||||||
| 							<th>Serial (R)</th> | 							<th><?php echo lang('contesting_exchange_serial_r'); ?></th>
 | ||||||
| 							<th>Gridsquare</th> | 							<th><?php echo lang('contesting_exchange_type_gridsquare'); ?></th>
 | ||||||
| 							<th>Vucc Gridsquare</th> | 							<th><?php echo 'VUCC ' . lang('contesting_exchange_type_gridsquare'); ?></th>
 | ||||||
|                         </tr> |                         </tr> | ||||||
|                     </thead> |                     </thead> | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -3,7 +3,9 @@ | ||||||
|     <br> |     <br> | ||||||
| 
 | 
 | ||||||
|     <h2><?php echo $page_title; ?></h2>
 |     <h2><?php echo $page_title; ?></h2>
 | ||||||
| 
 |     <script> | ||||||
|  |         var lang_general_word_qso_data = '<?php echo lang('general_word_qso_data'); ?>'; | ||||||
|  |     </script> | ||||||
|     <div id="distances_div"> |     <div id="distances_div"> | ||||||
|         <form class="form-inline"> |         <form class="form-inline"> | ||||||
|             <label class="my-1 mr-2" for="distplot_bands"><?php echo lang('gen_band_selection'); ?></label>
 |             <label class="my-1 mr-2" for="distplot_bands"><?php echo lang('gen_band_selection'); ?></label>
 | ||||||
|  |  | ||||||
|  | @ -11,6 +11,12 @@ | ||||||
|  var my_call = "<?php echo $this->session->userdata('user_callsign'); ?>".toUpperCase(); |  var my_call = "<?php echo $this->session->userdata('user_callsign'); ?>".toUpperCase(); | ||||||
| </script> | </script> | ||||||
| 
 | 
 | ||||||
|  | <script> | ||||||
|  |     /*  | ||||||
|  |     General Language | ||||||
|  |     */ | ||||||
|  |     var lang_general_word_qso_data = "<?php echo lang('general_word_qso_data'); ?>"; | ||||||
|  | </script> | ||||||
| <!-- General JS Files used across Cloudlog --> | <!-- General JS Files used across Cloudlog --> | ||||||
| <script src="<?php echo base_url(); ?>assets/js/jquery-3.3.1.min.js"></script> | <script src="<?php echo base_url(); ?>assets/js/jquery-3.3.1.min.js"></script> | ||||||
| <script src="<?php echo base_url(); ?>assets/js/popper.min.js"></script> | <script src="<?php echo base_url(); ?>assets/js/popper.min.js"></script> | ||||||
|  | @ -1786,7 +1792,7 @@ $(document).ready(function(){ | ||||||
| 				type: 'post', | 				type: 'post', | ||||||
| 				success: function(html) { | 				success: function(html) { | ||||||
| 					BootstrapDialog.show({ | 					BootstrapDialog.show({ | ||||||
| 						title: 'QSO Data', | 						title: lang_general_word_qso_data, | ||||||
| 						cssClass: 'qso-dialog', | 						cssClass: 'qso-dialog', | ||||||
| 						size: BootstrapDialog.SIZE_WIDE, | 						size: BootstrapDialog.SIZE_WIDE, | ||||||
| 						nl2br: false, | 						nl2br: false, | ||||||
|  | @ -2083,7 +2089,7 @@ $(document).ready(function(){ | ||||||
|                     }, |                     }, | ||||||
|                     success: function(html) { |                     success: function(html) { | ||||||
|                         BootstrapDialog.show({ |                         BootstrapDialog.show({ | ||||||
|                             title: 'QSO Data', |                             title: lang_general_word_qso_data, | ||||||
|                             size: BootstrapDialog.SIZE_WIDE, |                             size: BootstrapDialog.SIZE_WIDE, | ||||||
|                             cssClass: 'qso-was-dialog', |                             cssClass: 'qso-was-dialog', | ||||||
|                             nl2br: false, |                             nl2br: false, | ||||||
|  | @ -2149,7 +2155,7 @@ $(document).ready(function(){ | ||||||
|                     }, |                     }, | ||||||
|                     success: function(html) { |                     success: function(html) { | ||||||
|                         BootstrapDialog.show({ |                         BootstrapDialog.show({ | ||||||
|                             title: 'QSO Data', |                             title: lang_general_word_qso_data, | ||||||
|                             size: BootstrapDialog.SIZE_WIDE, |                             size: BootstrapDialog.SIZE_WIDE, | ||||||
|                             cssClass: 'qso-was-dialog', |                             cssClass: 'qso-was-dialog', | ||||||
|                             nl2br: false, |                             nl2br: false, | ||||||
|  | @ -2379,7 +2385,7 @@ function viewEqsl(picture, callsign) { | ||||||
|             }, |             }, | ||||||
|             success: function (html) { |             success: function (html) { | ||||||
|                 BootstrapDialog.show({ |                 BootstrapDialog.show({ | ||||||
|                     title: 'QSO Data', |                     title: lang_general_word_qso_data, | ||||||
|                     size: BootstrapDialog.SIZE_WIDE, |                     size: BootstrapDialog.SIZE_WIDE, | ||||||
|                     cssClass: 'qso-dialog', |                     cssClass: 'qso-dialog', | ||||||
|                     nl2br: false, |                     nl2br: false, | ||||||
|  | @ -2424,7 +2430,7 @@ function viewEqsl(picture, callsign) { | ||||||
|     }, |     }, | ||||||
| 	    success: function (html) { | 	    success: function (html) { | ||||||
| 		    var dialog = new BootstrapDialog({ | 		    var dialog = new BootstrapDialog({ | ||||||
| 		    title: 'QSO Data', | 		    title: lang_general_word_qso_data, | ||||||
| 			    size: BootstrapDialog.SIZE_WIDE, | 			    size: BootstrapDialog.SIZE_WIDE, | ||||||
| 			    cssClass: 'qso-dialog', | 			    cssClass: 'qso-dialog', | ||||||
| 			    nl2br: false, | 			    nl2br: false, | ||||||
|  | @ -2704,7 +2710,7 @@ function viewEqsl(picture, callsign) { | ||||||
|             data: {'State': state, 'County': county }, |             data: {'State': state, 'County': county }, | ||||||
|             success: function(html) { |             success: function(html) { | ||||||
|                 BootstrapDialog.show({ |                 BootstrapDialog.show({ | ||||||
|                     title: 'QSO Data', |                     title: lang_general_word_qso_data, | ||||||
|                     size: BootstrapDialog.SIZE_WIDE, |                     size: BootstrapDialog.SIZE_WIDE, | ||||||
|                     cssClass: 'qso-counties-dialog', |                     cssClass: 'qso-counties-dialog', | ||||||
|                     nl2br: false, |                     nl2br: false, | ||||||
|  |  | ||||||
|  | @ -124,7 +124,7 @@ function qso_edit(id) { | ||||||
|         }, |         }, | ||||||
|         success: function(html) { |         success: function(html) { | ||||||
|             BootstrapDialog.show({ |             BootstrapDialog.show({ | ||||||
|                 title: 'QSO Data', |                 title: lang_general_word_qso_data, | ||||||
|                 cssClass: 'edit-dialog', |                 cssClass: 'edit-dialog', | ||||||
|                 size: BootstrapDialog.SIZE_WIDE, |                 size: BootstrapDialog.SIZE_WIDE, | ||||||
|                 nl2br: false, |                 nl2br: false, | ||||||
|  |  | ||||||
|  | @ -30,13 +30,13 @@ function createContestDialog() { | ||||||
| 		type: 'post', | 		type: 'post', | ||||||
| 		success: function (html) { | 		success: function (html) { | ||||||
| 			BootstrapDialog.show({ | 			BootstrapDialog.show({ | ||||||
| 				title: 'Add Contest', | 				title: lang_admin_contest_add_contest, | ||||||
| 				size: BootstrapDialog.SIZE_WIDE, | 				size: BootstrapDialog.SIZE_WIDE, | ||||||
| 				cssClass: 'create-contest-dialog', | 				cssClass: 'create-contest-dialog', | ||||||
| 				nl2br: false, | 				nl2br: false, | ||||||
| 				message: html, | 				message: html, | ||||||
| 				buttons: [{ | 				buttons: [{ | ||||||
| 					label: 'Close', | 					label: lang_admin_close, | ||||||
| 					action: function (dialogItself) { | 					action: function (dialogItself) { | ||||||
| 						dialogItself.close(); | 						dialogItself.close(); | ||||||
| 					} | 					} | ||||||
|  | @ -68,8 +68,8 @@ function deactivateContest(contestid) { | ||||||
| 		type: 'post', | 		type: 'post', | ||||||
| 		data: { 'id': contestid }, | 		data: { 'id': contestid }, | ||||||
| 		success: function (html) { | 		success: function (html) { | ||||||
| 			$(".contest_" + contestid).text('not active'); | 			$(".contest_" + contestid).text(lang_admin_contest_menu_n_active); | ||||||
| 			$('.btn_' + contestid).html('Activate'); | 			$('.btn_' + contestid).html(lang_admin_contest_menu_activate); | ||||||
| 			$('.btn_' + contestid).attr('onclick', 'activateContest(' + contestid + ')') | 			$('.btn_' + contestid).attr('onclick', 'activateContest(' + contestid + ')') | ||||||
| 		} | 		} | ||||||
| 	}); | 	}); | ||||||
|  | @ -81,8 +81,8 @@ function activateContest(contestid) { | ||||||
| 		type: 'post', | 		type: 'post', | ||||||
| 		data: { 'id': contestid }, | 		data: { 'id': contestid }, | ||||||
| 		success: function (html) { | 		success: function (html) { | ||||||
| 			$('.contest_' + contestid).text('active'); | 			$('.contest_' + contestid).text(lang_admin_contest_menu_active); | ||||||
| 			$('.btn_' + contestid).html('Deactivate'); | 			$('.btn_' + contestid).html(lang_admin_contest_menu_deactivate); | ||||||
| 			$('.btn_' + contestid).attr('onclick', 'deactivateContest(' + contestid + ')') | 			$('.btn_' + contestid).attr('onclick', 'deactivateContest(' + contestid + ')') | ||||||
| 		} | 		} | ||||||
| 	}); | 	}); | ||||||
|  | @ -90,8 +90,8 @@ function activateContest(contestid) { | ||||||
| 
 | 
 | ||||||
| function deleteContest(id, contest) { | function deleteContest(id, contest) { | ||||||
| 	BootstrapDialog.confirm({ | 	BootstrapDialog.confirm({ | ||||||
| 		title: 'DANGER', | 		title: lang_admin_danger, | ||||||
| 		message: 'Warning! Are you sure you want to delete the following contest: ' + contest + '?', | 		message: lang_admin_contest_deletion_warning + contest + '?', | ||||||
| 		type: BootstrapDialog.TYPE_DANGER, | 		type: BootstrapDialog.TYPE_DANGER, | ||||||
| 		closable: true, | 		closable: true, | ||||||
| 		draggable: true, | 		draggable: true, | ||||||
|  | @ -115,8 +115,8 @@ function deleteContest(id, contest) { | ||||||
| 
 | 
 | ||||||
| function activateAllContests() { | function activateAllContests() { | ||||||
| 	BootstrapDialog.confirm({ | 	BootstrapDialog.confirm({ | ||||||
| 		title: 'DANGER', | 		title: lang_admin_danger, | ||||||
| 		message: 'Warning! Are you sure you want to activate all contests?', | 		message: lang_admin_contest_active_all_warning, | ||||||
| 		type: BootstrapDialog.TYPE_DANGER, | 		type: BootstrapDialog.TYPE_DANGER, | ||||||
| 		closable: true, | 		closable: true, | ||||||
| 		draggable: true, | 		draggable: true, | ||||||
|  | @ -137,8 +137,8 @@ function activateAllContests() { | ||||||
| 
 | 
 | ||||||
| function deactivateAllContests() { | function deactivateAllContests() { | ||||||
| 	BootstrapDialog.confirm({ | 	BootstrapDialog.confirm({ | ||||||
| 		title: 'DANGER', | 		title: lang_admin_danger, | ||||||
| 		message: 'Warning! Are you sure you want to deactivate all contests?', | 		message: lang_admin_contest_deactive_all_warning, | ||||||
| 		type: BootstrapDialog.TYPE_DANGER, | 		type: BootstrapDialog.TYPE_DANGER, | ||||||
| 		closable: true, | 		closable: true, | ||||||
| 		draggable: true, | 		draggable: true, | ||||||
|  |  | ||||||
|  | @ -144,7 +144,7 @@ function getDistanceQsos(distance) { | ||||||
| 		}, | 		}, | ||||||
| 		success: function (html) { | 		success: function (html) { | ||||||
| 			BootstrapDialog.show({ | 			BootstrapDialog.show({ | ||||||
| 				title: 'QSO Data', | 				title: lang_general_word_qso_data, | ||||||
| 				size: BootstrapDialog.SIZE_WIDE, | 				size: BootstrapDialog.SIZE_WIDE, | ||||||
| 				cssClass: 'qso-dialog', | 				cssClass: 'qso-dialog', | ||||||
| 				nl2br: false, | 				nl2br: false, | ||||||
|  |  | ||||||
|  | @ -123,7 +123,7 @@ function spawnGridsquareModal(loc_4char) { | ||||||
|         data: ajax_data, |         data: ajax_data, | ||||||
|         success: function (html) { |         success: function (html) { | ||||||
|             BootstrapDialog.show({ |             BootstrapDialog.show({ | ||||||
|                 title: 'QSO Data', |                 title: lang_general_word_qso_data, | ||||||
|                 cssClass: 'qso-dialog', |                 cssClass: 'qso-dialog', | ||||||
|                 size: BootstrapDialog.SIZE_WIDE, |                 size: BootstrapDialog.SIZE_WIDE, | ||||||
|                 nl2br: false, |                 nl2br: false, | ||||||
|  |  | ||||||
		正在加载…
	
		在新工单中引用