From 48fcc40acd75a6b82effd0fae770246b35584c5e Mon Sep 17 00:00:00 2001 From: Markus Hofknecht Date: Fri, 10 Jun 2022 18:41:49 +0200 Subject: [PATCH] [Feature] Option 'Directory of Internet Shortcut Icons' (#397), version 1.2.9.17 --- Config/Config.cs | 22 + Helpers/DragDropHelper.cs | 10 +- Properties/AssemblyInfo.cs | 4 +- Properties/Settings.Designer.cs | 967 +++++++++++++------------ Resources/Languages/lang.af.resx | 3 + Resources/Languages/lang.ar.resx | 9 +- Resources/Languages/lang.az.resx | 11 +- Resources/Languages/lang.be.resx | 7 +- Resources/Languages/lang.bg.resx | 3 + Resources/Languages/lang.bn.resx | 7 +- Resources/Languages/lang.ca.resx | 5 +- Resources/Languages/lang.cs.resx | 5 +- Resources/Languages/lang.cy.resx | 3 + Resources/Languages/lang.da.resx | 11 +- Resources/Languages/lang.de.resx | 3 + Resources/Languages/lang.el.resx | 5 +- Resources/Languages/lang.eo.resx | 5 +- Resources/Languages/lang.es.resx | 9 +- Resources/Languages/lang.et.resx | 5 +- Resources/Languages/lang.eu.resx | 9 +- Resources/Languages/lang.fa.resx | 9 +- Resources/Languages/lang.fi.resx | 3 + Resources/Languages/lang.fr.resx | 3 + Resources/Languages/lang.ga.resx | 5 +- Resources/Languages/lang.gl.resx | 7 +- Resources/Languages/lang.gu.resx | 7 +- Resources/Languages/lang.hi.resx | 5 +- Resources/Languages/lang.hr.resx | 5 +- Resources/Languages/lang.ht.resx | 5 +- Resources/Languages/lang.hu.resx | 5 +- Resources/Languages/lang.hy.resx | 3 + Resources/Languages/lang.id.resx | 5 +- Resources/Languages/lang.is.resx | 5 +- Resources/Languages/lang.it.resx | 3 + Resources/Languages/lang.iw.resx | 7 +- Resources/Languages/lang.ja.resx | 9 +- Resources/Languages/lang.ka.resx | 7 +- Resources/Languages/lang.km.resx | 7 +- Resources/Languages/lang.kn.resx | 9 +- Resources/Languages/lang.ko.resx | 13 +- Resources/Languages/lang.la.resx | 5 +- Resources/Languages/lang.lo.resx | 3 + Resources/Languages/lang.lt.resx | 5 +- Resources/Languages/lang.lv.resx | 3 + Resources/Languages/lang.mk.resx | 3 + Resources/Languages/lang.ms.resx | 5 +- Resources/Languages/lang.mt.resx | 3 + Resources/Languages/lang.nl.resx | 7 +- Resources/Languages/lang.no.resx | 9 +- Resources/Languages/lang.pl.resx | 7 +- Resources/Languages/lang.pt-BR.resx | 3 + Resources/Languages/lang.pt-PT.resx | 3 + Resources/Languages/lang.resx | 3 + Resources/Languages/lang.ro.resx | 7 +- Resources/Languages/lang.ru.resx | 3 + Resources/Languages/lang.sk.resx | 3 + Resources/Languages/lang.sl.resx | 3 + Resources/Languages/lang.sq.resx | 5 +- Resources/Languages/lang.sr.resx | 3 + Resources/Languages/lang.sv.resx | 3 + Resources/Languages/lang.sw.resx | 3 + Resources/Languages/lang.ta.resx | 7 +- Resources/Languages/lang.te.resx | 9 +- Resources/Languages/lang.th.resx | 5 +- Resources/Languages/lang.tl.resx | 5 +- Resources/Languages/lang.tr.resx | 5 +- Resources/Languages/lang.uk.resx | 5 +- Resources/Languages/lang.ur.resx | 9 +- Resources/Languages/lang.vi.resx | 11 +- Resources/Languages/lang.yi.resx | 7 +- Resources/Languages/lang.zh-CN.resx | 3 + Resources/Languages/lang.zh-TW.resx | 5 +- Resources/SystemTrayMenu.png | Bin 0 -> 4743 bytes UserInterface/SettingsForm.Designer.cs | 196 +++-- UserInterface/SettingsForm.cs | 46 +- 75 files changed, 1002 insertions(+), 625 deletions(-) create mode 100644 Resources/SystemTrayMenu.png diff --git a/Config/Config.cs b/Config/Config.cs index 22efa26..2895108 100644 --- a/Config/Config.cs +++ b/Config/Config.cs @@ -44,6 +44,17 @@ namespace SystemTrayMenu { UpgradeIfNotUpgraded(); InitializeColors(); + if (string.IsNullOrEmpty(Settings.Default.PathIcoDirectory)) + { + Settings.Default.PathIcoDirectory = System.IO.Path.Combine( + System.IO.Path.Combine( + Environment.GetFolderPath( + Environment.SpecialFolder.ApplicationData), $"SystemTrayMenu"), "ico"); + if (!Directory.Exists(Settings.Default.PathIcoDirectory)) + { + Directory.CreateDirectory(Settings.Default.PathIcoDirectory); + } + } } public static void Dispose() @@ -109,6 +120,17 @@ namespace SystemTrayMenu } } + public static void SetFolderIcoByUser() + { + using FolderDialog dialog = new(); + dialog.InitialFolder = Settings.Default.PathIcoDirectory; + + if (dialog.ShowDialog() == DialogResult.OK) + { + Settings.Default.PathIcoDirectory = dialog.Folder; + } + } + internal static void ShowHelpFAQ() { Log.ProcessStart("https://github.com/Hofknecht/SystemTrayMenu#FAQ"); diff --git a/Helpers/DragDropHelper.cs b/Helpers/DragDropHelper.cs index ff2777f..734ff81 100644 --- a/Helpers/DragDropHelper.cs +++ b/Helpers/DragDropHelper.cs @@ -8,6 +8,7 @@ namespace SystemTrayMenu.Helper using System.IO; using System.Net.Http; using System.Text; + using System.Threading; using System.Windows.Forms; using SystemTrayMenu.DataClasses; using SystemTrayMenu.UserInterface; @@ -56,12 +57,17 @@ namespace SystemTrayMenu.Helper byte[] bytes = ms.ToArray(); Encoding encod = Encoding.ASCII; string url = encod.GetString(bytes); - CreateShortcut(url.Replace("\0", string.Empty), path); + + new Thread(CreateShortcutInBackground).Start(); + void CreateShortcutInBackground() + { + CreateShortcut(url.Replace("\0", string.Empty), path); + } } private static void CreateShortcut(string url, string pathToStoreFile) { - string pathToStoreIcons = Path.Combine(pathToStoreFile, "ico"); + string pathToStoreIcons = Properties.Settings.Default.PathIcoDirectory; if (!Directory.Exists(pathToStoreIcons)) { Directory.CreateDirectory(pathToStoreIcons); diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index 1b3c73e..80fd301 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -39,5 +39,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.2.9.16")] -[assembly: AssemblyFileVersion("1.2.9.16")] +[assembly: AssemblyVersion("1.2.9.17")] +[assembly: AssemblyFileVersion("1.2.9.17")] diff --git a/Properties/Settings.Designer.cs b/Properties/Settings.Designer.cs index 8ce32eb..26e43ec 100644 --- a/Properties/Settings.Designer.cs +++ b/Properties/Settings.Designer.cs @@ -30,16 +30,16 @@ namespace SystemTrayMenu.Properties [global::System.Configuration.UserScopedSettingAttribute()] [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string CurrentCultureInfoName + [global::System.Configuration.DefaultSettingValueAttribute("false")] + public bool IsUpgraded { get { - return ((string)(this["CurrentCultureInfoName"])); + return ((bool)(this["IsUpgraded"])); } set { - this["CurrentCultureInfoName"] = value; + this["IsUpgraded"] = value; } } @@ -59,38 +59,6 @@ namespace SystemTrayMenu.Properties } } - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string PathsAddToMainMenu - { - get - { - return ((string)(this["PathsAddToMainMenu"])); - } - set - { - this["PathsAddToMainMenu"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("false")] - public bool IsAutostartActivated - { - get - { - return ((bool)(this["IsAutostartActivated"])); - } - set - { - this["IsAutostartActivated"] = value; - } - } - [global::System.Configuration.UserScopedSettingAttribute()] [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] @@ -123,6 +91,22 @@ namespace SystemTrayMenu.Properties } } + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("false")] + public bool IsAutostartActivated + { + get + { + return ((bool)(this["IsAutostartActivated"])); + } + set + { + this["IsAutostartActivated"] = value; + } + } + [global::System.Configuration.UserScopedSettingAttribute()] [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] @@ -142,16 +126,225 @@ namespace SystemTrayMenu.Properties [global::System.Configuration.UserScopedSettingAttribute()] [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("false")] - public bool IsUpgraded + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string CurrentCultureInfoName { get { - return ((bool)(this["IsUpgraded"])); + return ((string)(this["CurrentCultureInfoName"])); } set { - this["IsUpgraded"] = value; + this["CurrentCultureInfoName"] = value; + } + } + + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("125")] + public int SizeInPercent + { + get + { + return ((int)(this["SizeInPercent"])); + } + set + { + this["SizeInPercent"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("100")] + public int IconSizeInPercent + { + get + { + return ((int)(this["IconSizeInPercent"])); + } + set + { + this["IconSizeInPercent"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("150")] + public int RowHeighteInPercentageTouch + { + get + { + return ((int)(this["RowHeighteInPercentageTouch"])); + } + set + { + this["RowHeighteInPercentageTouch"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("100")] + public int RowHeighteInPercentage + { + get + { + return ((int)(this["RowHeighteInPercentage"])); + } + set + { + this["RowHeighteInPercentage"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("400")] + public int MaximumMenuWidth + { + get + { + return ((int)(this["MaximumMenuWidth"])); + } + set + { + this["MaximumMenuWidth"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("450")] + public int MaximumMenuHeight + { + get + { + return ((int)(this["MaximumMenuHeight"])); + } + set + { + this["MaximumMenuHeight"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("true")] + public bool AppearAtTheBottomLeft + { + get + { + return ((bool)(this["AppearAtTheBottomLeft"])); + } + set + { + this["AppearAtTheBottomLeft"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("false")] + public bool UseCustomLocation + { + get + { + return ((bool)(this["UseCustomLocation"])); + } + set + { + this["UseCustomLocation"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("600")] + public int CustomLocationX + { + get + { + return ((int)(this["CustomLocationX"])); + } + set + { + this["CustomLocationX"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("600")] + public int CustomLocationY + { + get + { + return ((int)(this["CustomLocationY"])); + } + set + { + this["CustomLocationY"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("false")] + public bool AppearAtMouseLocation + { + get + { + return ((bool)(this["AppearAtMouseLocation"])); + } + set + { + this["AppearAtMouseLocation"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("true")] + public bool AppearNextToPreviousMenu + { + get + { + return ((bool)(this["AppearNextToPreviousMenu"])); + } + set + { + this["AppearNextToPreviousMenu"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("150")] + public int OverlappingOffsetPixels + { + get + { + return ((int)(this["OverlappingOffsetPixels"])); + } + set + { + this["OverlappingOffsetPixels"] = value; } } @@ -187,102 +380,6 @@ namespace SystemTrayMenu.Properties } } - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("true")] - public bool SystemSettingsShowHiddenFiles - { - get - { - return ((bool)(this["SystemSettingsShowHiddenFiles"])); - } - set - { - this["SystemSettingsShowHiddenFiles"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("false")] - public bool AlwaysShowHiddenFiles - { - get - { - return ((bool)(this["AlwaysShowHiddenFiles"])); - } - set - { - this["AlwaysShowHiddenFiles"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("false")] - public bool NeverShowHiddenFiles - { - get - { - return ((bool)(this["NeverShowHiddenFiles"])); - } - set - { - this["NeverShowHiddenFiles"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("true")] - public bool AppearAtTheBottomLeft - { - get - { - return ((bool)(this["AppearAtTheBottomLeft"])); - } - set - { - this["AppearAtTheBottomLeft"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("true")] - public bool AppearNextToPreviousMenu - { - get - { - return ((bool)(this["AppearNextToPreviousMenu"])); - } - set - { - this["AppearNextToPreviousMenu"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("150")] - public int OverlappingOffsetPixels - { - get - { - return ((int)(this["OverlappingOffsetPixels"])); - } - set - { - this["OverlappingOffsetPixels"] = value; - } - } - [global::System.Configuration.UserScopedSettingAttribute()] [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] @@ -379,6 +476,22 @@ namespace SystemTrayMenu.Properties } } + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string PathIcoDirectory + { + get + { + return ((string)(this["PathIcoDirectory"])); + } + set + { + this["PathIcoDirectory"] = value; + } + } + [global::System.Configuration.UserScopedSettingAttribute()] [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] @@ -395,6 +508,54 @@ namespace SystemTrayMenu.Properties } } + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("true")] + public bool SystemSettingsShowHiddenFiles + { + get + { + return ((bool)(this["SystemSettingsShowHiddenFiles"])); + } + set + { + this["SystemSettingsShowHiddenFiles"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("false")] + public bool NeverShowHiddenFiles + { + get + { + return ((bool)(this["NeverShowHiddenFiles"])); + } + set + { + this["NeverShowHiddenFiles"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("false")] + public bool AlwaysShowHiddenFiles + { + get + { + return ((bool)(this["AlwaysShowHiddenFiles"])); + } + set + { + this["AlwaysShowHiddenFiles"] = value; + } + } + [global::System.Configuration.UserScopedSettingAttribute()] [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] @@ -411,6 +572,22 @@ namespace SystemTrayMenu.Properties } } + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string PathsAddToMainMenu + { + get + { + return ((string)(this["PathsAddToMainMenu"])); + } + set + { + this["PathsAddToMainMenu"] = value; + } + } + [global::System.Configuration.UserScopedSettingAttribute()] [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] @@ -427,6 +604,102 @@ namespace SystemTrayMenu.Properties } } + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("100")] + public int TimeUntilOpens + { + get + { + return ((int)(this["TimeUntilOpens"])); + } + set + { + this["TimeUntilOpens"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("true")] + public bool StaysOpenWhenItemClicked + { + get + { + return ((bool)(this["StaysOpenWhenItemClicked"])); + } + set + { + this["StaysOpenWhenItemClicked"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("true")] + public bool StaysOpenWhenFocusLost + { + get + { + return ((bool)(this["StaysOpenWhenFocusLost"])); + } + set + { + this["StaysOpenWhenFocusLost"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("400")] + public int TimeUntilCloses + { + get + { + return ((int)(this["TimeUntilCloses"])); + } + set + { + this["TimeUntilCloses"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("true")] + public bool StaysOpenWhenFocusLostAfterEnterPressed + { + get + { + return ((bool)(this["StaysOpenWhenFocusLostAfterEnterPressed"])); + } + set + { + this["StaysOpenWhenFocusLostAfterEnterPressed"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("200")] + public int TimeUntilClosesAfterEnterPressed + { + get + { + return ((int)(this["TimeUntilClosesAfterEnterPressed"])); + } + set + { + this["TimeUntilClosesAfterEnterPressed"] = value; + } + } + [global::System.Configuration.UserScopedSettingAttribute()] [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] @@ -443,6 +716,70 @@ namespace SystemTrayMenu.Properties } } + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("200")] + public int ClearCacheIfMoreThanThisNumberOfItems + { + get + { + return ((int)(this["ClearCacheIfMoreThanThisNumberOfItems"])); + } + set + { + this["ClearCacheIfMoreThanThisNumberOfItems"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string SearchPattern + { + get + { + return ((string)(this["SearchPattern"])); + } + set + { + this["SearchPattern"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("false")] + public bool UseIconFromRootFolder + { + get + { + return ((bool)(this["UseIconFromRootFolder"])); + } + set + { + this["UseIconFromRootFolder"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("false")] + public bool RoundCorners + { + get + { + return ((bool)(this["RoundCorners"])); + } + set + { + this["RoundCorners"] = value; + } + } + [global::System.Configuration.UserScopedSettingAttribute()] [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] @@ -459,6 +796,22 @@ namespace SystemTrayMenu.Properties } } + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("false")] + public bool UseFading + { + get + { + return ((bool)(this["UseFading"])); + } + set + { + this["UseFading"] = value; + } + } + [global::System.Configuration.UserScopedSettingAttribute()] [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] @@ -507,22 +860,6 @@ namespace SystemTrayMenu.Properties } } - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("false")] - public bool ShowCountOfElementsBelow - { - get - { - return ((bool)(this["ShowCountOfElementsBelow"])); - } - set - { - this["ShowCountOfElementsBelow"] = value; - } - } - [global::System.Configuration.UserScopedSettingAttribute()] [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] @@ -539,307 +876,19 @@ namespace SystemTrayMenu.Properties } } - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("200")] - public int ClearCacheIfMoreThanThisNumberOfItems - { - get - { - return ((int)(this["ClearCacheIfMoreThanThisNumberOfItems"])); - } - set - { - this["ClearCacheIfMoreThanThisNumberOfItems"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("125")] - public int SizeInPercent - { - get - { - return ((int)(this["SizeInPercent"])); - } - set - { - this["SizeInPercent"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("150")] - public int RowHeighteInPercentageTouch - { - get - { - return ((int)(this["RowHeighteInPercentageTouch"])); - } - set - { - this["RowHeighteInPercentageTouch"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("100")] - public int RowHeighteInPercentage - { - get - { - return ((int)(this["RowHeighteInPercentage"])); - } - set - { - this["RowHeighteInPercentage"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("100")] - public int IconSizeInPercent - { - get - { - return ((int)(this["IconSizeInPercent"])); - } - set - { - this["IconSizeInPercent"] = value; - } - } - [global::System.Configuration.UserScopedSettingAttribute()] [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Configuration.DefaultSettingValueAttribute("false")] - public bool RoundCorners + public bool ShowCountOfElementsBelow { get { - return ((bool)(this["RoundCorners"])); + return ((bool)(this["ShowCountOfElementsBelow"])); } set { - this["RoundCorners"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("400")] - public int MaximumMenuWidth - { - get - { - return ((int)(this["MaximumMenuWidth"])); - } - set - { - this["MaximumMenuWidth"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("450")] - public int MaximumMenuHeight - { - get - { - return ((int)(this["MaximumMenuHeight"])); - } - set - { - this["MaximumMenuHeight"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("false")] - public bool AppearAtMouseLocation - { - get - { - return ((bool)(this["AppearAtMouseLocation"])); - } - set - { - this["AppearAtMouseLocation"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("false")] - public bool UseCustomLocation - { - get - { - return ((bool)(this["UseCustomLocation"])); - } - set - { - this["UseCustomLocation"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("false")] - public bool UseFading - { - get - { - return ((bool)(this["UseFading"])); - } - set - { - this["UseFading"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("600")] - public int CustomLocationX - { - get - { - return ((int)(this["CustomLocationX"])); - } - set - { - this["CustomLocationX"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("600")] - public int CustomLocationY - { - get - { - return ((int)(this["CustomLocationY"])); - } - set - { - this["CustomLocationY"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("true")] - public bool StaysOpenWhenItemClicked - { - get - { - return ((bool)(this["StaysOpenWhenItemClicked"])); - } - set - { - this["StaysOpenWhenItemClicked"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("true")] - public bool StaysOpenWhenFocusLost - { - get - { - return ((bool)(this["StaysOpenWhenFocusLost"])); - } - set - { - this["StaysOpenWhenFocusLost"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("400")] - public int TimeUntilCloses - { - get - { - return ((int)(this["TimeUntilCloses"])); - } - set - { - this["TimeUntilCloses"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("100")] - public int TimeUntilOpens - { - get - { - return ((int)(this["TimeUntilOpens"])); - } - set - { - this["TimeUntilOpens"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("true")] - public bool StaysOpenWhenFocusLostAfterEnterPressed - { - get - { - return ((bool)(this["StaysOpenWhenFocusLostAfterEnterPressed"])); - } - set - { - this["StaysOpenWhenFocusLostAfterEnterPressed"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("200")] - public int TimeUntilClosesAfterEnterPressed - { - get - { - return ((int)(this["TimeUntilClosesAfterEnterPressed"])); - } - set - { - this["TimeUntilClosesAfterEnterPressed"] = value; + this["ShowCountOfElementsBelow"] = value; } } @@ -1386,22 +1435,6 @@ namespace SystemTrayMenu.Properties this["ColorScrollbarBackgroundDarkMode"] = value; } } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("false")] - public bool UseIconFromRootFolder - { - get - { - return ((bool)(this["UseIconFromRootFolder"])); - } - set - { - this["UseIconFromRootFolder"] = value; - } - } [global::System.Configuration.UserScopedSettingAttribute()] [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] @@ -1434,21 +1467,5 @@ namespace SystemTrayMenu.Properties this["ColorDarkModeIcons"] = value; } } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string SearchPattern - { - get - { - return ((string)(this["SearchPattern"])); - } - set - { - this["SearchPattern"] = value; - } - } } } diff --git a/Resources/Languages/lang.af.resx b/Resources/Languages/lang.af.resx index b7a9ec2..6f43cff 100644 --- a/Resources/Languages/lang.af.resx +++ b/Resources/Languages/lang.af.resx @@ -504,4 +504,7 @@ Wys skakeloorleg + + Gids van internetkortpad-ikone + \ No newline at end of file diff --git a/Resources/Languages/lang.ar.resx b/Resources/Languages/lang.ar.resx index 748ec71..1999644 100644 --- a/Resources/Languages/lang.ar.resx +++ b/Resources/Languages/lang.ar.resx @@ -238,7 +238,7 @@ الدليل المفتوح - حد الدليل المفتوح + حدود الدليل المفتوح مجال البحث @@ -376,7 +376,7 @@ الملفات فقط - القائمة الرئيسية لذاكرة التخزين المؤقت + ذاكرة التخزين المؤقت القائمة الرئيسية امسح ذاكرة التخزين المؤقت إذا كان هناك أكثر من هذا العدد من العناصر @@ -475,7 +475,7 @@ فرز - نسخ عنصر الصف عن طريق السحب والإسقاط + نسخ عنصر الصف عن طريق السحب والإفلات يجر @@ -504,4 +504,7 @@ إظهار تراكب الارتباط + + دليل أيقونات اختصارات الإنترنت + \ No newline at end of file diff --git a/Resources/Languages/lang.az.resx b/Resources/Languages/lang.az.resx index 8bac852..a483a84 100644 --- a/Resources/Languages/lang.az.resx +++ b/Resources/Languages/lang.az.resx @@ -133,7 +133,7 @@ kataloq - Kataloq boşdur + Kataloq boş Təfərrüatlar @@ -259,7 +259,7 @@ Konfiqurasiya faylı və log faylı - Tətbiq qovluğunu açın + Proqram qovluğunu açın Piksel maksimum menyu hündürlüyü @@ -310,7 +310,7 @@ Ölçü - Menyu sərhədi + Menyunun sərhədi Nişanlar @@ -427,7 +427,7 @@ Gizli fayllar və qovluqlar - Heç vaxt gizli faylları, qovluqları və ya diskləri göstərməyin + Heç vaxt gizli faylları, qovluqları və ya sürücüləri göstərməyin Ölçü və yer @@ -504,4 +504,7 @@ Link örtüyünü göstərin + + İnternet Qısayol İkonlarının Kataloqu + \ No newline at end of file diff --git a/Resources/Languages/lang.be.resx b/Resources/Languages/lang.be.resx index 19a4252..508140a 100644 --- a/Resources/Languages/lang.be.resx +++ b/Resources/Languages/lang.be.resx @@ -196,7 +196,7 @@ Пашыраны - Па месцы размяшчэння мышы + У месцы размяшчэння мышы Змена каталога @@ -316,7 +316,7 @@ Абразкі - Усталёўваецца з дапамогай кантэкстнага меню + Устанаўліваецца з дапамогай кантэкстнага меню Ўсталяваць у якасці каталога @@ -504,4 +504,7 @@ Паказаць накладанне спасылак + + Каталог значкоў інтэрнэт-цэтлікаў + \ No newline at end of file diff --git a/Resources/Languages/lang.bg.resx b/Resources/Languages/lang.bg.resx index 75ed3b5..61bb290 100644 --- a/Resources/Languages/lang.bg.resx +++ b/Resources/Languages/lang.bg.resx @@ -504,4 +504,7 @@ Показване на наслагване на връзката + + Директория с икони за бърз достъп до интернет + \ No newline at end of file diff --git a/Resources/Languages/lang.bn.resx b/Resources/Languages/lang.bn.resx index 72e9478..0c2e0cf 100644 --- a/Resources/Languages/lang.bn.resx +++ b/Resources/Languages/lang.bn.resx @@ -316,7 +316,7 @@ আইকন - প্রসঙ্গ মেনু দ্বারা সেট + প্রসঙ্গ মেনু দ্বারা সেট করুন ডিরেক্টরি হিসাবে সেট করুন @@ -475,7 +475,7 @@ শ্রেণীবিভাজন - ড্র্যাগ ড্রপের মাধ্যমে সারি আইটেম কপি করুন + ড্র্যাগ ড্রপের মাধ্যমে সারি আইটেম অনুলিপি করুন টেনে আনুন @@ -504,4 +504,7 @@ লিঙ্ক ওভারলে দেখান + + ইন্টারনেট শর্টকাট আইকনের ডিরেক্টরি + \ No newline at end of file diff --git a/Resources/Languages/lang.ca.resx b/Resources/Languages/lang.ca.resx index 2e30786..5f24be1 100644 --- a/Resources/Languages/lang.ca.resx +++ b/Resources/Languages/lang.ca.resx @@ -445,7 +445,7 @@ Al costat de l'anterior - Compensació per píxels + Compensació de píxels Superposició @@ -504,4 +504,7 @@ Mostra la superposició d'enllaços + + Directori d'icones de dreceres d'Internet + \ No newline at end of file diff --git a/Resources/Languages/lang.cs.resx b/Resources/Languages/lang.cs.resx index 81d4bec..4b6ece4 100644 --- a/Resources/Languages/lang.cs.resx +++ b/Resources/Languages/lang.cs.resx @@ -271,7 +271,7 @@ Šipka při kliknutí - Šipka, zatímco nad ní umístíte myš + Šipka, zatímco nad ní přechází myš Pozadí šipky při kliknutí @@ -504,4 +504,7 @@ Zobrazit překryvnou vrstvu odkazu + + Adresář ikon zástupců Internetu + \ No newline at end of file diff --git a/Resources/Languages/lang.cy.resx b/Resources/Languages/lang.cy.resx index 1e8bbdc..b62e692 100644 --- a/Resources/Languages/lang.cy.resx +++ b/Resources/Languages/lang.cy.resx @@ -504,4 +504,7 @@ Dangos troshaen cyswllt + + Cyfeiriadur o Eiconau Llwybr Byr Rhyngrwyd + \ No newline at end of file diff --git a/Resources/Languages/lang.da.resx b/Resources/Languages/lang.da.resx index 1f7d57d..a7e5d0c 100644 --- a/Resources/Languages/lang.da.resx +++ b/Resources/Languages/lang.da.resx @@ -184,7 +184,7 @@ Din rodmappe til appen eksisterer ikke eller er tom! Skift rodmappen eller indsæt nogle filer, mapper eller genveje i rodmappen. - Du har ingen adgang til rodmappen til appen. Giv adgang til biblioteket eller skift rodmappen. + Du har ingen adgang til rodmappen på appen. Giv adgang til biblioteket eller skift rodmappen. Enkeltklik for at åbne et element i stedet for at dobbeltklikke @@ -349,7 +349,7 @@ Hvis fokus mistes, og Enter-tasten blev trykket - Millisekunder indtil menuen lukker, hvis menuen i dette tilfælde ikke genaktiveres + Millisekunder, indtil menuen lukker, hvis menuen i dette tilfælde ikke genaktiveres Vis i proceslinjen @@ -358,10 +358,10 @@ Tilføj bibliotek - Tilføj indhold af mappe til rodbibliotek + Tilføj indholdet af mappen til rodmappen - Directory stier + Vejviserstier Vejviser @@ -504,4 +504,7 @@ Vis linkoverlejring + + Katalog over internetgenvejsikoner + \ No newline at end of file diff --git a/Resources/Languages/lang.de.resx b/Resources/Languages/lang.de.resx index 50e56ce..0268bd2 100644 --- a/Resources/Languages/lang.de.resx +++ b/Resources/Languages/lang.de.resx @@ -504,4 +504,7 @@ Link-Overlay anzeigen + + Verzeichnis der Internet-Verknüpfungssymbole + \ No newline at end of file diff --git a/Resources/Languages/lang.el.resx b/Resources/Languages/lang.el.resx index c133c62..3a8092a 100644 --- a/Resources/Languages/lang.el.resx +++ b/Resources/Languages/lang.el.resx @@ -133,7 +133,7 @@ Ευρετήριο - Κενός κατάλογος + Ο κατάλογος είναι κενός Λεπτομέριες @@ -504,4 +504,7 @@ Εμφάνιση επικάλυψης συνδέσμου + + Κατάλογος εικονιδίων συντομεύσεων Διαδικτύου + \ No newline at end of file diff --git a/Resources/Languages/lang.eo.resx b/Resources/Languages/lang.eo.resx index c32a7a5..db11f65 100644 --- a/Resources/Languages/lang.eo.resx +++ b/Resources/Languages/lang.eo.resx @@ -463,7 +463,7 @@ Forvelkanta - Sendu klavoklavon al alia petskribo + Sendu klavoklavon al alia kazo Ordigi laŭ dato @@ -504,4 +504,7 @@ Montru ligkovraĵon + + Dosierujo de Interretaj Ŝparvojaj Ikonoj + \ No newline at end of file diff --git a/Resources/Languages/lang.es.resx b/Resources/Languages/lang.es.resx index 9110302..2b660f9 100644 --- a/Resources/Languages/lang.es.resx +++ b/Resources/Languages/lang.es.resx @@ -163,7 +163,7 @@ General - tecla de acceso rápido + tecla de acceso directo Empieza con las ventanas @@ -217,7 +217,7 @@ Milisegundos hasta que se abre un menú cuando el mouse está sobre él - Milisegundos hasta que se cierre el menú si en este caso el ratón sale del menú + Milisegundos hasta que el menú se cierre si en este caso el ratón sale del menú Ancho máximo de menú en píxeles @@ -364,7 +364,7 @@ Rutas de directorio - Directorios + directorios recursivo @@ -504,4 +504,7 @@ Mostrar superposición de enlaces + + Directorio de iconos de acceso directo a Internet + \ No newline at end of file diff --git a/Resources/Languages/lang.et.resx b/Resources/Languages/lang.et.resx index fd073ca..dd2aaae 100644 --- a/Resources/Languages/lang.et.resx +++ b/Resources/Languages/lang.et.resx @@ -139,7 +139,7 @@ Üksikasjad - Süsteemi teave + Süsteemiteave Kataloog pole juurdepääsetav @@ -504,4 +504,7 @@ Kuva lingi ülekate + + Interneti otseteede ikoonide kataloog + \ No newline at end of file diff --git a/Resources/Languages/lang.eu.resx b/Resources/Languages/lang.eu.resx index 7e41575..35086dc 100644 --- a/Resources/Languages/lang.eu.resx +++ b/Resources/Languages/lang.eu.resx @@ -175,7 +175,7 @@ Galdera arruntak - Irakurri ohiko galderak eta, ondoren, aukeratu SystemTrayMenurako erro-direktorio bat. + Irakurri ohiko galderak eta, ondoren, aukeratu SystemTrayMenurako root direktorioa. Hautatu direktorioa @@ -226,7 +226,7 @@ Zabalik egoten da - Denbora menu bat ireki arte + Menu bat ireki arte Elementu batean klik egin bada @@ -376,7 +376,7 @@ Fitxategiak bakarrik - Cachearen menu nagusia + Cache menu nagusia Garbitu cachea elementu kopuru hori baino gehiago bada @@ -504,4 +504,7 @@ Erakutsi esteken gainjartzea + + Interneteko lasterbideen ikonoen direktorioa + \ No newline at end of file diff --git a/Resources/Languages/lang.fa.resx b/Resources/Languages/lang.fa.resx index 41eff22..f638e92 100644 --- a/Resources/Languages/lang.fa.resx +++ b/Resources/Languages/lang.fa.resx @@ -337,7 +337,7 @@ Task Manager - غیرفعال شد + غیر فعال شد فعال شد @@ -436,7 +436,7 @@ از تنظیمات سیستم عامل استفاده کنید - نمایش فقط به عنوان نتیجه جستجو + فقط به عنوان نتیجه جستجو نمایش داده شود یک کلیک برای باز کردن یک دایرکتوری به جای دوبار کلیک کردن @@ -445,7 +445,7 @@ کنار قبلی - افست با پیکسل + انحراف با پیکسل با هم تداخل دارند @@ -504,4 +504,7 @@ نمایش همپوشانی پیوند + + دایرکتوری آیکون های میانبر اینترنت + \ No newline at end of file diff --git a/Resources/Languages/lang.fi.resx b/Resources/Languages/lang.fi.resx index 775266c..c422d5e 100644 --- a/Resources/Languages/lang.fi.resx +++ b/Resources/Languages/lang.fi.resx @@ -504,4 +504,7 @@ Näytä linkin peittokuva + + Internet-pikakuvakkeiden hakemisto + \ No newline at end of file diff --git a/Resources/Languages/lang.fr.resx b/Resources/Languages/lang.fr.resx index f46c058..6a5ffc0 100644 --- a/Resources/Languages/lang.fr.resx +++ b/Resources/Languages/lang.fr.resx @@ -504,4 +504,7 @@ Afficher la superposition de liens + + Répertoire des icônes de raccourcis Internet + \ No newline at end of file diff --git a/Resources/Languages/lang.ga.resx b/Resources/Languages/lang.ga.resx index 30e4e7c..7bf72ed 100644 --- a/Resources/Languages/lang.ga.resx +++ b/Resources/Languages/lang.ga.resx @@ -499,9 +499,12 @@ Taispeáin barra cuardaigh - Comhad loga a shábháil in eolaire feidhmchlár in ionad AppData + Comhad loga a shábháil san eolaire feidhmchlár in ionad AppData Taispeáin forleagan naisc + + Eolaire de Dheilbhíní Aicearra Idirlín + \ No newline at end of file diff --git a/Resources/Languages/lang.gl.resx b/Resources/Languages/lang.gl.resx index f17dbb0..b6d6356 100644 --- a/Resources/Languages/lang.gl.resx +++ b/Resources/Languages/lang.gl.resx @@ -316,7 +316,7 @@ Iconas - Establecer mediante menú contextual + Establecido por menú contextual Establecer como directorio @@ -442,7 +442,7 @@ Fai un só clic para abrir un directorio en lugar de facer dobre clic - A carón do anterior + Xunto ao anterior Compensación por píxeles @@ -504,4 +504,7 @@ Mostra a superposición de ligazóns + + Directorio de iconas de atallos de Internet + \ No newline at end of file diff --git a/Resources/Languages/lang.gu.resx b/Resources/Languages/lang.gu.resx index 3468656..afc89ea 100644 --- a/Resources/Languages/lang.gu.resx +++ b/Resources/Languages/lang.gu.resx @@ -235,7 +235,7 @@ પૃષ્ઠભૂમિ - ડિરેક્ટરી ખોલી + ખોલી ડિરેક્ટરી ખોલેલી ડિરેક્ટરીની સરહદ @@ -286,7 +286,7 @@ રંગ યોજના તેજસ્વી - એપ્લિકેશન મેનુ + એપ્લિકેશન મેનૂ સ્ક્રોલબાર @@ -504,4 +504,7 @@ લિંક ઓવરલે બતાવો + + ઈન્ટરનેટ શોર્ટકટ ચિહ્નોની ડિરેક્ટરી + \ No newline at end of file diff --git a/Resources/Languages/lang.hi.resx b/Resources/Languages/lang.hi.resx index 75415c2..b24912e 100644 --- a/Resources/Languages/lang.hi.resx +++ b/Resources/Languages/lang.hi.resx @@ -181,7 +181,7 @@ निर्देशिका का चयन करें - ऐप के लिए आपकी रूट डायरेक्टरी मौजूद नहीं है या खाली है! रूट डायरेक्टरी बदलें या रूट डायरेक्टरी में कुछ फाइल, डायरेक्टरी या शॉर्टकट डालें। + ऐप के लिए आपकी रूट निर्देशिका मौजूद नहीं है या खाली है! रूट डायरेक्टरी बदलें या रूट डायरेक्टरी में कुछ फाइल, डायरेक्टरी या शॉर्टकट डालें। आपके पास ऐप की रूट डायरेक्टरी तक पहुंच नहीं है। निर्देशिका तक पहुंच प्रदान करें या रूट निर्देशिका बदलें। @@ -504,4 +504,7 @@ लिंक ओवरले दिखाएं + + इंटरनेट शॉर्टकट आइकन की निर्देशिका + \ No newline at end of file diff --git a/Resources/Languages/lang.hr.resx b/Resources/Languages/lang.hr.resx index c17fc16..1e507a4 100644 --- a/Resources/Languages/lang.hr.resx +++ b/Resources/Languages/lang.hr.resx @@ -403,7 +403,7 @@ Pojavljuje se glavni izbornik - Lokacija miša (iznad ikone na traci zadataka) + Lokacija miša (iznad ikone trake zadataka) Prilagođeno (povucite na odgovarajuće mjesto) @@ -504,4 +504,7 @@ Prikaži preklapanje veze + + Imenik ikona internetskih prečaca + \ No newline at end of file diff --git a/Resources/Languages/lang.ht.resx b/Resources/Languages/lang.ht.resx index 0179dc1..6ae8802 100644 --- a/Resources/Languages/lang.ht.resx +++ b/Resources/Languages/lang.ht.resx @@ -310,7 +310,7 @@ Gwosè - Fwontyè meni an + Fwontyè nan meni an Ikon @@ -504,4 +504,7 @@ Montre lyen ki kouvri + + Anyè ikon chemen kout sou entènèt + \ No newline at end of file diff --git a/Resources/Languages/lang.hu.resx b/Resources/Languages/lang.hu.resx index 3af463e..63021e1 100644 --- a/Resources/Languages/lang.hu.resx +++ b/Resources/Languages/lang.hu.resx @@ -403,7 +403,7 @@ Megjelenik a főmenü - Az egér helye (a tálca ikonja felett) + Az egér helye (a tálcán lévő ikon felett) Egyéni (húzza a megfelelő helyre) @@ -504,4 +504,7 @@ Linkfedvény megjelenítése + + Internet parancsikonok könyvtára + \ No newline at end of file diff --git a/Resources/Languages/lang.hy.resx b/Resources/Languages/lang.hy.resx index 3e7c460..886baf5 100644 --- a/Resources/Languages/lang.hy.resx +++ b/Resources/Languages/lang.hy.resx @@ -504,4 +504,7 @@ Ցույց տալ հղման ծածկույթը + + Ինտերնետային դյուրանցումների պատկերակների տեղեկատու + \ No newline at end of file diff --git a/Resources/Languages/lang.id.resx b/Resources/Languages/lang.id.resx index 89e8e05..d0446a6 100644 --- a/Resources/Languages/lang.id.resx +++ b/Resources/Languages/lang.id.resx @@ -382,7 +382,7 @@ Hapus cache jika lebih dari jumlah item ini - Tambahkan direktori contoh 'Start Menu' + Tambahkan direktori sampel 'Start Menu' Tinggi baris dalam persen @@ -504,4 +504,7 @@ Tampilkan hamparan tautan + + Direktori Ikon Pintasan Internet + \ No newline at end of file diff --git a/Resources/Languages/lang.is.resx b/Resources/Languages/lang.is.resx index 12bdd15..637880c 100644 --- a/Resources/Languages/lang.is.resx +++ b/Resources/Languages/lang.is.resx @@ -403,7 +403,7 @@ Aðalvalmynd birtist - Staðsetning músar (fyrir ofan verkefnastikuna) + Staðsetning músar (fyrir ofan verkstiku táknið) Sérsniðið (dragaðu það á viðeigandi stað) @@ -504,4 +504,7 @@ Sýna hlekkjayfirlag + + Skrá yfir Internet flýtivísa tákn + \ No newline at end of file diff --git a/Resources/Languages/lang.it.resx b/Resources/Languages/lang.it.resx index 3d93738..64ca808 100644 --- a/Resources/Languages/lang.it.resx +++ b/Resources/Languages/lang.it.resx @@ -504,4 +504,7 @@ Mostra sovrapposizione link + + Directory di icone di collegamento a Internet + \ No newline at end of file diff --git a/Resources/Languages/lang.iw.resx b/Resources/Languages/lang.iw.resx index 22b5126..bfd7256 100644 --- a/Resources/Languages/lang.iw.resx +++ b/Resources/Languages/lang.iw.resx @@ -181,7 +181,7 @@ בחר ספרייה - ספריית השורש שלך עבור האפליקציה אינה קיימת או ריקה! שנה את ספריית השורש או הכנס מספר קבצים, ספריות או קיצורי דרך בספריית השורש. + ספריית השורש שלך עבור האפליקציה אינה קיימת או ריקה! שנה את ספריית השורש או הכנס כמה קבצים, ספריות או קיצורי דרך בספריית השורש. אין לך גישה לספריית השורש של האפליקציה. הענק גישה לספרייה או שנה את ספריית הבסיס. @@ -424,7 +424,7 @@ הצג תמיד קבצים מוסתרים, ספריות או כוננים - קבצים וספריות מוסתרים + קבצים וספריות נסתרות לעולם אל תציג קבצים מוסתרים, ספריות או כוננים @@ -504,4 +504,7 @@ הצג שכבת-על של קישור + + ספריית סמלי קיצורי אינטרנט + \ No newline at end of file diff --git a/Resources/Languages/lang.ja.resx b/Resources/Languages/lang.ja.resx index 54bec89..e9683b7 100644 --- a/Resources/Languages/lang.ja.resx +++ b/Resources/Languages/lang.ja.resx @@ -175,7 +175,7 @@ よくある質問 - FAQを読み、SystemTrayMenuのルートディレクトリを選択します。 + FAQを読んでから、SystemTrayMenuのルートディレクトリを選択してください。 ディレクトリを選択 @@ -331,7 +331,7 @@ このショートカットが参照するアイテムが変更または移動されたため、このショートカットは正しく機能しなくなります。 - Directoryを開く + ディレクトリを開く タスクマネージャー @@ -340,7 +340,7 @@ 非アクティブ化 - 有効化 + アクティベート エキスパート @@ -504,4 +504,7 @@ リンクオーバーレイを表示 + + インターネットショートカットアイコンのディレクトリ + \ No newline at end of file diff --git a/Resources/Languages/lang.ka.resx b/Resources/Languages/lang.ka.resx index 30d7f52..fc4e086 100644 --- a/Resources/Languages/lang.ka.resx +++ b/Resources/Languages/lang.ka.resx @@ -316,7 +316,7 @@ ხატები - კონტექსტური მენიუს დაყენება + დაყენებულია კონტექსტური მენიუს მიხედვით დააყენეთ დირექტორიად @@ -481,7 +481,7 @@ გადაათრიეთ - გადაფურცლეთ დარტყმის საშუალებით + გადაფურცვლა დარტყმის საშუალებით მენიუს გაფილტვრა ფაილის ტიპის მიხედვით, მაგ.: *.exe|*.dll @@ -504,4 +504,7 @@ ბმულის გადაფარვის ჩვენება + + ინტერნეტ მალსახმობების ხატულების დირექტორია + \ No newline at end of file diff --git a/Resources/Languages/lang.km.resx b/Resources/Languages/lang.km.resx index f0b63e6..3d2b315 100644 --- a/Resources/Languages/lang.km.resx +++ b/Resources/Languages/lang.km.resx @@ -355,7 +355,7 @@ បង្ហាញនៅក្នុងរបារភារកិច្ច - បន្ថែម​ថត + បន្ថែមថត បន្ថែមមាតិកានៃថតទៅថតឫស @@ -502,6 +502,9 @@ ការរក្សាទុកឯកសារកំណត់ហេតុនៅក្នុងថតកម្មវិធីជំនួសឱ្យ AppData - បង្ហាញតំណជាន់លើ + បង្ហាញការត្រួតលើតំណ + + + បញ្ជីឈ្មោះរូបតំណាងផ្លូវកាត់អ៊ីនធឺណិត \ No newline at end of file diff --git a/Resources/Languages/lang.kn.resx b/Resources/Languages/lang.kn.resx index 4f38722..515ea29 100644 --- a/Resources/Languages/lang.kn.resx +++ b/Resources/Languages/lang.kn.resx @@ -349,7 +349,7 @@ ಫೋಕಸ್ ಕಳೆದುಹೋದರೆ ಮತ್ತು Enter ಕೀಲಿಯನ್ನು ಒತ್ತಿದರೆ - ಈ ಸಂದರ್ಭದಲ್ಲಿ ಮೆನುವನ್ನು ಮರುಸಕ್ರಿಯಗೊಳಿಸದಿದ್ದರೆ ಮೆನು ಮುಚ್ಚುವವರೆಗೆ ಮಿಲಿಸೆಕೆಂಡುಗಳು + ಈ ಸಂದರ್ಭದಲ್ಲಿ ಮೆನುವನ್ನು ಮರುಸಕ್ರಿಯಗೊಳಿಸದಿದ್ದಲ್ಲಿ ಮೆನು ಮುಚ್ಚುವವರೆಗೆ ಮಿಲಿಸೆಕೆಂಡುಗಳು ಕಾರ್ಯಪಟ್ಟಿಯಲ್ಲಿ ತೋರಿಸಿ @@ -361,7 +361,7 @@ ಡೈರೆಕ್ಟರಿಯ ವಿಷಯವನ್ನು ರೂಟ್ ಡೈರೆಕ್ಟರಿಗೆ ಸೇರಿಸಿ - ಡೈರೆಕ್ಟರಿ ಮಾರ್ಗಗಳು + ಡೈರೆಕ್ಟರಿ ಪಥಗಳು ಡೈರೆಕ್ಟರಿಗಳು @@ -385,7 +385,7 @@ ಮಾದರಿ ಡೈರೆಕ್ಟರಿಯನ್ನು ಸೇರಿಸಿ 'ಪ್ರಾರಂಭ ಮೆನು' - ಸಾಲು ಎತ್ತರ ಶೇಕಡಾ + ಸಾಲಿನ ಎತ್ತರ ಶೇಕಡಾ ಸುತ್ತಿನ ಮೂಲೆಗಳು @@ -504,4 +504,7 @@ ಲಿಂಕ್ ಓವರ್‌ಲೇ ತೋರಿಸಿ + + ಇಂಟರ್ನೆಟ್ ಶಾರ್ಟ್‌ಕಟ್ ಐಕಾನ್‌ಗಳ ಡೈರೆಕ್ಟರಿ + \ No newline at end of file diff --git a/Resources/Languages/lang.ko.resx b/Resources/Languages/lang.ko.resx index 297dd22..165284f 100644 --- a/Resources/Languages/lang.ko.resx +++ b/Resources/Languages/lang.ko.resx @@ -211,7 +211,7 @@ 기본 - 초점을 잃고 마우스가 여전히 메뉴에 있는 경우 + 포커스가 손실되고 마우스가 여전히 메뉴에 있는 경우 마우스가 메뉴에 있을 때 메뉴가 열릴 때까지의 밀리초 @@ -439,7 +439,7 @@ 검색 결과로만 표시 - 더블 클릭 대신 한 번의 클릭으로 디렉토리 열기 + 더블 클릭이 아닌 한 번의 클릭으로 디렉토리 열기 전작에 이어 @@ -451,13 +451,13 @@ 겹침 - 하위 메뉴가 나타납니다 + 하위 메뉴가 나타납니다. - 아이콘 크기(퍼센트) + 아이콘 크기(%) - 지원 시스템 트레이 메뉴 + 지원 시스템TrayMenu 페이딩 @@ -504,4 +504,7 @@ 링크 오버레이 표시 + + 인터넷 바로 가기 아이콘 디렉토리 + \ No newline at end of file diff --git a/Resources/Languages/lang.la.resx b/Resources/Languages/lang.la.resx index 210cd01..bad2e19 100644 --- a/Resources/Languages/lang.la.resx +++ b/Resources/Languages/lang.la.resx @@ -475,7 +475,7 @@ Sorting - Effingo row item per drag stilla + Effingo row item per drag gutta Drag @@ -504,4 +504,7 @@ Ostendere nexum operies + + Directorium Internet Brevis Icones + \ No newline at end of file diff --git a/Resources/Languages/lang.lo.resx b/Resources/Languages/lang.lo.resx index 45a91a8..60afb80 100644 --- a/Resources/Languages/lang.lo.resx +++ b/Resources/Languages/lang.lo.resx @@ -504,4 +504,7 @@ ສະແດງການວາງຊ້ອນລິ້ງ + + ໄດເລກະທໍລີຂອງໄອຄອນທາງລັດອິນເຕີເນັດ + \ No newline at end of file diff --git a/Resources/Languages/lang.lt.resx b/Resources/Languages/lang.lt.resx index 5618b7a..51dd431 100644 --- a/Resources/Languages/lang.lt.resx +++ b/Resources/Languages/lang.lt.resx @@ -229,7 +229,7 @@ Laikas iki meniu atsidarymo - Jei spustelėjote elementą + Jei elementas buvo paspaustas Fonas @@ -504,4 +504,7 @@ Rodyti nuorodos perdangą + + Interneto nuorodų piktogramų katalogas + \ No newline at end of file diff --git a/Resources/Languages/lang.lv.resx b/Resources/Languages/lang.lv.resx index ecc78ca..95374b1 100644 --- a/Resources/Languages/lang.lv.resx +++ b/Resources/Languages/lang.lv.resx @@ -504,4 +504,7 @@ Rādīt saites pārklājumu + + Interneta īsceļu ikonu direktorijs + \ No newline at end of file diff --git a/Resources/Languages/lang.mk.resx b/Resources/Languages/lang.mk.resx index 281830c..debb4c3 100644 --- a/Resources/Languages/lang.mk.resx +++ b/Resources/Languages/lang.mk.resx @@ -504,4 +504,7 @@ Прикажи преклопување на врската + + Директориум на икони за кратенки на Интернет + \ No newline at end of file diff --git a/Resources/Languages/lang.ms.resx b/Resources/Languages/lang.ms.resx index 751d93b..459ed7c 100644 --- a/Resources/Languages/lang.ms.resx +++ b/Resources/Languages/lang.ms.resx @@ -244,7 +244,7 @@ Medan carian - Elemen terpilih + Elemen yang dipilih Sempadan elemen yang dipilih @@ -504,4 +504,7 @@ Tunjukkan tindanan pautan + + Direktori Ikon Pintasan Internet + \ No newline at end of file diff --git a/Resources/Languages/lang.mt.resx b/Resources/Languages/lang.mt.resx index 510448a..a9f8d12 100644 --- a/Resources/Languages/lang.mt.resx +++ b/Resources/Languages/lang.mt.resx @@ -504,4 +504,7 @@ Uri link overlay + + Direttorju tal-Ikoni tal-Shortcut tal-Internet + \ No newline at end of file diff --git a/Resources/Languages/lang.nl.resx b/Resources/Languages/lang.nl.resx index a7dcede..16147fb 100644 --- a/Resources/Languages/lang.nl.resx +++ b/Resources/Languages/lang.nl.resx @@ -298,7 +298,7 @@ Schuifregelaar tijdens het slepen - Schuifregelaar terwijl de muis erover zweeft 1 + Schuif terwijl de muis erover zweeft 1 Schuif terwijl de muis erover zweeft 2 @@ -490,7 +490,7 @@ Toon aantal elementen hieronder - Toon maptitel bovenaan + Titel van directory bovenaan weergeven Functietoetsen hieronder weergeven: @@ -504,4 +504,7 @@ Link-overlay weergeven + + Directory met pictogrammen voor internetsnelkoppelingen + \ No newline at end of file diff --git a/Resources/Languages/lang.no.resx b/Resources/Languages/lang.no.resx index f84d428..10583be 100644 --- a/Resources/Languages/lang.no.resx +++ b/Resources/Languages/lang.no.resx @@ -211,7 +211,7 @@ Misligholde - Hvis fokus er tapt og hvis musen fortsatt er på menyen + Hvis fokuset er tapt og hvis musen fortsatt er på menyen Millisekunder til en meny åpnes når musen er på den @@ -325,7 +325,7 @@ lasting - Problem med snarveislink + Problem med snarveislenke Elementet som denne snarveien refererer til har blitt endret eller flyttet, så denne snarveien vil ikke lenger fungere som den skal. @@ -475,7 +475,7 @@ Sortering - Kopier radelementet med dra-slipp + Kopier radelement via dra-slipp Dra @@ -504,4 +504,7 @@ Vis linkoverlegg + + Katalog over Internett-snarveisikoner + \ No newline at end of file diff --git a/Resources/Languages/lang.pl.resx b/Resources/Languages/lang.pl.resx index 7decec2..587fdd2 100644 --- a/Resources/Languages/lang.pl.resx +++ b/Resources/Languages/lang.pl.resx @@ -277,7 +277,7 @@ Tło strzałki po kliknięciu - Tło strzałki po najechaniu na nią myszą + Tło strzałki po najechaniu na nią kursorem myszy Kolorystyka ciemny @@ -457,7 +457,7 @@ Rozmiar ikon w procentach - Wsparcie systemoweZasobnikMenu + Wsparcie SystemoweTacaMenu Zblakły @@ -504,4 +504,7 @@ Pokaż nakładkę linku + + Katalog ikon skrótów internetowych + \ No newline at end of file diff --git a/Resources/Languages/lang.pt-BR.resx b/Resources/Languages/lang.pt-BR.resx index 55577cd..4dbb561 100644 --- a/Resources/Languages/lang.pt-BR.resx +++ b/Resources/Languages/lang.pt-BR.resx @@ -504,4 +504,7 @@ Mostrar sobreposição de links + + Diretório de ícones de atalhos da Internet + \ No newline at end of file diff --git a/Resources/Languages/lang.pt-PT.resx b/Resources/Languages/lang.pt-PT.resx index 55577cd..4dbb561 100644 --- a/Resources/Languages/lang.pt-PT.resx +++ b/Resources/Languages/lang.pt-PT.resx @@ -504,4 +504,7 @@ Mostrar sobreposição de links + + Diretório de ícones de atalhos da Internet + \ No newline at end of file diff --git a/Resources/Languages/lang.resx b/Resources/Languages/lang.resx index b6abb78..57a461c 100644 --- a/Resources/Languages/lang.resx +++ b/Resources/Languages/lang.resx @@ -504,4 +504,7 @@ Show link overlay + + Directory of Internet Shortcut Icons + \ No newline at end of file diff --git a/Resources/Languages/lang.ro.resx b/Resources/Languages/lang.ro.resx index 421c527..22d140f 100644 --- a/Resources/Languages/lang.ro.resx +++ b/Resources/Languages/lang.ro.resx @@ -268,7 +268,7 @@ Săgeată - Săgeată când faceți clic + Săgeată când dați clic Săgeată în timp ce mouse-ul trece peste ea @@ -310,7 +310,7 @@ mărimea - Marginea meniului + Chenarul meniului icoane @@ -504,4 +504,7 @@ Afișați suprapunerea linkului + + Director cu pictograme pentru comenzi rapide pe Internet + \ No newline at end of file diff --git a/Resources/Languages/lang.ru.resx b/Resources/Languages/lang.ru.resx index a3d91c3..aac2f77 100644 --- a/Resources/Languages/lang.ru.resx +++ b/Resources/Languages/lang.ru.resx @@ -504,4 +504,7 @@ Показать наложение ссылки + + Каталог значков ярлыков Интернета + \ No newline at end of file diff --git a/Resources/Languages/lang.sk.resx b/Resources/Languages/lang.sk.resx index 7c429f0..a7ddc14 100644 --- a/Resources/Languages/lang.sk.resx +++ b/Resources/Languages/lang.sk.resx @@ -504,4 +504,7 @@ Zobraziť prekrytie odkazu + + Adresár ikon internetových skratiek + \ No newline at end of file diff --git a/Resources/Languages/lang.sl.resx b/Resources/Languages/lang.sl.resx index 87e2397..4f12c5f 100644 --- a/Resources/Languages/lang.sl.resx +++ b/Resources/Languages/lang.sl.resx @@ -504,4 +504,7 @@ Pokaži prekrivanje povezave + + Imenik ikon internetnih bližnjic + \ No newline at end of file diff --git a/Resources/Languages/lang.sq.resx b/Resources/Languages/lang.sq.resx index 27230a5..cab8fee 100644 --- a/Resources/Languages/lang.sq.resx +++ b/Resources/Languages/lang.sq.resx @@ -475,7 +475,7 @@ Renditja - Kopjoni artikullin e rreshtit përmes zvarritjes + Kopjo artikullin e rreshtit përmes zvarritjes Zvarritni @@ -504,4 +504,7 @@ Shfaq mbivendosjen e lidhjes + + Drejtoria e ikonave të shkurtoreve të internetit + \ No newline at end of file diff --git a/Resources/Languages/lang.sr.resx b/Resources/Languages/lang.sr.resx index e56d5f6..6d2b072 100644 --- a/Resources/Languages/lang.sr.resx +++ b/Resources/Languages/lang.sr.resx @@ -504,4 +504,7 @@ Прикажи преклапање везе + + Именик икона Интернет пречица + \ No newline at end of file diff --git a/Resources/Languages/lang.sv.resx b/Resources/Languages/lang.sv.resx index 21885bb..9fe95a1 100644 --- a/Resources/Languages/lang.sv.resx +++ b/Resources/Languages/lang.sv.resx @@ -504,4 +504,7 @@ Visa länköverlagring + + Katalog över internetgenvägsikoner + \ No newline at end of file diff --git a/Resources/Languages/lang.sw.resx b/Resources/Languages/lang.sw.resx index 41f687f..50a6705 100644 --- a/Resources/Languages/lang.sw.resx +++ b/Resources/Languages/lang.sw.resx @@ -504,4 +504,7 @@ Onyesha wekeleo la kiungo + + Saraka ya Aikoni za Njia za Mkato za Mtandao + \ No newline at end of file diff --git a/Resources/Languages/lang.ta.resx b/Resources/Languages/lang.ta.resx index 45b5273..3382486 100644 --- a/Resources/Languages/lang.ta.resx +++ b/Resources/Languages/lang.ta.resx @@ -439,7 +439,7 @@ தேடல் முடிவாக மட்டும் காட்டு - டபுள் கிளிக் செய்வதற்குப் பதிலாக ஒரு கோப்பகத்தைத் திறக்க ஒற்றைக் கிளிக் செய்யவும் + ஒரு கோப்பகத்தைத் திறக்க, இரட்டை சொடுக்கிற்குப் பதிலாக ஒற்றை கிளிக் செய்யவும் முந்தையதை அடுத்து @@ -499,9 +499,12 @@ தேடல் பட்டியைக் காட்டு - AppData க்குப் பதிலாகப் பதிவுக் கோப்பை பயன்பாட்டுக் கோப்பகத்தில் சேமிக்கிறது + AppData க்குப் பதிலாக பதிவுக் கோப்பை பயன்பாட்டுக் கோப்பகத்தில் சேமிக்கிறது இணைப்பு மேலடுக்கைக் காட்டு + + இணைய குறுக்குவழி ஐகான்களின் அடைவு + \ No newline at end of file diff --git a/Resources/Languages/lang.te.resx b/Resources/Languages/lang.te.resx index 8abf406..45a036a 100644 --- a/Resources/Languages/lang.te.resx +++ b/Resources/Languages/lang.te.resx @@ -229,7 +229,7 @@ మెను తెరవడానికి సమయం - ఒక మూలకం క్లిక్ చేయబడి ఉంటే + ఒక మూలకం క్లిక్ చేయబడితే నేపథ్య @@ -238,7 +238,7 @@ డైరెక్టరీ తెరవబడింది - తెరిచిన డైరెక్టరీ అంచు + తెరిచిన డైరెక్టరీ సరిహద్దు శోధన ఫీల్డ్ @@ -358,7 +358,7 @@ డైరెక్టరీని జోడించండి - రూట్ డైరెక్టరీకి డైరెక్టరీ యొక్క కంటెంట్‌ను జోడించండి + రూట్ డైరెక్టరీకి డైరెక్టరీ యొక్క కంటెంట్‌ని జోడించండి డైరెక్టరీ మార్గాలు @@ -504,4 +504,7 @@ లింక్ అతివ్యాప్తిని చూపు + + ఇంటర్నెట్ షార్ట్‌కట్ చిహ్నాల డైరెక్టరీ + \ No newline at end of file diff --git a/Resources/Languages/lang.th.resx b/Resources/Languages/lang.th.resx index 5d86f74..688d3df 100644 --- a/Resources/Languages/lang.th.resx +++ b/Resources/Languages/lang.th.resx @@ -175,7 +175,7 @@ คำถามที่พบบ่อย - อ่านคำถามที่พบบ่อย จากนั้นเลือกไดเรกทอรีรากสำหรับ SystemTrayMenu + อ่านคำถามที่พบบ่อย จากนั้นเลือกไดเร็กทอรีรากสำหรับ SystemTrayMenu เลือกไดเรกทอรี @@ -504,4 +504,7 @@ แสดงการวางซ้อนลิงก์ + + ไดเรกทอรีของไอคอนทางลัดอินเทอร์เน็ต + \ No newline at end of file diff --git a/Resources/Languages/lang.tl.resx b/Resources/Languages/lang.tl.resx index e4b07c2..4e37155 100644 --- a/Resources/Languages/lang.tl.resx +++ b/Resources/Languages/lang.tl.resx @@ -499,9 +499,12 @@ Ipakita ang search bar - Sine-save ang log file sa direktoryo ng application sa halip na AppData + Sine-save ang log file sa application directory sa halip na AppData Ipakita ang overlay ng link + + Direktoryo ng Internet Shortcut Icon + \ No newline at end of file diff --git a/Resources/Languages/lang.tr.resx b/Resources/Languages/lang.tr.resx index 9542e27..e48f735 100644 --- a/Resources/Languages/lang.tr.resx +++ b/Resources/Languages/lang.tr.resx @@ -247,7 +247,7 @@ Seçili eleman - Seçili öğenin kenarlığı + Seçili öğenin sınırı Göreli dizine dönüştür @@ -504,4 +504,7 @@ Bağlantı yer paylaşımını göster + + İnternet Kısayol Simgeleri Dizini + \ No newline at end of file diff --git a/Resources/Languages/lang.uk.resx b/Resources/Languages/lang.uk.resx index dcc8d65..5409ac4 100644 --- a/Resources/Languages/lang.uk.resx +++ b/Resources/Languages/lang.uk.resx @@ -229,7 +229,7 @@ Час до відкриття меню - Якщо клацнули елемент + Якщо елемент було натиснуто Фон @@ -504,4 +504,7 @@ Показати накладання посилань + + Каталог значків ярликів Інтернету + \ No newline at end of file diff --git a/Resources/Languages/lang.ur.resx b/Resources/Languages/lang.ur.resx index eecce69..9d51394 100644 --- a/Resources/Languages/lang.ur.resx +++ b/Resources/Languages/lang.ur.resx @@ -184,7 +184,7 @@ ایپ کے لیے آپ کی روٹ ڈائرکٹری موجود نہیں ہے یا خالی ہے! روٹ ڈائرکٹری کو تبدیل کریں یا روٹ ڈائرکٹری میں کچھ فائلیں، ڈائریکٹریز یا شارٹ کٹ ڈالیں۔ - آپ کو ایپ کی روٹ ڈائرکٹری تک رسائی نہیں ہے۔ ڈائریکٹری تک رسائی فراہم کریں یا روٹ ڈائرکٹری کو تبدیل کریں۔ + آپ کو ایپ کی روٹ ڈائرکٹری تک رسائی نہیں ہے۔ ڈائرکٹری تک رسائی فراہم کریں یا روٹ ڈائرکٹری کو تبدیل کریں۔ ڈبل کلک کے بجائے کسی عنصر کو کھولنے کے لیے سنگل کلک کریں۔ @@ -235,7 +235,7 @@ پس منظر - ڈائرکٹری کھولی۔ + کھلی ڈائریکٹری کھلی ڈائریکٹری کا بارڈر @@ -481,7 +481,7 @@ گھسیٹیں۔ - سوائپ کے ذریعے سکرول کریں۔ + سوائپ کے ذریعے اسکرول کریں۔ فائل کی قسم کے لحاظ سے مینو کو فلٹر کریں جیسے: *.exe|*.dll @@ -504,4 +504,7 @@ لنک اوورلے دکھائیں۔ + + انٹرنیٹ شارٹ کٹ شبیہیں کی ڈائرکٹری + \ No newline at end of file diff --git a/Resources/Languages/lang.vi.resx b/Resources/Languages/lang.vi.resx index 2fd3c6d..7720677 100644 --- a/Resources/Languages/lang.vi.resx +++ b/Resources/Languages/lang.vi.resx @@ -292,7 +292,7 @@ Thanh cuộn - Thanh trượt + Con trượt Thanh trượt trong khi kéo @@ -301,7 +301,7 @@ Trượt trong khi di chuột qua nó 1 - Trượt trong khi di chuột qua nó 2 + Thanh trượt trong khi di chuột qua nó 2 Sử dụng biểu tượng từ thư mục @@ -328,7 +328,7 @@ Sự cố với liên kết lối tắt - Mục mà lối tắt này đề cập đến đã được thay đổi hoặc di chuyển, vì vậy lối tắt này sẽ không còn hoạt động bình thường. + Mục mà lối tắt này đề cập đến đã bị thay đổi hoặc di chuyển, vì vậy lối tắt này sẽ không còn hoạt động bình thường. Mở thư mục @@ -415,7 +415,7 @@ các yếu tố - Tạo các phím tắt cho ổ đĩa khi khởi động + Tạo phím tắt cho ổ đĩa khi khởi động Bộ nhớ đệm @@ -504,4 +504,7 @@ Hiển thị lớp phủ liên kết + + Thư mục các biểu tượng lối tắt trên Internet + \ No newline at end of file diff --git a/Resources/Languages/lang.yi.resx b/Resources/Languages/lang.yi.resx index f0c288a..0a83db8 100644 --- a/Resources/Languages/lang.yi.resx +++ b/Resources/Languages/lang.yi.resx @@ -184,7 +184,7 @@ דיין וואָרצל וועגווייַזער פֿאַר די אַפּ טוט נישט עקסיסטירן אָדער איז ליידיק! טוישן די וואָרצל וועגווייַזער אָדער שטעלן עטלעכע טעקעס, דירעקטעריז אָדער דורכוועג אין דער וואָרצל וועגווייַזער. - איר האָט קיין אַקסעס צו דער וואָרצל וועגווייַזער פון די אַפּ. געבן אַקסעס צו דער וועגווייַזער אָדער טוישן די וואָרצל וועגווייַזער. + איר האָבן קיין אַקסעס צו דער וואָרצל וועגווייַזער פון די אַפּ. געבן אַקסעס צו דער וועגווייַזער אָדער טוישן די וואָרצל וועגווייַזער. איין גיט צו עפענען אַן עלעמענט אַנשטאָט פון טאָפּל גיט @@ -433,7 +433,7 @@ גרייס און אָרט - ניצן אַפּערייטינג סיסטעם סעטטינגס + ניצן אָפּערייטינג סיסטעם סעטטינגס ווייַזן בלויז ווי זוכן רעזולטאַט @@ -504,4 +504,7 @@ ווייַזן לינק אָוווערליי + + Directory פון אינטערנעט דורכוועג יקאָנס + \ No newline at end of file diff --git a/Resources/Languages/lang.zh-CN.resx b/Resources/Languages/lang.zh-CN.resx index 3b5fa65..7630699 100644 --- a/Resources/Languages/lang.zh-CN.resx +++ b/Resources/Languages/lang.zh-CN.resx @@ -504,4 +504,7 @@ 显示链接覆盖 + + Internet 快捷方式图标目录 + \ No newline at end of file diff --git a/Resources/Languages/lang.zh-TW.resx b/Resources/Languages/lang.zh-TW.resx index 9b6f87d..0bd305e 100644 --- a/Resources/Languages/lang.zh-TW.resx +++ b/Resources/Languages/lang.zh-TW.resx @@ -274,7 +274,7 @@ 鼠標懸停時的箭頭 - 單擊時箭頭的背景 + 點擊時箭頭的背景 鼠標懸停在箭頭上時的箭頭背景 @@ -504,4 +504,7 @@ 顯示鏈接覆蓋 + + Internet 快捷方式圖標目錄 + \ No newline at end of file diff --git a/Resources/SystemTrayMenu.png b/Resources/SystemTrayMenu.png new file mode 100644 index 0000000000000000000000000000000000000000..bd68ff89f807ec000e58bb28412a02a79b8e20be GIT binary patch literal 4743 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 d|8zy@Z^~9@;Fi