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 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;