HO-COOH / FastCopy

A GUI wrappers for Windows' built-in robocopy. QQ讨论群:479734355
MIT License
180 stars 24 forks source link

Create zh-TW #13

Open chiyi4488 opened 11 months ago

HO-COOH commented 11 months ago

Thank you! Please also translate the second part

chiyi4488 commented 11 months ago

@HO-COOH Added. Please review. BTW, I think conditional expressions need change to:

if (defaultLang == L"zh-cn")
        {
            return CopyOperationNames
            {
                .Copy = L"复制",
                .Move = L"剪切",
                .Paste = L"粘贴",
                .Delete = L"删除"
            };
        }
....... // other language
else
        {
            return CopyOperationNames
            {
                .Copy = L"Copy",
                .Move = L"Move",
                .Paste = L"Paste",
                .Delete = L"Delete"
            };
        }

image