📄 putty.rss
字号:
DLG_BUTTON { id = ECmdHostKeyAcceptAndSave; button = CMBUT { txt = "Accept\nand Save"; }; flags = 0; }, DLG_BUTTON { id = ECmdHostKeyAcceptOnce; button = CMBUT { txt = "Accept\nOnce"; }; flags = 0; }, DLG_BUTTON { id = EEikBidBlank; button = CMBUT { txt = ""; }; flags = 0; }, DLG_BUTTON { id = ECmdHostKeyReject; button = CMBUT { txt = "Reject"; }; flags = 0; } };}// Connection dialogRESOURCE DIALOG r_connection_dialog { title = "Connect"; buttons = R_EIK_BUTTONS_CANCEL_OK; flags = EEikDialogFlagWait; items = { DLG_LINE { type = EEikCtEdwin; prompt = "Host"; id = EConnDlgHost; control = EDWIN { width = 16; maxlength = 64; }; } };}// Settings dialogRESOURCE DIALOG r_settings_dialog { title = "Settings"; pages = r_settings_pages; flags = EEikDialogFlagWait; buttons = R_EIK_BUTTONS_CANCEL_OK;}RESOURCE ARRAY r_settings_pages { items = { PAGE { text = "Connection"; id = ESettingsConnectionPage; lines = r_settings_connection_page; }, PAGE { text = "Authentication"; id = ESettingsAuthenticationPage; lines = r_settings_authentication_page; }, PAGE { text = "Logging"; id = ESettingsLoggingPage; lines = r_settings_logging_page; } };}RESOURCE ARRAY r_settings_connection_page { items = { DLG_LINE { type = EEikCtEdwin; prompt = "Host"; id = ESettingsHost; control = EDWIN { width = 12; maxlength = 64; }; }, DLG_LINE { type = EEikCtNumberEditor; prompt = "Port"; id = ESettingsPort; control = NUMBER_EDITOR { min = 1; max = 65535; }; }, DLG_LINE { type = EEikCtChoiceList; prompt = "SSH Version"; id = ESettingsSshVersion; control = CHOICELIST { array_id = r_settings_ssh_versions; }; }, DLG_LINE { type = EEikCtCheckBox; prompt = "Compression"; id = ESettingsCompression; }, DLG_LINE { type = EEikCtNumberEditor; prompt = "SSH Keepalive interval"; id = ESettingsKeepalive; control = NUMBER_EDITOR { min = 0; max = 100000; }; } };}RESOURCE ARRAY r_settings_ssh_versions { items = { LBUF { txt = "1 only"; }, LBUF { txt = "1 preferred"; }, LBUF { txt = "2 preferred"; }, LBUF { txt = "2 only"; } };}RESOURCE ARRAY r_settings_authentication_page { items = { DLG_LINE { type = EEikCtEdwin; prompt = "Username"; id = ESettingsUsername; control = EDWIN { width = 8; maxlength = 99; }; }, DLG_LINE { type = EEikCtEdwin; prompt = "Private Key File"; id = ESettingsPrivateKey; control = EDWIN { width = 12; maxlength = 255; }; } };}RESOURCE ARRAY r_settings_logging_page { items = { DLG_LINE { type = EEikCtChoiceList; prompt = "Log Type"; id = ESettingsLogType; control = CHOICELIST { array_id = r_settings_log_type; }; }, DLG_LINE { type = EEikCtEdwin; prompt = "Log File"; id = ESettingsLogFile; control = EDWIN { width = 12; maxlength = 255; }; } };}RESOURCE ARRAY r_settings_log_type { items = { LBUF { txt = "No logging"; }, LBUF { txt = "Text only"; }, LBUF { txt = "All traffic"; }, LBUF { txt = "SSH data & debug"; } };}// Settings dialog browse key file buttonRESOURCE DLG_BUTTON r_settings_browse_key_button { id = ECmdSettingsBrowseKeyFile; button = CMBUT { txt = "Browse"; }; flags = 0;}// Authentication prompt dialog -- secretRESOURCE DIALOG r_auth_prompt_secret_dialog { title = ""; buttons = R_EIK_BUTTONS_CANCEL_OK; flags = EEikDialogFlagWait; items = { DLG_LINE { type = EEikCtSecretEd; prompt = ""; id = EAuthPromptEditor; control = SECRETED { num_letters = 32; }; } };}// Authentication prompt dialog -- publicRESOURCE DIALOG r_auth_prompt_public_dialog { title = ""; buttons = R_EIK_BUTTONS_CANCEL_OK; flags = EEikDialogFlagWait; items = { DLG_LINE { type = EEikCtEdwin; prompt = ""; id = EAuthPromptEditor; control = EDWIN { width = 8; maxlength = 64; }; } };}// Localizable strings// Fatal error panic nameRESOURCE TBUF r_str_fatal_error { buf = "Fatal error"; }// Connection error dialog titleRESOURCE TBUF r_str_connection_error_title { buf = "Connection Error"; }// Fatal Error dialog titleRESOURCE TBUF r_str_fatal_error_title { buf = "Fatal Error"; }// Connection closed info message (connection closed normally)RESOURCE TBUF r_str_connection_closed { buf = "Connection closed"; }// Unknown host key dialog titleRESOURCE TBUF r_str_unknown_host_key_title { buf = "Unknown Host Key"; }// Unknown host key dialog contents format string. %S = key fingerprintRESOURCE TBUF r_str_unknown_host_key_dlg_fmt { buf = "Unknown host key received from the server.\nThe key fingerprint is:\n%S";}// Different host key dialog titleRESOURCE TBUF r_str_different_host_key_title { buf = "Host Key Changed"; }// Different host key dialog contents format string. %S = key fingerprintRESOURCE TBUF r_str_different_host_key_dlg_fmt { buf = "SECURITY WARNING!\nThe server host key appears to have changed.\nThis may indicate an attack.\nThe new key fingerprint is:\n%S";}// Accept cipher dialog titleRESOURCE TBUF r_str_accept_cipher_title { buf = "Accept Cipher?"; }// Accept cipher dialog contents format string. First %S = cipher, second// the directionRESOURCE TBUF r_str_accept_cipher_dlg_fmt { buf = "SECURITY WARNING!\nThe server supports only weak ciphers.\nAccept cipher %S for\ncommunication %S?";}// Cipher communication directions: Both, client-to-server, server-to-clientRESOURCE TBUF r_str_accept_cipher_dir_both { buf = "in both directions"; }RESOURCE TBUF r_str_accept_cipher_client_to_server { buf = "from client to server"; }RESOURCE TBUF r_str_accept_cipher_server_to_client { buf = "from server to client"; }// Dialing busy messageRESOURCE TBUF r_str_dialing { buf = "Dialing"; }// Connecting busy messageRESOURCE TBUF r_str_connecting { buf = "Connecting"; }// Connection dialup failed error message. %S = error messageRESOURCE TBUF r_str_dialup_failed { buf = "Dial-up connection failed.\n%S\n"; }// Recording busy messageRESOURCE TBUF r_str_recording { buf = "Recording"; }// Randomized info messagesRESOURCE TBUF r_str_randomized { buf = "Initialized"; }// Recording error dialog titleRESOURCE TBUF r_str_record_error_title { buf = "Recording Error"; }// Audio device in use dialogRESOURCE TBUF r_str_audio_device_in_use { buf = "Audio device in use.\nTry again?"; }// OK confirm dialog buttonRESOURCE TBUF r_str_ok_confirm { buf = "OK"; }// Recording failed error message. %S = error messageRESOURCE TBUF r_str_record_failed { buf = "Audio recording failed.\n%S\n"; }// Recording confirmation dialog titleRESOURCE TBUF r_str_record_confirm_title { buf = "Start recording?"; }// Recording confirmation dialog textRESOURCE TBUF r_str_record_confirm_text { buf = "The random number generator\nwill be initialized using\nnoise from the microphone.\nProceed?"; }// Initial random number generation confirm dialog titleRESOURCE TBUF r_str_initial_random_title { buf = "Running PuTTY for the first time"; }// Initial random number generation confirm dialog textRESOURCE TBUF r_str_initial_random_text { buf = "You seem to be running PuTTY for the\nfirst time. It is recommended that you\ninitialize the random number generator\nbefore connecting. Proceed?"; }// Private key file selection dialog titleRESOURCE TBUF r_str_key_file_dialog_title { buf = "Select file"; }// Show PuTTY config files dialog button nameRESOURCE TBUF r_str_show_putty_config_files { buf = "Show PuTTY\nconfig files"; }// About dialog titleRESOURCE TBUF r_str_about_title { buf = "About PuTTY"; }// ABout dialog contents (FIXME: Make more dynamic)RESOURCE TBUF r_str_about_text { buf = "PuTTY for Symbian OS\nVersion 1.4 Beta 1\nBased on PuTTY 0.56 beta\nBuilt " __DATE__ ", " __TIME__; }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -