181db5e1dSChan Chilung/*
281db5e1dSChan Chilung * PROJECT:     ReactOS Clipboard Viewer
381db5e1dSChan Chilung * LICENSE:     GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
481db5e1dSChan Chilung * PURPOSE:     Chinese (Hong Kong) resource file
581db5e1dSChan Chilung * TRANSLATORS: Copyright 2021 Chan Chilung <eason066@gmail.com>
681db5e1dSChan Chilung * REFERENCES:  Chinese (Traditional) resource file
781db5e1dSChan Chilung */
881db5e1dSChan Chilung
981db5e1dSChan ChilungLANGUAGE LANG_CHINESE, SUBLANG_CHINESE_HONGKONG
1081db5e1dSChan Chilung
1181db5e1dSChan ChilungID_ACCEL ACCELERATORS
1281db5e1dSChan ChilungBEGIN
1381db5e1dSChan Chilung    VK_DELETE, CMD_DELETE, VIRTKEY
1481db5e1dSChan ChilungEND
1581db5e1dSChan Chilung
1681db5e1dSChan ChilungMAIN_MENU MENU
1781db5e1dSChan ChilungBEGIN
1881db5e1dSChan Chilung    POPUP "檔案(&F)"
1981db5e1dSChan Chilung    BEGIN
2081db5e1dSChan Chilung        MENUITEM "開啟(&O)...", CMD_OPEN
2181db5e1dSChan Chilung        MENUITEM "另存新檔(&A)...", CMD_SAVE_AS
2281db5e1dSChan Chilung        MENUITEM SEPARATOR
23*2752c42fSChan Chilung        MENUITEM "結束(&X)", CMD_EXIT
2481db5e1dSChan Chilung    END
2581db5e1dSChan Chilung    POPUP "編輯(&E)"
2681db5e1dSChan Chilung    BEGIN
2781db5e1dSChan Chilung        MENUITEM "刪除(&D)\tDel", CMD_DELETE
2881db5e1dSChan Chilung    END
2981db5e1dSChan Chilung    POPUP "顯示(&D)"
3081db5e1dSChan Chilung    BEGIN
3181db5e1dSChan Chilung        MENUITEM "自動(&A)", CMD_AUTOMATIC
3281db5e1dSChan Chilung    END
3381db5e1dSChan Chilung    POPUP "説明(&H)"
3481db5e1dSChan Chilung    BEGIN
3581db5e1dSChan Chilung        MENUITEM "説明主題(&H)", CMD_HELP
3681db5e1dSChan Chilung        MENUITEM SEPARATOR
3781db5e1dSChan Chilung        MENUITEM "關於(&A)", CMD_ABOUT
3881db5e1dSChan Chilung    END
3981db5e1dSChan ChilungEND
4081db5e1dSChan Chilung
4181db5e1dSChan ChilungSTRINGTABLE
4281db5e1dSChan ChilungBEGIN
4381db5e1dSChan Chilung    STRING_CLIPBOARD "剪貼簿檢視器"
4481db5e1dSChan Chilung    STRING_CLIPFILE  "剪貼簿項目"
4581db5e1dSChan Chilung    STRING_DELETE_MSG "要清除剪貼簿的內容嗎?"
4681db5e1dSChan Chilung    STRING_DELETE_TITLE "清除剪貼簿"
4781db5e1dSChan Chilung    STRING_FORMAT_NT "ReactOS 剪貼簿檔案 (*.clp)"
4881db5e1dSChan Chilung    STRING_FORMAT_GEN "剪貼簿檔案 (*.clp)"
4981db5e1dSChan ChilungEND
5081db5e1dSChan Chilung
5181db5e1dSChan ChilungSTRINGTABLE
5281db5e1dSChan ChilungBEGIN
5381db5e1dSChan Chilung    STRING_CF_UNKNOWN "不明格式"
5481db5e1dSChan Chilung    STRING_CF_TEXT "文字"
5581db5e1dSChan Chilung    STRING_CF_BITMAP "點陣圖"
5681db5e1dSChan Chilung    STRING_CF_OEMTEXT "OEM 文字"
5781db5e1dSChan Chilung    STRING_CF_UNICODETEXT "Unicode 文字"
5881db5e1dSChan Chilung    STRING_CF_DIB "DIB 點陣圖"
5981db5e1dSChan Chilung    STRING_CF_LOCALE "本地日期"
6081db5e1dSChan Chilung    STRING_CF_ENHMETAFILE "增強型圖元檔案"
6181db5e1dSChan Chilung    STRING_CF_METAFILEPICT "圖元檔案"
6281db5e1dSChan Chilung    STRING_CF_PALETTE "調色盤"
63*2752c42fSChan Chilung    STRING_CF_DIBV5 "DIB 點陣圖(第 5 版)"
6481db5e1dSChan Chilung    STRING_CF_SYLK "符號連結格式"
6581db5e1dSChan Chilung    STRING_CF_DIF "資料交換格式"
6681db5e1dSChan Chilung    STRING_CF_HDROP "刪除資料"
6781db5e1dSChan ChilungEND
6881db5e1dSChan Chilung
6981db5e1dSChan ChilungSTRINGTABLE
7081db5e1dSChan ChilungBEGIN
7181db5e1dSChan Chilung    ERROR_UNSUPPORTED_FORMAT "剪貼簿內的資料含有不能顯示的格式。"
7281db5e1dSChan Chilung    ERROR_INVALID_FILE_FORMAT "所選的檔案不是一個有效的剪貼簿檔案。"
7381db5e1dSChan ChilungEND
74