mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Add support for more uninstaller prefixs
This commit is contained in:
parent
fec553c87c
commit
71dad9f356
1 changed files with 25 additions and 2 deletions
|
|
@ -43,8 +43,31 @@ namespace Flow.Launcher.Plugin.Program
|
||||||
};
|
};
|
||||||
private static readonly string[] commonUninstallerPrefixs =
|
private static readonly string[] commonUninstallerPrefixs =
|
||||||
{
|
{
|
||||||
"uninstall",
|
"uninstall",//en
|
||||||
"卸载"
|
"卸载",//zh-cn
|
||||||
|
"卸載",//zh-tw
|
||||||
|
"видалити",//uk-UA
|
||||||
|
"удалить",//ru
|
||||||
|
"désinstaller",//fr
|
||||||
|
"アンインストール",//ja
|
||||||
|
"deïnstalleren",//nl
|
||||||
|
"odinstaluj",//pl
|
||||||
|
"afinstallere",//da
|
||||||
|
"deinstallieren",//de
|
||||||
|
"삭제",//ko
|
||||||
|
"деинсталирај",//sr
|
||||||
|
"desinstalar",//pt-pt
|
||||||
|
"desinstalar",//pt-br
|
||||||
|
"desinstalar",//es
|
||||||
|
"desinstalar",//es-419
|
||||||
|
"disinstallare",//it
|
||||||
|
"avinstallere",//nb-NO
|
||||||
|
"odinštalovať",//sk
|
||||||
|
"kaldır",//tr
|
||||||
|
"odinstalovat",//cs
|
||||||
|
"إلغاء التثبيت",//ar
|
||||||
|
"gỡ bỏ",//vi-vn
|
||||||
|
"הסרה"//he
|
||||||
};
|
};
|
||||||
private const string ExeUninstallerSuffix = ".exe";
|
private const string ExeUninstallerSuffix = ".exe";
|
||||||
private const string InkUninstallerSuffix = ".lnk";
|
private const string InkUninstallerSuffix = ".lnk";
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue