-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgui_text.py
63 lines (63 loc) · 3.06 KB
/
gui_text.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
'''
Note: Paste file's content to gui_text.py to apply the language file!
提示: 將語言檔案的內容貼到gui_text.py來套用!
'''
TEXTS = {
"title": "LOOKING DB5 工具箱",
"refresh_button": "更新列表",
"record_button_start": "開始錄製",
"record_button_stop": "停止錄製",
"toggle_mode_button_recording": "錄製模式",
"toggle_mode_button_review": "檢視模式",
"toggle_mode_button_photo": "拍照模式",
"toggle_mode_button_unknown": "未知模式",
"sync_time_button": "同步時間",
"live_stream_button": "串流網址",
"delete_confirmation_title": "刪除確認",
"delete_confirmation_message": "您確定要刪除此文件嗎?\n",
"error_connection_failed": "連線錯誤",
"error_connection_failed_message": "連接到設備失敗。",
"error_xml_parsing": "XML 解析錯誤",
"success_msg": "成功",
"success_file_deleted_message": "刪除文件:",
"error_delete_failed_message": "刪除失敗,回傳代碼 ",
"error_file_delete": "刪除文件失敗: {}",
"error_msg": "錯誤",
"error_recording_status_message": "獲取錄製狀態失敗: ",
"error_toggle_recording_message": "切換錄製狀態失敗,請檢查伺服器回應。",
"error_check_mode_message": "獲取目前模式失敗: ",
"error_toggle_mode_message": "切換目前模式失敗: ",
"error_sync_time_message": "同步時間失敗: ",
"success_sync_time_message": "時間同步成功.\n",
"error_live_stream_url_message": "獲取串流網址失敗: ",
"playback_url_text": "回放/下載網址:",
"playback_url_title": "回放網址",
"error_no_preview": "沒有預覽或抓取錯誤",
"copy_url_btn_text": "複製網址",
"tree_index_text": "索引",
"tree_fsize_text": "大小(MB)",
"tree_ftime_text": "時間",
"tree_fname_text": "名稱",
"copy_url_success_msg": "網址已複製到剪貼簿",
"wifi_config_title": "Wi-Fi 設定",
"wifi_config_ssid": "Wi-Fi SSID:",
"wifi_config_password": "Wi-Fi 密碼:",
"wifi_config_reveal_btn": "顯示/隱藏字母",
"wifi_config_note_label": "密碼需至少 8 個字元!\n\n請使用英文、數字、\n底線 (_) 或短槓 (-) 等符號\n來定義 Wi-Fi 名稱和密碼\n以確保設定成功。",
"error_wifi_config_ssid": "傳送 Wi-Fi SSID 失敗",
"error_wifi_config_password": "傳送 Wi-Fi 密碼失敗",
"error_wifi_len_password": "密碼長度不符",
"wifi_config_btn": "Wi-Fi 設定",
"wifi_config_send_btn": "傳送 Wi-Fi 設定",
"wifi_config_setup_success": "Wi-Fi 設定已成功傳送!",
"wifi_config_restart_success": "裝置 Wi-Fi 已成功重新啟動!",
"error_wifi_config_restart": "重新啟動裝置 Wi-Fi 失敗",
"wifi_config_restart_btn": "重新啟動裝置 Wi-Fi",
"take_pic_success": "拍照成功!",
"take_pic_btn": "拍照",
"error_take_pic": "拍照失敗。",
"del_refresh_on": "刪除後自動重整 ON",
"del_refresh_off": "刪除後自動重整 OFF",
"dl_light": "淺色模式",
"dl_dark": "深色模式",
}