From 56103141ece70e0501709b4ef5d58c74bee03502 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yi=20Chi=20=E9=BD=8A=E4=B8=80?= Date: Fri, 6 Oct 2023 23:48:18 +0800 Subject: [PATCH 1/2] Create zh-TW --- FastCopy/Strings/zh-TW/Resources.resw | 228 ++++++++++++++++++++++++++ 1 file changed, 228 insertions(+) create mode 100644 FastCopy/Strings/zh-TW/Resources.resw diff --git a/FastCopy/Strings/zh-TW/Resources.resw b/FastCopy/Strings/zh-TW/Resources.resw new file mode 100644 index 0000000..a4755ae --- /dev/null +++ b/FastCopy/Strings/zh-TW/Resources.resw @@ -0,0 +1,228 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Acrylic + + + 繼續 + + + 已複製 + + + 已成功{} {} 個檔案 + + + 正在複製 + + + 複製 + + + 建立 + + + 停用 + + + 深色 + + + Windows 預設 + + + 已删除 + + + 删除 + + + 正在删除 + + + 目的地資料夾包含 + + + 個重複檔案 + + + 項目來自 + + + 讀取 + + + 寫入 + + + 淺色 + + + Mica + + + 已移動 + + + 移動 + + + 正在移動 + + + 控制多個執行實體時視窗顯示方式 + + + 多個執行實體 + + + 顯示多個視窗 + + + 合併至單個視窗 + + + 複製完成時向 Windows 通知中心推播快顯通知 + + + 複製完成時通知 + + + FastCopy 設定 + + + 佈景主題 + + + + + + 此功能仍在開發中! + + + 使用目的地 + + + 使用來源 + + + 視窗背景 + + \ No newline at end of file From 9915622a97f7b077e152effe258644a4c4bb05eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yi=20Chi=20=E9=BD=8A=E4=B8=80?= Date: Sun, 8 Oct 2023 20:40:44 +0800 Subject: [PATCH 2/2] Add zh-tw in CopyOperationNames.cpp --- FastCopyShellExtension/CopyOperationNames.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/FastCopyShellExtension/CopyOperationNames.cpp b/FastCopyShellExtension/CopyOperationNames.cpp index 4da3346..28f2d09 100644 --- a/FastCopyShellExtension/CopyOperationNames.cpp +++ b/FastCopyShellExtension/CopyOperationNames.cpp @@ -58,6 +58,16 @@ CopyOperationNames& CopyOperationNames::GetInstance() .Delete = L"Borrar" }; } + else if (defaultLang == L"zh-tw") + { + return CopyOperationNames + { + .Copy = L"複製", + .Move = L"移動", + .Paste = L"貼上", + .Delete = L"刪除" + }; + } //Add more languages here }(); return s_instance;