Skip to content

Commit 71dad9f

Browse files
committed
Add support for more uninstaller prefixs
1 parent fec553c commit 71dad9f

File tree

1 file changed

+25
-2
lines changed
  • Plugins/Flow.Launcher.Plugin.Program

1 file changed

+25
-2
lines changed

Plugins/Flow.Launcher.Plugin.Program/Main.cs

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,31 @@ public class Main : ISettingProvider, IAsyncPlugin, IPluginI18n, IContextMenu, I
4343
};
4444
private static readonly string[] commonUninstallerPrefixs =
4545
{
46-
"uninstall",
47-
"卸载"
46+
"uninstall",//en
47+
"卸载",//zh-cn
48+
"卸載",//zh-tw
49+
"видалити",//uk-UA
50+
"удалить",//ru
51+
"désinstaller",//fr
52+
"アンインストール",//ja
53+
"deïnstalleren",//nl
54+
"odinstaluj",//pl
55+
"afinstallere",//da
56+
"deinstallieren",//de
57+
"삭제",//ko
58+
"деинсталирај",//sr
59+
"desinstalar",//pt-pt
60+
"desinstalar",//pt-br
61+
"desinstalar",//es
62+
"desinstalar",//es-419
63+
"disinstallare",//it
64+
"avinstallere",//nb-NO
65+
"odinštalovať",//sk
66+
"kaldır",//tr
67+
"odinstalovat",//cs
68+
"إلغاء التثبيت",//ar
69+
"gỡ bỏ",//vi-vn
70+
"הסרה"//he
4871
};
4972
private const string ExeUninstallerSuffix = ".exe";
5073
private const string InkUninstallerSuffix = ".lnk";

0 commit comments

Comments
 (0)