Cleaner interface (#380, #386, #389), version 1.2.9.9

This commit is contained in:
Markus Hofknecht 2022-05-31 23:23:26 +02:00
parent 94dd3ddd0c
commit 4973212f15
79 changed files with 1227 additions and 233 deletions

View file

@ -897,7 +897,7 @@ namespace SystemTrayMenu.Business
title = Path.GetPathRoot(path);
}
menu.SetTitle(title);
menu.AdjustControls(title, menuData.Validity);
menu.UserClickedOpenFolder += () => OpenFolder(path);
menu.Level = menuData.Level;
menu.MouseWheel += AdjustMenusSizeAndLocation;

View file

@ -31,6 +31,14 @@ namespace SystemTrayMenu
public static string SearchPattern => Settings.Default.SearchPattern;
public static bool ShowDirectoryTitleAtTop => Settings.Default.ShowDirectoryTitleAtTop;
public static bool ShowSearchBar => Settings.Default.ShowSearchBar;
public static bool ShowCountOfElementsBelow => Settings.Default.ShowCountOfElementsBelow;
public static bool ShowFunctionKeysBelow => Settings.Default.ShowFunctionKeysBelow;
public static bool AlwaysOpenByPin { get; internal set; }
public static void Initialize()

View file

@ -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.8")]
[assembly: AssemblyFileVersion("1.2.9.8")]
[assembly: AssemblyVersion("1.2.9.9")]
[assembly: AssemblyFileVersion("1.2.9.9")]

View file

@ -78,7 +78,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
[global::System.Configuration.DefaultSettingValueAttribute("false")]
public bool IsAutostartActivated
{
get
@ -94,7 +94,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
[global::System.Configuration.DefaultSettingValueAttribute("false")]
public bool PossibilityToSelectFolderByWindowsContextMenu
{
get
@ -126,7 +126,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
[global::System.Configuration.DefaultSettingValueAttribute("false")]
public bool IsUpgraded
{
get
@ -142,7 +142,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
[global::System.Configuration.DefaultSettingValueAttribute("true")]
public bool ShowInTaskbar
{
get
@ -158,7 +158,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
[global::System.Configuration.DefaultSettingValueAttribute("false")]
public bool SendHotkeyInsteadKillOtherInstances
{
get
@ -174,7 +174,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
[global::System.Configuration.DefaultSettingValueAttribute("true")]
public bool SystemSettingsShowHiddenFiles
{
get
@ -190,7 +190,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
[global::System.Configuration.DefaultSettingValueAttribute("false")]
public bool AlwaysShowHiddenFiles
{
get
@ -206,7 +206,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
[global::System.Configuration.DefaultSettingValueAttribute("false")]
public bool NeverShowHiddenFiles
{
get
@ -222,7 +222,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
[global::System.Configuration.DefaultSettingValueAttribute("true")]
public bool AppearAtTheBottomLeft
{
get
@ -238,7 +238,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
[global::System.Configuration.DefaultSettingValueAttribute("true")]
public bool AppearNextToPreviousMenu
{
get
@ -270,7 +270,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
[global::System.Configuration.DefaultSettingValueAttribute("true")]
public bool OpenItemWithOneClick
{
get
@ -286,7 +286,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
[global::System.Configuration.DefaultSettingValueAttribute("true")]
public bool OpenDirectoryWithOneClick
{
get
@ -302,7 +302,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
[global::System.Configuration.DefaultSettingValueAttribute("false")]
public bool DragDropItemsEnabledTouch
{
get
@ -318,7 +318,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
[global::System.Configuration.DefaultSettingValueAttribute("true")]
public bool SwipeScrollingEnabledTouch
{
get
@ -334,7 +334,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
[global::System.Configuration.DefaultSettingValueAttribute("true")]
public bool DragDropItemsEnabled
{
get
@ -350,7 +350,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
[global::System.Configuration.DefaultSettingValueAttribute("false")]
public bool SwipeScrollingEnabled
{
get
@ -366,7 +366,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
[global::System.Configuration.DefaultSettingValueAttribute("false")]
public bool SortFolderAndFilesByDate
{
get
@ -382,7 +382,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
[global::System.Configuration.DefaultSettingValueAttribute("false")]
public bool ShowOnlyAsSearchResult
{
get
@ -398,7 +398,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
[global::System.Configuration.DefaultSettingValueAttribute("false")]
public bool GenerateShortcutsToDrives
{
get
@ -414,7 +414,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
[global::System.Configuration.DefaultSettingValueAttribute("true")]
public bool CacheMainMenu
{
get
@ -430,7 +430,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
[global::System.Configuration.DefaultSettingValueAttribute("true")]
public bool IsDarkModeAlwaysOn
{
get
@ -443,6 +443,70 @@ namespace SystemTrayMenu.Properties
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("false")]
public bool ShowDirectoryTitleAtTop
{
get
{
return ((bool)(this["ShowDirectoryTitleAtTop"]));
}
set
{
this["ShowDirectoryTitleAtTop"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("true")]
public bool ShowSearchBar
{
get
{
return ((bool)(this["ShowSearchBar"]));
}
set
{
this["ShowSearchBar"] = value;
}
}
[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()]
[global::System.Configuration.DefaultSettingValueAttribute("false")]
public bool ShowFunctionKeysBelow
{
get
{
return ((bool)(this["ShowFunctionKeysBelow"]));
}
set
{
this["ShowFunctionKeysBelow"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@ -526,7 +590,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("true")]
[global::System.Configuration.DefaultSettingValueAttribute("false")]
public bool RoundCorners
{
get
@ -558,7 +622,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("600")]
[global::System.Configuration.DefaultSettingValueAttribute("450")]
public int MaximumMenuHeight
{
get
@ -574,7 +638,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
[global::System.Configuration.DefaultSettingValueAttribute("false")]
public bool AppearAtMouseLocation
{
get
@ -590,7 +654,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
[global::System.Configuration.DefaultSettingValueAttribute("false")]
public bool UseCustomLocation
{
get
@ -606,7 +670,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
[global::System.Configuration.DefaultSettingValueAttribute("false")]
public bool UseFading
{
get
@ -1294,7 +1358,7 @@ namespace SystemTrayMenu.Properties
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
[global::System.Configuration.DefaultSettingValueAttribute("false")]
public bool UseIconFromRootFolder
{
get

View file

@ -275,14 +275,16 @@ Thanks for ideas, reporting issues and contributing!
#285 #286 [dao-net](https://github.com/dao-net),
#288 William P.,
#294 #295 #296 Stefan Mahrer,
#225 #297 #299 #317 #321 #324 #330 [chip33](https://github.com/chip33),
#225 #297 #299 #317 #321 #324 #330 #386 [chip33](https://github.com/chip33),
#298 [phanirithvij](https://github.com/phanirithvij),
#306 [wini2](https://github.com/wini2),
#370 [dna5589](https://github.com/dna5589),
#372 [not-nef](https://github.com/not-nef),
#376 Michelle H.,
#377 [SoenkeHob](https://github.com/SoenkeHob),
#380 [TransLucida](https://github.com/TransLucida),
#384 [boydfields](https://github.com/boydfields),
#386 [visusys](https://github.com/visusys),
#387 [yrctw](https://github.com/yrctw)
Donations

View file

@ -420,8 +420,8 @@
<data name="Cache" xml:space="preserve">
<value>Kas</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<value>Wys altyd verborge lêers, gidse of dryf</value>
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Wys altyd versteekte lêers, gidse of dryf</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
<value>Versteekte lêers en gidse</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Filtreer spyskaart volgens lêertipe, bv.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Toon die aantal elemente hieronder</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Wys gidstitel bo-aan</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Wys funksiesleutels hieronder</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Wys soekbalk</value>
</data>
</root>

View file

@ -238,7 +238,7 @@
<value>الدليل المفتوح</value>
</data>
<data name="Border of opened directory" xml:space="preserve">
<value>حدود الدليل المفتوح</value>
<value>حد الدليل المفتوح</value>
</data>
<data name="Search field" xml:space="preserve">
<value>مجال البحث</value>
@ -420,8 +420,8 @@
<data name="Cache" xml:space="preserve">
<value>مخبأ</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<value>إظهار الملفات أو الدلائل أو محركات الأقراص المخفية دائمًا</value>
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>اعرض دائمًا الملفات أو الدلائل أو محركات الأقراص المخفية</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
<value>الملفات والأدلة المخفية</value>
@ -475,7 +475,7 @@
<value>فرز</value>
</data>
<data name="Copy row item via drag drop" xml:space="preserve">
<value>نسخ عنصر الصف عن طريق السحب والإسقاط</value>
<value>نسخ عنصر الصف عن طريق السحب والإفلات</value>
</data>
<data name="Drag" xml:space="preserve">
<value>يجر</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>قائمة التصفية حسب نوع الملف على سبيل المثال: * .exe | * .dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>عرض عدد العناصر أدناه</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>إظهار عنوان الدليل في الأعلى</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>إظهار مفاتيح الوظائف أدناه</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>إظهار شريط البحث</value>
</data>
</root>

View file

@ -133,7 +133,7 @@
<value>kataloq</value>
</data>
<data name="Directory empty" xml:space="preserve">
<value>Kataloq boş</value>
<value>Kataloq boşdur</value>
</data>
<data name="Details" xml:space="preserve">
<value>Təfərrüatlar</value>
@ -259,7 +259,7 @@
<value>USB</value>
</data>
<data name="Open application directory" xml:space="preserve">
<value>Proqram qovluğunu açın</value>
<value>Tətbiq qovluğunu açın</value>
</data>
<data name="Pixels maximum menu height" xml:space="preserve">
<value>Piksel maksimum menyu hündürlüyü</value>
@ -301,7 +301,7 @@
<value>Siçan onun üzərində hərəkət edərkən sürüşdürün 1</value>
</data>
<data name="Slider while mouse hovers over it 2" xml:space="preserve">
<value>Siçan onun üzərində hərəkət edərkən sürüşdürün 2</value>
<value>Siçan üzərinə sürüşdürərkən sürüşdürün 2</value>
</data>
<data name="Use icon from directory" xml:space="preserve">
<value>Kataloqdan ikonadan istifadə edin</value>
@ -325,7 +325,7 @@
<value>yüklənir</value>
</data>
<data name="Problem with shortcut link" xml:space="preserve">
<value>Qısayol keçidində problem</value>
<value>Qısayol keçidi ilə bağlı problem</value>
</data>
<data name="The item that this shortcut refers to has been changed or moved, so this shortcut will no longer work properly." xml:space="preserve">
<value>Bu qısayolun istinad etdiyi element dəyişdirilib və ya köçürülüb, ona görə də bu qısayol artıq düzgün işləməyəcək.</value>
@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>Gizli yer</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Həmişə gizli faylları, qovluqları və ya sürücüləri göstərin</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Fayl növünə görə menyunu süzün, məsələn: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Aşağıdakı elementlərin sayını göstərin</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Kataloq başlığını yuxarıda göstərin</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Aşağıda funksional düymələri göstərin</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Axtarış çubuğunu göstərin</value>
</data>
</root>

View file

@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>Кэш</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Заўсёды паказваць схаваныя файлы, каталогі або дыскі</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Фільтр меню па тыпу файла, напрыклад: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Паказаць колькасць элементаў ніжэй</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Паказаць назву каталога ўверсе</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Паказаць функцыянальныя клавішы ніжэй</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Паказаць радок пошуку</value>
</data>
</root>

View file

@ -196,7 +196,7 @@
<value>Разширено</value>
</data>
<data name="At mouse location" xml:space="preserve">
<value>На мястото на мишката</value>
<value>На местоположението на мишката</value>
</data>
<data name="Changing directory" xml:space="preserve">
<value>Промяна на директория</value>
@ -420,8 +420,8 @@
<data name="Cache" xml:space="preserve">
<value>Кеш</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<value>Винаги показвайте скрити файлове, директории или устройства</value>
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Винаги показвайте скрити файлове, директории или дискове</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
<value>Скрити файлове и директории</value>
@ -457,7 +457,7 @@
<value>Размер на иконите в проценти</value>
</data>
<data name="Support SystemTrayMenu" xml:space="preserve">
<value>Поддръжка на SystemTrayMenu</value>
<value>Поддръжка SystemTrayMenu</value>
</data>
<data name="Fading" xml:space="preserve">
<value>Затихване</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Филтриране на менюто по тип файл, напр.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Покажете броя на елементите по-долу</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Показване на заглавието на директорията отгоре</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Покажете функционалните клавиши по-долу</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Показване на лентата за търсене</value>
</data>
</root>

View file

@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>ক্যাশে</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>সর্বদা লুকানো ফাইল, ডিরেক্টরি বা ড্রাইভ দেখান</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -475,7 +475,7 @@
<value>শ্রেণীবিভাজন</value>
</data>
<data name="Copy row item via drag drop" xml:space="preserve">
<value>ড্র্যাগ ড্রপের মাধ্যমে সারি আইটেম অনুলিপি করুন</value>
<value>ড্র্যাগ ড্রপের মাধ্যমে সারি আইটেম পি করুন</value>
</data>
<data name="Drag" xml:space="preserve">
<value>টেনে আনুন</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>ফাইল টাইপ দ্বারা ফিল্টার মেনু যেমন: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>নিচের উপাদানের সংখ্যা দেখান</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>শীর্ষে ডিরেক্টরি শিরোনাম দেখান</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>নিচে ফাংশন কী দেখান</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>সার্চ বার দেখান</value>
</data>
</root>

View file

@ -382,7 +382,7 @@
<value>Esborra la memòria cau si hi ha més d'aquest nombre d'elements</value>
</data>
<data name="Add sample directory 'Start Menu'" xml:space="preserve">
<value>Afegeix el directori de mostra "Menú Inici"</value>
<value>Afegeix el directori d'exemple "Menú Inici"</value>
</data>
<data name="Row height in percent" xml:space="preserve">
<value>Alçada de fila en percentatge</value>
@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>Memòria cau</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Mostra sempre fitxers, directoris o unitats ocults</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -445,7 +445,7 @@
<value>Al costat de l'anterior</value>
</data>
<data name="Offset by pixels" xml:space="preserve">
<value>Compensació de píxels</value>
<value>Compensació per píxels</value>
</data>
<data name="Overlapping" xml:space="preserve">
<value>Superposició</value>
@ -481,9 +481,21 @@
<value>Arrossegueu</value>
</data>
<data name="Scroll via swipe" xml:space="preserve">
<value>Desplaceu-vos amb el dit</value>
<value>Desplaceu-vos amb lliscar</value>
</data>
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Filtra el menú per tipus de fitxer, p. ex.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Mostra el nombre d'elements a continuació</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Mostra el títol del directori a la part superior</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Mostra les tecles de funció a continuació</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Mostra la barra de cerca</value>
</data>
</root>

View file

@ -283,7 +283,7 @@
<value>Barevné provedení tmavé</value>
</data>
<data name="Color scheme bright" xml:space="preserve">
<value>Barevné provedení světlé</value>
<value>Barevné schéma světlé</value>
</data>
<data name="App menu" xml:space="preserve">
<value>Nabídka aplikací</value>
@ -420,8 +420,8 @@
<data name="Cache" xml:space="preserve">
<value>Mezipaměti</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<value>Vždy zobrazit skryté soubory, adresáře nebo jednotky</value>
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Vždy zobrazovat skryté soubory, adresáře nebo jednotky</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
<value>Skryté soubory a adresáře</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Filtrovat nabídku podle typu souboru, např.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Níže zobrazit počet prvků</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Zobrazit název adresáře nahoře</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Níže zobrazit funkční klávesy</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Zobrazit vyhledávací lištu</value>
</data>
</root>

View file

@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>Cache</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Dangoswch ffeiliau, cyfeiriaduron neu yriannau cudd bob amser</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Hidlo'r ddewislen yn ôl math o ffeil e.e.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Dangoswch nifer yr elfennau isod</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Dangos teitl y cyfeiriadur ar y brig</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Dangoswch y bysellau swyddogaeth isod</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Dangos bar chwilio</value>
</data>
</root>

View file

@ -184,7 +184,7 @@
<value>Din rodmappe til appen eksisterer ikke eller er tom! Skift rodmappen eller indsæt nogle filer, mapper eller genveje i rodmappen.</value>
</data>
<data name="You have no access to the root directory of the app. Grant access to the directory or change the root directory." xml:space="preserve">
<value>Du har ingen adgang til rodmappen appen. Giv adgang til biblioteket eller skift rodmappen.</value>
<value>Du har ingen adgang til rodmappen til appen. Giv adgang til biblioteket eller skift rodmappen.</value>
</data>
<data name="Single click to open an element instead of double click" xml:space="preserve">
<value>Enkeltklik for at åbne et element i stedet for at dobbeltklikke</value>
@ -217,7 +217,7 @@
<value>Millisekunder, indtil en menu åbnes, når musen er på den</value>
</data>
<data name="Milliseconds until the menu closes if in this case the mouse then leaves the menu" xml:space="preserve">
<value>Millisekunder, indtil menuen lukker, hvis musen i dette tilfælde forlader menuen</value>
<value>Millisekunder indtil menuen lukker, hvis musen i dette tilfælde forlader menuen</value>
</data>
<data name="Pixels maximum menu width" xml:space="preserve">
<value>Pixels maksimale menubredde</value>
@ -349,7 +349,7 @@
<value>Hvis fokus mistes, og Enter-tasten blev trykket</value>
</data>
<data name="Milliseconds until the menu closes if in this case the menu is not reactivated" xml:space="preserve">
<value>Millisekunder indtil menuen lukker, hvis menuen i dette tilfælde ikke genaktiveres</value>
<value>Millisekunder, indtil menuen lukker, hvis menuen i dette tilfælde ikke genaktiveres</value>
</data>
<data name="Show in Taskbar" xml:space="preserve">
<value>Vis i proceslinjen</value>
@ -358,7 +358,7 @@
<value>Tilføj bibliotek</value>
</data>
<data name="Add content of directory to root directory" xml:space="preserve">
<value>Tilføj indhold af mappe til rodbibliotek</value>
<value>Tilføj indholdet af mappen til rodmappen</value>
</data>
<data name="Directory paths" xml:space="preserve">
<value>Directory stier</value>
@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>Cache</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Vis altid skjulte filer, mapper eller drev</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -484,6 +484,18 @@
<value>Rul via swipe</value>
</data>
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Filtrer menuen efter filtype, f.eks.: *.exe|*.dll</value>
<value>Filtrer menu efter filtype, f.eks.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Vis antallet af elementer nedenfor</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Vis mappetitel øverst</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Vis funktionstaster nedenfor</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Vis søgelinjen</value>
</data>
</root>

View file

@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>Zwischenspeicher</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Versteckte Dateien, Verzeichnisse oder Laufwerke immer anzeigen</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Menü nach Dateityp filtern, z. B.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Anzahl der Elemente unten anzeigen</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Verzeichnistitel oben anzeigen</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Funktionstasten unten anzeigen</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Suchleiste anzeigen</value>
</data>
</root>

View file

@ -133,7 +133,7 @@
<value>Ευρετήριο</value>
</data>
<data name="Directory empty" xml:space="preserve">
<value>Ο κατάλογος είναι κενός</value>
<value>Κενός κατάλογος</value>
</data>
<data name="Details" xml:space="preserve">
<value>Λεπτομέριες</value>
@ -283,7 +283,7 @@
<value>Σχέδιο χρωμάτων σκούρο</value>
</data>
<data name="Color scheme bright" xml:space="preserve">
<value>Χρωματικός συνδυασμός φωτεινό</value>
<value>Χρωματικός συνδυασμός φωτεινός</value>
</data>
<data name="App menu" xml:space="preserve">
<value>Μενού εφαρμογών</value>
@ -420,8 +420,8 @@
<data name="Cache" xml:space="preserve">
<value>Κρύπτη</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<value>Εμφάνιση πάντα κρυφών αρχείων, καταλόγων ή μονάδων δίσκου</value>
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Να εμφανίζονται πάντα κρυφά αρχεία, κατάλογοι ή μονάδες δίσκου</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
<value>Κρυφά αρχεία και κατάλογοι</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Φιλτράρισμα μενού κατά τύπο αρχείου π.χ.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Εμφάνιση του αριθμού των στοιχείων παρακάτω</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Εμφάνιση τίτλου καταλόγου στην κορυφή</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Εμφάνιση πλήκτρων λειτουργιών παρακάτω</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Εμφάνιση γραμμής αναζήτησης</value>
</data>
</root>

View file

@ -420,8 +420,8 @@
<data name="Cache" xml:space="preserve">
<value>Kaŝaĵo</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<value>Ĉiam Montru kaŝitajn dosierojn, dosierujojn aŭ diskojn</value>
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Ĉiam montru kaŝitajn dosierojn, dosierujojn aŭ diskojn</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
<value>Kaŝitaj dosieroj kaj dosierujoj</value>
@ -460,7 +460,7 @@
<value>Subtenu SystemTrayMenu</value>
</data>
<data name="Fading" xml:space="preserve">
<value>Forvelkanta</value>
<value>Fading</value>
</data>
<data name="Send hotkey to other instance" xml:space="preserve">
<value>Sendu klavoklavon al alia petskribo</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Filtrila menuon laŭ dosiertipo ekz.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Montru nombron de elementoj sube</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Montru dosierujan titolon supre</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Montru funkcioklavojn sube</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Montru serĉbreton</value>
</data>
</root>

View file

@ -163,7 +163,7 @@
<value>General</value>
</data>
<data name="Hotkey" xml:space="preserve">
<value>tecla de acceso rápido</value>
<value>tecla de acceso directo</value>
</data>
<data name="Start with Windows" xml:space="preserve">
<value>Empieza con las ventanas</value>
@ -217,7 +217,7 @@
<value>Milisegundos hasta que se abre un menú cuando el mouse está sobre él</value>
</data>
<data name="Milliseconds until the menu closes if in this case the mouse then leaves the menu" xml:space="preserve">
<value>Milisegundos hasta que se cierre el menú si en este caso el ratón sale del menú</value>
<value>Milisegundos hasta que el menú se cierre si en este caso el ratón sale del menú</value>
</data>
<data name="Pixels maximum menu width" xml:space="preserve">
<value>Ancho máximo de menú en píxeles</value>
@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>Cache</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Mostrar siempre archivos, directorios o unidades ocultos</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Filtre el menú por tipo de archivo, por ejemplo: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Mostrar recuento de elementos a continuación</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Mostrar el título del directorio en la parte superior</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Mostrar las teclas de función a continuación</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Mostrar barra de búsqueda</value>
</data>
</root>

View file

@ -298,7 +298,7 @@
<value>Liugur lohistamise ajal</value>
</data>
<data name="Slider while mouse hovers over it 1" xml:space="preserve">
<value>Liugur, kui hiir liigub selle kohal 1</value>
<value>Liugur, kui hiir hõljub selle kohal 1</value>
</data>
<data name="Slider while mouse hovers over it 2" xml:space="preserve">
<value>Liugur, kui hiir hõljub selle kohal 2</value>
@ -420,8 +420,8 @@
<data name="Cache" xml:space="preserve">
<value>Vahemälu</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<value>Kuva alati peidetud failid, kataloogid või draivid</value>
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Näidake alati peidetud faile, katalooge või draive</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
<value>Peidetud failid ja kataloogid</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Filtrimenüü failitüübi järgi, nt: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Kuva elementide arv allpool</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Kuva kataloogi pealkiri üleval</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Kuva funktsiooniklahvid allpool</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Kuva otsinguriba</value>
</data>
</root>

View file

@ -376,7 +376,7 @@
<value>Fitxategiak bakarrik</value>
</data>
<data name="Cache main menu" xml:space="preserve">
<value>Cache menu nagusia</value>
<value>Cachearen menu nagusia</value>
</data>
<data name="Clear cache if more than this number of items" xml:space="preserve">
<value>Garbitu cachea elementu kopuru hori baino gehiago bada</value>
@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>Cachea</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Erakutsi beti ezkutuko fitxategiak, direktorioak edo unitateak</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Iragazi menua fitxategi motaren arabera, adibidez: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Erakutsi beheko elementuen kopurua</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Erakutsi direktorioaren izenburua goian</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Erakutsi funtzio-teklak behean</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Erakutsi bilaketa-barra</value>
</data>
</root>

View file

@ -420,8 +420,8 @@
<data name="Cache" xml:space="preserve">
<value>حافظه پنهان</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<value>همیشه فایل‌ها، دایرکتوری‌ها یا درایوهای مخفی نمایش داده شود</value>
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>همیشه فایل ها، دایرکتوری ها یا درایوهای پنهان را نشان دهید</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
<value>فایل ها و دایرکتوری های مخفی</value>
@ -436,7 +436,7 @@
<value>از تنظیمات سیستم عامل استفاده کنید</value>
</data>
<data name="Show only as search result" xml:space="preserve">
<value>نمایش فقط به عنوان نتیجه جستجو</value>
<value>فقط به عنوان نتیجه جستجو نمایش داده شود</value>
</data>
<data name="Single click to open a directory instead of double click" xml:space="preserve">
<value>یک کلیک برای باز کردن یک دایرکتوری به جای دوبار کلیک کردن</value>
@ -445,7 +445,7 @@
<value>کنار قبلی</value>
</data>
<data name="Offset by pixels" xml:space="preserve">
<value>افست با پیکسل</value>
<value>انحراف با پیکسل</value>
</data>
<data name="Overlapping" xml:space="preserve">
<value>با هم تداخل دارند</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>فیلتر منو بر اساس نوع فایل به عنوان مثال: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>تعداد عناصر را در زیر نمایش دهید</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>نمایش عنوان دایرکتوری در بالا</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>نمایش کلیدهای تابع در زیر</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>نمایش نوار جستجو</value>
</data>
</root>

View file

@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>Kätkö</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Näytä aina piilotetut tiedostot, hakemistot tai asemat</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Suodatinvalikko tiedostotyypin mukaan, esim.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Näytä elementtien lukumäärä alla</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Näytä hakemiston otsikko yläreunassa</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Näytä toimintonäppäimet alla</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Näytä hakupalkki</value>
</data>
</root>

View file

@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>Cache</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Toujours afficher les fichiers, répertoires ou lecteurs cachés</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Menu Filtrer par type de fichier, par exemple : *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Afficher le nombre d'éléments ci-dessous</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Afficher le titre du répertoire en haut</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Afficher les touches de fonction ci-dessous</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Afficher la barre de recherche</value>
</data>
</root>

View file

@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>Taisce</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Taispeáin comhaid fholaithe, eolairí nó tiomántáin i gcónaí</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Scag an roghchlár de réir an chineáil comhaid m.sh.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Taispeáin líon na ndúl thíos</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Taispeáin teideal an eolaire ag barr</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Taispeáin na heochracha feidhme thíos</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Taispeáin barra cuardaigh</value>
</data>
</root>

View file

@ -391,7 +391,7 @@
<value>Cantos redondeados</value>
</data>
<data name="Appearance" xml:space="preserve">
<value>Aparencia</value>
<value>Aparición</value>
</data>
<data name="Bottom left" xml:space="preserve">
<value>Abaixo á esquerda</value>
@ -420,8 +420,8 @@
<data name="Cache" xml:space="preserve">
<value>Caché</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<value>Mostrar sempre ficheiros, directorios ou unidades ocultos</value>
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Mostra sempre ficheiros, directorios ou unidades ocultos</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
<value>Ficheiros e directorios ocultos</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Filtrar menú por tipo de ficheiro, por exemplo: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Mostra o número de elementos a continuación</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Mostra o título do directorio na parte superior</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Mostra as teclas de función a continuación</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Mostrar a barra de busca</value>
</data>
</root>

View file

@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>કેશ</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>હંમેશા છુપાયેલી ફાઇલો, ડિરેક્ટરીઓ અથવા ડ્રાઇવ્સ બતાવો</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>ફાઇલ પ્રકાર દ્વારા ફિલ્ટર મેનૂ ઉ.દા.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>નીચે ઘટકોની સંખ્યા બતાવો</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>ટોચ પર ડિરેક્ટરી શીર્ષક બતાવો</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>નીચે ફંક્શન કીઓ બતાવો</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>શોધ બાર બતાવો</value>
</data>
</root>

View file

@ -118,7 +118,7 @@
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="About SystemTrayMenu" xml:space="preserve">
<value>सिस्टमट्रेमेनू के बारे में</value>
<value>SystemTrayMenu के बारे में</value>
</data>
<data name="OK" xml:space="preserve">
<value>ठीक है</value>
@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>कैश</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>हमेशा छिपी हुई फ़ाइलें, निर्देशिका या ड्राइव दिखाएं</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>फ़ाइल प्रकार के अनुसार फ़िल्टर मेनू उदा.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>नीचे तत्वों की संख्या दिखाएँ</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>शीर्ष पर निर्देशिका शीर्षक दिखाएं</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>नीचे फ़ंक्शन कुंजियां दिखाएं</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>खोज बार दिखाएं</value>
</data>
</root>

View file

@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>Cache</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Uvijek prikaži skrivene datoteke, direktorije ili pogone</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Izbornik filtriranja prema vrsti datoteke, npr.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Prikaži broj elemenata u nastavku</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Prikaži naslov imenika na vrhu</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>U nastavku prikažite funkcijske tipke</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Prikaži traku za pretraživanje</value>
</data>
</root>

View file

@ -268,7 +268,7 @@
<value>Flèch</value>
</data>
<data name="Arrow when clicking" xml:space="preserve">
<value>Flèch lè w klike sou</value>
<value>Flèch lè w klike</value>
</data>
<data name="Arrow while mouse hovers over it" xml:space="preserve">
<value>Flèch pandan y ap sourit la sou li</value>
@ -349,7 +349,7 @@
<value>Si konsantre a pèdi epi yo te peze kle antre a</value>
</data>
<data name="Milliseconds until the menu closes if in this case the menu is not reactivated" xml:space="preserve">
<value>Milisgond jiskaske meni an fèmen si nan ka sa a meni an pa reaktive</value>
<value>Milisecond jiskaske meni an fèmen si nan ka sa a meni an pa reaktive</value>
</data>
<data name="Show in Taskbar" xml:space="preserve">
<value>Montre nan Taskbar</value>
@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>Cache</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Toujou montre dosye kache, anyè oswa kondui</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Filtre meni pa kalite fichye pa egzanp: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Montre kantite eleman ki anba a</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Montre tit anyè anlè</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Montre kle fonksyon anba a</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Montre ba rechèch la</value>
</data>
</root>

View file

@ -316,7 +316,7 @@
<value>Ikonok</value>
</data>
<data name="Set by context menu " xml:space="preserve">
<value>Helyi menü beállítása</value>
<value>Helyi menü által beállítva</value>
</data>
<data name="Set as directory" xml:space="preserve">
<value>Beállítás könyvtárként</value>
@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>Gyorsítótár</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Mindig mutasson rejtett fájlokat, könyvtárakat vagy meghajtókat</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Szűrőmenü fájltípus szerint, pl.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Mutasd az elemek számát alább</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>A könyvtár címének megjelenítése felül</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>A funkcióbillentyűk megjelenítése lent</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Keresősáv megjelenítése</value>
</data>
</root>

View file

@ -420,8 +420,8 @@
<data name="Cache" xml:space="preserve">
<value>Քեշ</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<value>Միշտ ցույց տալ թաքնված ֆայլերը, գրացուցակները կամ կրիչներ</value>
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Միշտ ցուցադրեք թաքնված ֆայլերը, գրացուցակները կամ կրիչներ</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
<value>Թաքնված ֆայլեր և գրացուցակներ</value>
@ -475,7 +475,7 @@
<value>Տեսակավորում</value>
</data>
<data name="Copy row item via drag drop" xml:space="preserve">
<value>Պատճենել տողի տարրը քաշել-թափելու միջոցով</value>
<value>Պատճենել տողի տարրը քաշել-թողարկման միջոցով</value>
</data>
<data name="Drag" xml:space="preserve">
<value>Քաշել</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Զտել ընտրացանկը ըստ ֆայլի տեսակի, օրինակ՝ *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Ցույց տալ տարրերի քանակը ստորև</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Ցույց տալ գրացուցակի անվանումը վերևում</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Ցուցադրել ստեղնաշարի ստեղները</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Ցույց տալ որոնման տողը</value>
</data>
</root>

View file

@ -187,7 +187,7 @@
<value>Anda tidak memiliki akses ke direktori root aplikasi. Berikan akses ke direktori atau ubah direktori root.</value>
</data>
<data name="Single click to open an element instead of double click" xml:space="preserve">
<value>Klik satu kali untuk membuka elemen alih-alih klik dua kali</value>
<value>Satu klik untuk membuka elemen alih-alih klik dua kali</value>
</data>
<data name="Color scheme dark always active" xml:space="preserve">
<value>Skema warna gelap selalu aktif</value>
@ -420,8 +420,8 @@
<data name="Cache" xml:space="preserve">
<value>Cache</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<value>Selalu Tampilkan file, direktori, atau drive tersembunyi</value>
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Selalu tampilkan file, direktori, atau drive tersembunyi</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
<value>File dan direktori tersembunyi</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Filter menu menurut jenis file mis.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Tunjukkan jumlah elemen di bawah ini</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Tampilkan judul direktori di atas</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Tampilkan tombol fungsi di bawah ini</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Tampilkan bilah pencarian</value>
</data>
</root>

View file

@ -403,7 +403,7 @@
<value>Aðalvalmynd birtist</value>
</data>
<data name="Mouse location (Above Taskbar icon)" xml:space="preserve">
<value>Staðsetning músar (fyrir ofan verkefnastikuna)</value>
<value>Staðsetning músar (fyrir ofan verkstiku táknið)</value>
</data>
<data name="Custom (drag it to the appropriate place)" xml:space="preserve">
<value>Sérsniðið (dragaðu það á viðeigandi stað)</value>
@ -420,8 +420,8 @@
<data name="Cache" xml:space="preserve">
<value>Skyndiminni</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<value>Sýna alltaf faldar skrár, möppur eða drif</value>
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Sýndu alltaf faldar skrár, möppur eða drif</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
<value>Faldar skrár og möppur</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Sía valmynd eftir skráargerð t.d.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Sýndu fjölda þátta hér að neðan</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Sýna möppuheiti efst</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Sýna aðgerðarlykla hér að neðan</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Sýna leitarstiku</value>
</data>
</root>

View file

@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>cache</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Mostra sempre file, directory o unità nascosti</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Filtra il menu per tipo di file, ad es.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Mostra il conteggio degli elementi di seguito</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Mostra il titolo della directory in alto</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Mostra i tasti funzione di seguito</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Mostra barra di ricerca</value>
</data>
</root>

View file

@ -181,7 +181,7 @@
<value>בחר ספרייה</value>
</data>
<data name="Your root directory for the app does not exist or is empty! Change the root directory or put some files, directories or shortcuts into the root directory." xml:space="preserve">
<value>ספריית השורש שלך עבור האפליקציה אינה קיימת או ריקה! שנה את ספריית השורש או הכנס מספר קבצים, ספריות או קיצורי דרך בספריית השורש.</value>
<value>ספריית השורש שלך עבור האפליקציה אינה קיימת או ריקה! שנה את ספריית השורש או הכנס כמה קבצים, ספריות או קיצורי דרך בספריית השורש.</value>
</data>
<data name="You have no access to the root directory of the app. Grant access to the directory or change the root directory." xml:space="preserve">
<value>אין לך גישה לספריית השורש של האפליקציה. הענק גישה לספרייה או שנה את ספריית הבסיס.</value>
@ -262,7 +262,7 @@
<value>פתח את ספריית היישומים</value>
</data>
<data name="Pixels maximum menu height" xml:space="preserve">
<value>גובה תפריט מקסימלי של פיקסלים</value>
<value>פיקסלים גובה תפריט מקסימלי</value>
</data>
<data name="Arrow" xml:space="preserve">
<value>חֵץ</value>
@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>מטמון</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>הצג תמיד קבצים מוסתרים, ספריות או כוננים</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>תפריט סינון לפי סוג קובץ, למשל: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>הצג את ספירת האלמנטים למטה</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>הצג את כותרת הספרייה בראש</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>הצג מקשי פונקציות למטה</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>הצג את שורת החיפוש</value>
</data>
</root>

View file

@ -331,7 +331,7 @@
<value>このショートカットが参照するアイテムが変更または移動されたため、このショートカットは正しく機能しなくなります。</value>
</data>
<data name="Open directory" xml:space="preserve">
<value>Directoryを開く</value>
<value>ディレクトリを開く</value>
</data>
<data name="Task Manager" xml:space="preserve">
<value>タスクマネージャー</value>
@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>キャッシュ</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>非表示のファイル、ディレクトリ、またはドライブを常に表示する</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>ファイルタイプでメニューをフィルタリングします。例:*。exe | * .dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>以下に要素数を表示</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>ディレクトリタイトルを上部に表示</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>以下にファンクションキーを表示</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>検索バーを表示</value>
</data>
</root>

View file

@ -316,7 +316,7 @@
<value>ხატები</value>
</data>
<data name="Set by context menu " xml:space="preserve">
<value>კონტექსტური მენიუს დაყენება</value>
<value>დაყენებულია კონტექსტური მენიუს მიხედვით</value>
</data>
<data name="Set as directory" xml:space="preserve">
<value>დააყენეთ დირექტორიად</value>
@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>ქეში</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>ყოველთვის აჩვენე ფარული ფაილები, დირექტორიები ან დისკები</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>მენიუს გაფილტვრა ფაილის ტიპის მიხედვით, მაგ.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>ელემენტების რაოდენობის ჩვენება ქვემოთ</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>აჩვენე დირექტორია სათაური ზედა</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>აჩვენეთ ფუნქციის კლავიშები ქვემოთ</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>საძიებო ზოლის ჩვენება</value>
</data>
</root>

View file

@ -355,7 +355,7 @@
<value>បង្ហាញនៅក្នុងរបារភារកិច្ច</value>
</data>
<data name="Add directory" xml:space="preserve">
<value>បន្ថែមថត</value>
<value>បន្ថែមថត</value>
</data>
<data name="Add content of directory to root directory" xml:space="preserve">
<value>បន្ថែមមាតិកានៃថតទៅថតឫស</value>
@ -376,7 +376,7 @@
<value>ឯកសារតែប៉ុណ្ណោះ</value>
</data>
<data name="Cache main menu" xml:space="preserve">
<value>ម៉ឺនុយមេឃ្លាំងសម្ងាត់</value>
<value>ម៉ឺនុយមេនៃឃ្លាំងសម្ងាត់</value>
</data>
<data name="Clear cache if more than this number of items" xml:space="preserve">
<value>សម្អាតឃ្លាំងសម្ងាត់ប្រសិនបើមានច្រើនជាងចំនួនធាតុនេះ។</value>
@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>ឃ្លាំង​សម្ងាត់</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>តែងតែបង្ហាញឯកសារ ថត ឬដ្រាយដែលលាក់</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -475,7 +475,7 @@
<value>ការតម្រៀប</value>
</data>
<data name="Copy row item via drag drop" xml:space="preserve">
<value>ចម្លងធាតុជួរដេកតាមរយៈការអូសទម្លាក់</value>
<value>ចម្លងធាតុជួរដេកតាមរយៈការអូសទម្លាក់</value>
</data>
<data name="Drag" xml:space="preserve">
<value>អូស</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>ត្រងម៉ឺនុយតាមប្រភេទឯកសារ ឧ៖ *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>បង្ហាញចំនួនធាតុខាងក្រោម</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>បង្ហាញចំណងជើងថតនៅខាងលើ</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>បង្ហាញគ្រាប់ចុចមុខងារខាងក្រោម</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>បង្ហាញរបារស្វែងរក</value>
</data>
</root>

View file

@ -166,7 +166,7 @@
<value>ಹಾಟ್‌ಕೀ</value>
</data>
<data name="Start with Windows" xml:space="preserve">
<value>ವಿಂಡೋಸ್ನೊಂದಿಗೆ ಪ್ರಾರಂಭಿಸಿ</value>
<value>ವಿಂಡೋಸ್ನೊಂದಿಗೆ ಪ್ರಾರಂಭಿಸಿ</value>
</data>
<data name="Settings" xml:space="preserve">
<value>ಸಂಯೋಜನೆಗಳು</value>
@ -385,7 +385,7 @@
<value>ಮಾದರಿ ಡೈರೆಕ್ಟರಿಯನ್ನು ಸೇರಿಸಿ 'ಪ್ರಾರಂಭ ಮೆನು'</value>
</data>
<data name="Row height in percent" xml:space="preserve">
<value>ಸಾಲಿನ ಎತ್ತರ ಶೇಕಡಾದಲ್ಲಿ</value>
<value>ಸಾಲಿನ ಎತ್ತರ ಶೇಕಡಾ</value>
</data>
<data name="Round corners" xml:space="preserve">
<value>ಸುತ್ತಿನ ಮೂಲೆಗಳು</value>
@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>ಸಂಗ್ರಹ</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>ಯಾವಾಗಲೂ ಗುಪ್ತ ಫೈಲ್‌ಗಳು, ಡೈರೆಕ್ಟರಿಗಳು ಅಥವಾ ಡ್ರೈವ್‌ಗಳನ್ನು ತೋರಿಸಿ</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>ಫೈಲ್ ಪ್ರಕಾರದ ಮೂಲಕ ಮೆನುವನ್ನು ಫಿಲ್ಟರ್ ಮಾಡಿ ಉದಾ: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>ಕೆಳಗಿನ ಅಂಶಗಳ ಸಂಖ್ಯೆಯನ್ನು ತೋರಿಸಿ</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>ಮೇಲ್ಭಾಗದಲ್ಲಿ ಡೈರೆಕ್ಟರಿ ಶೀರ್ಷಿಕೆಯನ್ನು ತೋರಿಸಿ</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>ಫಂಕ್ಷನ್ ಕೀಗಳನ್ನು ಕೆಳಗೆ ತೋರಿಸಿ</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>ಹುಡುಕಾಟ ಪಟ್ಟಿಯನ್ನು ತೋರಿಸಿ</value>
</data>
</root>

View file

@ -301,7 +301,7 @@
<value>마우스를 가져가는 동안 슬라이더 1</value>
</data>
<data name="Slider while mouse hovers over it 2" xml:space="preserve">
<value>마우스가 위에 있는 동안 슬라이더 2</value>
<value>슬라이더 위에 마우스를 올려 놓는 동안 2</value>
</data>
<data name="Use icon from directory" xml:space="preserve">
<value>디렉토리의 아이콘 사용</value>
@ -310,7 +310,7 @@
<value>크기</value>
</data>
<data name="Border of menu" xml:space="preserve">
<value>메뉴 테두리</value>
<value>메뉴 테두리</value>
</data>
<data name="Icons" xml:space="preserve">
<value>아이콘</value>
@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>은닉처</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>항상 숨김 파일, 디렉토리 또는 드라이브 표시</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>파일 유형별 필터 메뉴 예: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>아래 요소 수 표시</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>맨 위에 디렉토리 제목 표시</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>아래에 기능 키 표시</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>검색창 표시</value>
</data>
</root>

View file

@ -420,8 +420,8 @@
<data name="Cache" xml:space="preserve">
<value>Cache</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<value>Semper ostende documenta occulta, directoria aut foras</value>
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Semper ostende files occulta, directoria vel foras</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
<value>Occulta files et directoriis</value>
@ -475,7 +475,7 @@
<value>Sorting</value>
</data>
<data name="Copy row item via drag drop" xml:space="preserve">
<value>Effingo row item per drag stilla</value>
<value>Effingo row item per drag gutta</value>
</data>
<data name="Drag" xml:space="preserve">
<value>Drag</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Menu e file type e.g.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Ostende comitem elementorum infra</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Ostendere indicem titulum ad top</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Munus ostende claves infra</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Monstra quaerere talea</value>
</data>
</root>

View file

@ -274,7 +274,7 @@
<value>ລູກສອນໃນຂະນະທີ່ຫນູເລື່ອນຂ້າມມັນ</value>
</data>
<data name="Background of arrow when clicking" xml:space="preserve">
<value>ພື້ນຫັງຂອງລູກສອນເມື່ອຄລິກ</value>
<value>ພື້ນຫັງຂອງລູກສອນເມື່ອຄລິກ</value>
</data>
<data name="Background of arrow while mouse hovers over it" xml:space="preserve">
<value>ພື້ນຫຼັງຂອງລູກສອນໃນຂະນະທີ່ຫນູເລື່ອນຢູ່ເທິງມັນ</value>
@ -382,7 +382,7 @@
<value>ລ້າງແຄດຖ້າມີຫຼາຍກວ່າຈໍານວນລາຍການນີ້</value>
</data>
<data name="Add sample directory 'Start Menu'" xml:space="preserve">
<value>ເພີ່ມລາຍການຕົວຢ່າງ 'ເມນູເລີ່ມຕົ້ນ'</value>
<value>ເພີ່ມລາຍຊື່ຕົວຢ່າງ 'ເມນູເລີ່ມຕົ້ນ'</value>
</data>
<data name="Row height in percent" xml:space="preserve">
<value>ຄວາມສູງແຖວເປັນເປີເຊັນ</value>
@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>ແຄດ</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>ສະແດງໄຟລ໌, ໄດເລກະທໍລີ ຫຼືໄດທີ່ເຊື່ອງໄວ້ສະເໝີ</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>ການກັ່ນຕອງເມນູຕາມປະເພດໄຟລ໌ເຊັ່ນ: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>ສະແດງຈໍານວນອົງປະກອບຂ້າງລຸ່ມນີ້</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>ສະແດງຊື່ໄດເລກະທໍລີຢູ່ເທິງ</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>ສະແດງປຸ່ມຟັງຊັນຂ້າງລຸ່ມນີ້</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>ສະແດງແຖບຄົ້ນຫາ</value>
</data>
</root>

View file

@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>Talpykla</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Visada rodyti paslėptus failus, katalogus ar diskus</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Filtravimo meniu pagal failo tipą, pvz.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Žemiau parodykite elementų skaičių</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Rodyti katalogo pavadinimą viršuje</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Rodyti funkcinius klavišus žemiau</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Rodyti paieškos juostą</value>
</data>
</root>

View file

@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>Kešatmiņa</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Vienmēr rādīt slēptos failus, direktorijus vai diskus</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Filtrēšanas izvēlne pēc faila veida, piemēram, *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Tālāk parādīt elementu skaitu</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Rādīt direktorijas nosaukumu augšpusē</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Rādīt funkciju taustiņus zemāk</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Rādīt meklēšanas joslu</value>
</data>
</root>

View file

@ -154,7 +154,7 @@
<value>Рестарт</value>
</data>
<data name="Could not register the hot key." xml:space="preserve">
<value>Не можеше да се регистрира копче за готвење.</value>
<value>Не може да се регистрира топлото копче.</value>
</data>
<data name="Abort" xml:space="preserve">
<value>Прекини</value>
@ -325,7 +325,7 @@
<value>вчитување</value>
</data>
<data name="Problem with shortcut link" xml:space="preserve">
<value>Проблем со кратенка врска</value>
<value>Проблем со врската со кратенка</value>
</data>
<data name="The item that this shortcut refers to has been changed or moved, so this shortcut will no longer work properly." xml:space="preserve">
<value>Ставката на која се однесува оваа кратенка е променета или преместена, така што оваа кратенка повеќе нема да работи правилно.</value>
@ -420,8 +420,8 @@
<data name="Cache" xml:space="preserve">
<value>Кеш</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<value>Секогаш прикажувај скриени датотеки, директориуми или дискови</value>
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Секогаш прикажувајте скриени датотеки, директориуми или дискови</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
<value>Скриени датотеки и директориуми</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Мени за филтрирање по тип на датотека, на пр.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Прикажи го бројот на елементи подолу</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Прикажи наслов на директориумот на врвот</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Прикажи ги функциските копчиња подолу</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Прикажи лента за пребарување</value>
</data>
</root>

View file

@ -271,7 +271,7 @@
<value>Anak panah apabila mengklik</value>
</data>
<data name="Arrow while mouse hovers over it" xml:space="preserve">
<value>Anak panah semasa tetikus melayang di atasnya</value>
<value>Anak panah sambil tetikus melayang di atasnya</value>
</data>
<data name="Background of arrow when clicking" xml:space="preserve">
<value>Latar belakang anak panah apabila mengklik</value>
@ -420,8 +420,8 @@
<data name="Cache" xml:space="preserve">
<value>Cache</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<value>Sentiasa Tunjukkan fail tersembunyi, direktori atau pemacu</value>
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Sentiasa tunjukkan fail, direktori atau pemacu tersembunyi</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
<value>Fail dan direktori tersembunyi</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Tapis menu mengikut jenis fail cth.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Tunjukkan kiraan unsur di bawah</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Tunjukkan tajuk direktori di bahagian atas</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Tunjukkan kekunci fungsi di bawah</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Tunjukkan bar carian</value>
</data>
</root>

View file

@ -420,8 +420,8 @@
<data name="Cache" xml:space="preserve">
<value>Cache</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<value>Dejjem Uri fajls, direttorji jew drives moħbija</value>
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Dejjem uri fajls moħbija, direttorji jew drives</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
<value>Fajls u direttorji moħbija</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Iffiltra menu skont it-tip ta' fajl eż.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Uri l-għadd ta' elementi hawn taħt</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Uri t-titlu tad-direttorju fuq nett</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Uri ċwievet tal-funzjoni hawn taħt</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Uri l-bar tat-tiftix</value>
</data>
</root>

View file

@ -298,7 +298,7 @@
<value>Schuifregelaar tijdens het slepen</value>
</data>
<data name="Slider while mouse hovers over it 1" xml:space="preserve">
<value>Schuifregelaar terwijl de muis erover zweeft 1</value>
<value>Schuif terwijl de muis erover zweeft 1</value>
</data>
<data name="Slider while mouse hovers over it 2" xml:space="preserve">
<value>Schuif terwijl de muis erover zweeft 2</value>
@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>cache</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Altijd verborgen bestanden, mappen of stations weergeven</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Filter menu op bestandstype bijv.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Toon aantal elementen hieronder</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Toon maptitel bovenaan</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Functietoetsen hieronder weergeven:</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Toon zoekbalk</value>
</data>
</root>

View file

@ -211,7 +211,7 @@
<value>Misligholde</value>
</data>
<data name="If the focus is lost and if the mouse is still on the menu" xml:space="preserve">
<value>Hvis fokuset er tapt og hvis musen fortsatt er på menyen</value>
<value>Hvis fokus er tapt og hvis musen fortsatt er på menyen</value>
</data>
<data name="Milliseconds until a menu opens when the mouse is on it" xml:space="preserve">
<value>Millisekunder til en meny åpnes når musen er på den</value>
@ -247,7 +247,7 @@
<value>Valgt element</value>
</data>
<data name="Border of selected element" xml:space="preserve">
<value>Kantlinje til valgt element</value>
<value>Kant til valgt element</value>
</data>
<data name="Convert to relative directory" xml:space="preserve">
<value>Konverter til relativ katalog</value>
@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>Cache</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Vis alltid skjulte filer, kataloger eller stasjoner</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Filtrer menyen etter filtype, f.eks.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Vis antall elementer nedenfor</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Vis katalogtittel øverst</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Vis funksjonstaster nedenfor</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Vis søkefeltet</value>
</data>
</root>

View file

@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>Pamięć podręczna</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Zawsze pokazuj ukryte pliki, katalogi lub dyski</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -463,7 +463,7 @@
<value>Zblakły</value>
</data>
<data name="Send hotkey to other instance" xml:space="preserve">
<value>Wyślij skrót do innej instancji</value>
<value>Wyślij klawisz skrótu do innej instancji</value>
</data>
<data name="Sort by date" xml:space="preserve">
<value>Sortowanie według daty</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Filtruj menu według typu pliku, np.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Pokaż liczbę elementów poniżej</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Pokaż tytuł katalogu na górze</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Pokaż klawisze funkcyjne poniżej</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Pokaż pasek wyszukiwania</value>
</data>
</root>

View file

@ -420,8 +420,8 @@
<data name="Cache" xml:space="preserve">
<value>Cache</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<value>Sempre mostrar arquivos, diretórios ou unidades ocultas</value>
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Sempre mostre arquivos, diretórios ou unidades ocultas</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
<value>Arquivos e diretórios ocultos</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Filtrar menu por tipo de arquivo, por exemplo: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Mostrar contagem de elementos abaixo</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Mostrar o título do diretório no topo</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Mostrar as teclas de função abaixo</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Mostrar barra de pesquisa</value>
</data>
</root>

View file

@ -420,8 +420,8 @@
<data name="Cache" xml:space="preserve">
<value>Cache</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<value>Sempre mostrar arquivos, diretórios ou unidades ocultas</value>
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Sempre mostre arquivos, diretórios ou unidades ocultas</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
<value>Arquivos e diretórios ocultos</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Filtrar menu por tipo de arquivo, por exemplo: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Mostrar contagem de elementos abaixo</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Mostrar o título do diretório no topo</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Mostrar as teclas de função abaixo</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Mostrar barra de pesquisa</value>
</data>
</root>

View file

@ -420,8 +420,8 @@
<data name="Cache" xml:space="preserve">
<value>Cache</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<value>Always Show hidden files, directories or drives</value>
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Always show hidden files, directories or drives</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
<value>Hidden files and directories</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Filter menu by file type e.g.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Show number of items below</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Show directory title at top</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Show function keys below</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Show search bar</value>
</data>
</root>

View file

@ -268,7 +268,7 @@
<value>Săgeată</value>
</data>
<data name="Arrow when clicking" xml:space="preserve">
<value>Săgeată când dați clic</value>
<value>Săgeată când faceți clic</value>
</data>
<data name="Arrow while mouse hovers over it" xml:space="preserve">
<value>Săgeată în timp ce mouse-ul trece peste ea</value>
@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>Cache</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Afișați întotdeauna fișierele, directoarele sau unitățile ascunse</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Filtrați meniul după tipul de fișier, de exemplu: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Arată numărul de elemente de mai jos</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Afișați titlul directorului în partea de sus</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Afișați tastele funcționale mai jos</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Afișează bara de căutare</value>
</data>
</root>

View file

@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>Кэш</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Всегда показывать скрытые файлы, каталоги или диски</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Меню фильтра по типу файла, например: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Показать количество элементов ниже</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Показать заголовок каталога вверху</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Показать функциональные клавиши ниже</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Показать панель поиска</value>
</data>
</root>

View file

@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>Cache</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Vždy zobrazovať skryté súbory, adresáre alebo jednotky</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Filtrovať menu podľa typu súboru, napr.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Nižšie zobraziť počet prvkov</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Zobraziť názov adresára v hornej časti</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Nižšie zobraziť funkčné klávesy</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Zobraziť panel vyhľadávania</value>
</data>
</root>

View file

@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>predpomnilnik</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Vedno prikaži skrite datoteke, imenike ali pogone</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -481,9 +481,21 @@
<value>Povlecite</value>
</data>
<data name="Scroll via swipe" xml:space="preserve">
<value>Pomikajte se s potegom</value>
<value>Pomikanje s potegom</value>
</data>
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Filtriraj meni po vrsti datoteke, npr.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Spodaj prikaži število elementov</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Prikaži naslov imenika na vrhu</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Spodaj prikažite funkcijske tipke</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Pokaži iskalno vrstico</value>
</data>
</root>

View file

@ -178,7 +178,7 @@
<value>Lexoni FAQ dhe më pas zgjidhni një direktori rrënjësore për SystemTrayMenu.</value>
</data>
<data name="Select directory" xml:space="preserve">
<value>Zgjidhni direktorinë</value>
<value>Zgjidhni drejtorinë</value>
</data>
<data name="Your root directory for the app does not exist or is empty! Change the root directory or put some files, directories or shortcuts into the root directory." xml:space="preserve">
<value>Drejtoria juaj kryesore për aplikacionin nuk ekziston ose është bosh! Ndryshoni direktorinë rrënjë ose vendosni disa skedarë, drejtori ose shkurtore në direktorinë rrënjë.</value>
@ -420,8 +420,8 @@
<data name="Cache" xml:space="preserve">
<value>Cache</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<value>Shfaq gjithmonë skedarë, drejtori ose disqe të fshehura</value>
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Trego gjithmonë skedarë, drejtori ose disqe të fshehura</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
<value>Skedarët dhe drejtoritë e fshehura</value>
@ -463,7 +463,7 @@
<value>Venitje</value>
</data>
<data name="Send hotkey to other instance" xml:space="preserve">
<value>Dërgo çelësin e nxehtësisë në një shembull tjetër</value>
<value>Dërgo çelësin e nxehtë në një shembull tjetër</value>
</data>
<data name="Sort by date" xml:space="preserve">
<value>Rendit sipas datës</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Menyja e filtrit sipas llojit të skedarit p.sh.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Trego numrin e elementeve më poshtë</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Shfaq titullin e drejtorisë në krye</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Shfaq çelësat e funksionit më poshtë</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Shfaq shiritin e kërkimit</value>
</data>
</root>

View file

@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>Цацхе</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Увек прикажи скривене датотеке, директоријуме или диск јединице</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Филтрирај мени према типу датотеке, нпр.: *.еке|*.длл</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Прикажи број елемената испод</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Прикажи наслов директоријума на врху</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Прикажите функцијске тастере испод</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Прикажи траку за претрагу</value>
</data>
</root>

View file

@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>Cache</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Visa alltid dolda filer, kataloger eller enheter</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -481,9 +481,21 @@
<value>Drag</value>
</data>
<data name="Scroll via swipe" xml:space="preserve">
<value>Scrolla via svep</value>
<value>Bläddra med svep</value>
</data>
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Filtrera menyn efter filtyp, t.ex.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Visa antalet element nedan</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Visa katalogtitel överst</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Visa funktionstangenter nedan</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Visa sökfältet</value>
</data>
</root>

View file

@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>Akiba</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Onyesha faili, saraka au hifadhi zilizofichwa kila wakati</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Chuja menyu kwa aina ya faili k.m.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Onyesha idadi ya vipengele hapa chini</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Onyesha kichwa cha saraka juu</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Onyesha vitufe vya kukokotoa hapa chini</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Onyesha upau wa kutafutia</value>
</data>
</root>

View file

@ -379,7 +379,7 @@
<value>கேச் முதன்மை மெனு</value>
</data>
<data name="Clear cache if more than this number of items" xml:space="preserve">
<value>இந்த உருப்படிகளின் எண்ணிக்கையை விட அதிகமாக இருந்தால் தற்காலிக சேமிப்பை அழிக்கவும்</value>
<value>இந்த எண்ணிக்கையை விட அதிகமாக இருந்தால் தற்காலிக சேமிப்பை அழிக்கவும்</value>
</data>
<data name="Add sample directory 'Start Menu'" xml:space="preserve">
<value>'ஸ்டார்ட் மெனு' மாதிரி கோப்பகத்தைச் சேர்க்கவும்</value>
@ -420,14 +420,14 @@
<data name="Cache" xml:space="preserve">
<value>தற்காலிக சேமிப்பு</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<value>மறைக்கப்பட்ட கோப்புகள், கோப்பகங்கள் அல்லது இயக்கிகளை எப்போதும் காட்டு</value>
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>எப்போதும் மறைக்கப்பட்ட கோப்புகள், கோப்பகங்கள் அல்லது இயக்கிகளை் காட்டு</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
<value>மறைக்கப்பட்ட கோப்புகள் மற்றும் கோப்பகங்கள்</value>
</data>
<data name="Never show hidden files, directories or drives" xml:space="preserve">
<value>மறைக்கப்பட்ட கோப்புகள், கோப்பகங்கள் அல்லது இயக்கிகளைக் காட்ட வேண்டாம்</value>
<value>மறைக்கப்பட்ட கோப்புகள், கோப்பகங்கள் அல்லது இயக்ககங்களைக் காட்ட வேண்டாம்</value>
</data>
<data name="Size and location" xml:space="preserve">
<value>அளவு மற்றும் இடம்</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>கோப்பு வகையின்படி மெனுவை வடிகட்டவும் எ.கா.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>உறுப்புகளின் எண்ணிக்கையை கீழே காட்டு</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>கோப்பகத்தின் தலைப்பை மேலே காட்டு</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>செயல்பாட்டு விசைகளை கீழே காட்டு</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>தேடல் பட்டியைக் காட்டு</value>
</data>
</root>

View file

@ -238,7 +238,7 @@
<value>డైరెక్టరీ తెరవబడింది</value>
</data>
<data name="Border of opened directory" xml:space="preserve">
<value>తెరిచిన డైరెక్టరీ సరిహద్దు</value>
<value>తెరిచిన డైరెక్టరీ అంచు</value>
</data>
<data name="Search field" xml:space="preserve">
<value>శోధన ఫీల్డ్</value>
@ -301,7 +301,7 @@
<value>మౌస్ దానిపై కదులుతున్నప్పుడు స్లైడర్ 1</value>
</data>
<data name="Slider while mouse hovers over it 2" xml:space="preserve">
<value>మౌస్ దానిపై హోవర్ చేస్తున్నప్పుడు స్లైడర్ 2</value>
<value>మౌస్ దానిపై కదులుతున్నప్పుడు స్లైడర్ 2</value>
</data>
<data name="Use icon from directory" xml:space="preserve">
<value>డైరెక్టరీ నుండి చిహ్నాన్ని ఉపయోగించండి</value>
@ -420,8 +420,8 @@
<data name="Cache" xml:space="preserve">
<value>కాష్</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<value>దాచిన ఫైల్‌లు, డైరెక్టరీలు లేదా డ్రైవ్‌లను ఎల్లప్పుడూ చూప</value>
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>దాచిన ఫైల్‌లు, డైరెక్టరీలు లేదా డ్రైవ్‌లను ఎల్లప్పుడూ చూపండి</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
<value>దాచిన ఫైల్‌లు మరియు డైరెక్టరీలు</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>ఫైల్ రకం ద్వారా మెనుని ఫిల్టర్ చేయండి ఉదా: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>దిగువ మూలకాల సంఖ్యను చూపు</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>ఎగువన డైరెక్టరీ శీర్షికను చూపు</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>క్రింద ఫంక్షన్ కీలను చూపించు</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>శోధన పట్టీని చూపు</value>
</data>
</root>

View file

@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>แคช</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>แสดงไฟล์ ไดเร็กทอรี หรือไดรฟ์ที่ซ่อนอยู่เสมอ</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>เมนูกรองตามประเภทไฟล์ เช่น *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>แสดงจำนวนองค์ประกอบด้านล่าง</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>แสดงชื่อไดเร็กทอรีที่ด้านบน</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>แสดงปุ่มฟังก์ชั่นด้านล่าง</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>แสดงแถบค้นหา</value>
</data>
</root>

View file

@ -349,7 +349,7 @@
<value>Kung nawala ang focus at pinindot ang Enter key</value>
</data>
<data name="Milliseconds until the menu closes if in this case the menu is not reactivated" xml:space="preserve">
<value>Milliseconds hanggang sa magsara ang menu kung sa kasong ito ay hindi na-reactivate ang menu</value>
<value>Milliseconds hanggang sa magsara ang menu kung sa kasong ito ay hindi muling na-activate ang menu</value>
</data>
<data name="Show in Taskbar" xml:space="preserve">
<value>Ipakita sa Taskbar</value>
@ -420,8 +420,8 @@
<data name="Cache" xml:space="preserve">
<value>Cache</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<value>Palaging Ipakita ang mga nakatagong file, direktoryo o drive</value>
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Palaging ipakita ang mga nakatagong file, direktoryo o drive</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
<value>Mga nakatagong file at direktoryo</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>I-filter ang menu ayon sa uri ng file hal.: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Ipakita ang bilang ng mga elemento sa ibaba</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Ipakita ang pamagat ng direktoryo sa itaas</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Ipakita ang mga function key sa ibaba</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Ipakita ang search bar</value>
</data>
</root>

View file

@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>önbellek</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Gizli dosyaları, dizinleri veya sürücüleri her zaman göster</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Menüyü dosya türüne göre filtreleyin, örneğin: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Aşağıdaki eleman sayısını göster</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Dizin başlığını en üstte göster</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Aşağıdaki fonksiyon tuşlarını göster</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Arama çubuğunu göster</value>
</data>
</root>

View file

@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>Кеш</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Завжди показувати приховані файли, каталоги або диски</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Фільтрувати меню за типом файлу, наприклад: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Показати кількість елементів нижче</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Показати назву каталогу вгорі</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Покажіть функціональні клавіші нижче</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Показати рядок пошуку</value>
</data>
</root>

View file

@ -184,10 +184,10 @@
<value>ایپ کے لیے آپ کی روٹ ڈائرکٹری موجود نہیں ہے یا خالی ہے! روٹ ڈائرکٹری کو تبدیل کریں یا روٹ ڈائرکٹری میں کچھ فائلیں، ڈائریکٹریز یا شارٹ کٹ ڈالیں۔</value>
</data>
<data name="You have no access to the root directory of the app. Grant access to the directory or change the root directory." xml:space="preserve">
<value>آپ کو ایپ کی روٹ ڈائرکٹری تک رسائی نہیں ہے۔ ڈائریکٹری تک رسائی فراہم کریں یا روٹ ڈائرکٹری کو تبدیل کریں۔</value>
<value>آپ کو ایپ کی روٹ ڈائرکٹری تک رسائی نہیں ہے۔ ڈائرکٹری تک رسائی فراہم کریں یا روٹ ڈائرکٹری کو تبدیل کریں۔</value>
</data>
<data name="Single click to open an element instead of double click" xml:space="preserve">
<value>ڈبل کلک کے بجائے ایک عنصر کو کھولنے کے لیے سنگل کلک کریں۔</value>
<value>ڈبل کلک کے بجائے کسی عنصر کو کھولنے کے لیے سنگل کلک کریں۔</value>
</data>
<data name="Color scheme dark always active" xml:space="preserve">
<value>رنگ سکیم سیاہ ہمیشہ فعال</value>
@ -262,7 +262,7 @@
<value>ایپلیکیشن ڈائرکٹری کھولیں۔</value>
</data>
<data name="Pixels maximum menu height" xml:space="preserve">
<value>پکسلز مینو کی زیادہ سے زیادہ اونچائی</value>
<value>پکسلز زیادہ سے زیادہ مینو اونچائی</value>
</data>
<data name="Arrow" xml:space="preserve">
<value>تیر</value>
@ -304,7 +304,7 @@
<value>سلائیڈر جب اس پر ماؤس منڈلاتا ہے 2</value>
</data>
<data name="Use icon from directory" xml:space="preserve">
<value>ڈائرکٹری سے آئیکن استعمال کریں۔</value>
<value>ڈائریکٹری سے آئیکن استعمال کریں۔</value>
</data>
<data name="Size" xml:space="preserve">
<value>سائز</value>
@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>کیشے</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>ہمیشہ چھپی ہوئی فائلیں، ڈائریکٹریز یا ڈرائیوز دکھائیں۔</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -445,7 +445,7 @@
<value>پچھلے کے آگے</value>
</data>
<data name="Offset by pixels" xml:space="preserve">
<value>پکسلز کے ذریعے آفسیٹ</value>
<value>پکسلز کے ذریعہ آفسیٹ</value>
</data>
<data name="Overlapping" xml:space="preserve">
<value>اوور لیپنگ</value>
@ -481,9 +481,21 @@
<value>گھسیٹیں۔</value>
</data>
<data name="Scroll via swipe" xml:space="preserve">
<value>سوائپ کے ذریعے اسکرول کریں۔</value>
<value>سوائپ کے ذریعے سکرول کریں۔</value>
</data>
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>فائل کی قسم کے لحاظ سے مینو کو فلٹر کریں جیسے: *.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>ذیل میں عناصر کی گنتی دکھائیں۔</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>ڈائرکٹری کا عنوان اوپر دکھائیں۔</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>ذیل میں فنکشن کیز دکھائیں۔</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>سرچ بار دکھائیں۔</value>
</data>
</root>

View file

@ -277,7 +277,7 @@
<value>Nền của mũi tên khi nhấp vào</value>
</data>
<data name="Background of arrow while mouse hovers over it" xml:space="preserve">
<value>Hình nền của mũi tên khi di chuột qua nó</value>
<value>Hình nền của mũi tên khi chuột di chuột qua nó</value>
</data>
<data name="Color scheme dark" xml:space="preserve">
<value>Phối màu tối</value>
@ -292,7 +292,7 @@
<value>Thanh cuộn</value>
</data>
<data name="Slider" xml:space="preserve">
<value>Con trượt</value>
<value>Thanh trượt</value>
</data>
<data name="Slider while dragging" xml:space="preserve">
<value>Thanh trượt trong khi kéo</value>
@ -328,7 +328,7 @@
<value>Sự cố với liên kết lối tắt</value>
</data>
<data name="The item that this shortcut refers to has been changed or moved, so this shortcut will no longer work properly." xml:space="preserve">
<value>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.</value>
<value>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.</value>
</data>
<data name="Open directory" xml:space="preserve">
<value>Mở thư mục</value>
@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>Bộ nhớ đệm</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>Luôn hiển thị các tệp, thư mục hoặc ổ đĩa ẩn</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>Trình đơn lọc theo loại tệp, ví dụ: * .exe | * .dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>Hiển thị số lượng các phần tử bên dưới</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>Hiển thị tiêu đề thư mục ở trên cùng</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>Hiển thị các phím chức năng bên dưới</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>Hiển thị thanh tìm kiếm</value>
</data>
</root>

View file

@ -181,10 +181,10 @@
<value>אויסקלייַבן וועגווייַזער</value>
</data>
<data name="Your root directory for the app does not exist or is empty! Change the root directory or put some files, directories or shortcuts into the root directory." xml:space="preserve">
<value>דיין וואָרצל וועגווייַזער פֿאַר די אַפּ טוט נישט עקסיסטירן אָדער איז ליידיק! טוישן די וואָרצל וועגווייַזער אָדער שטעלן עטלעכע טעקעס, דיירעקטעריז אָדער דורכוועג אין דער וואָרצל וועגווייַזער.</value>
<value>דיין וואָרצל וועגווייַזער פֿאַר די אַפּ טוט נישט עקסיסטירן אָדער איז ליידיק! טוישן די וואָרצל וועגווייַזער אָדער שטעלן עטלעכע טעקעס, דירעקטעריז אָדער דורכוועג אין דער וואָרצל וועגווייַזער.</value>
</data>
<data name="You have no access to the root directory of the app. Grant access to the directory or change the root directory." xml:space="preserve">
<value>איר האָט קיין אַקסעס צו דער וואָרצל וועגווייַזער פון די אַפּ. געבן אַקסעס צו דער וועגווייַזער אָדער טוישן די וואָרצל וועגווייַזער.</value>
<value>איר האָבן קיין אַקסעס צו דער וואָרצל וועגווייַזער פון די אַפּ. געבן אַקסעס צו דער וועגווייַזער אָדער טוישן די וואָרצל וועגווייַזער.</value>
</data>
<data name="Single click to open an element instead of double click" xml:space="preserve">
<value>איין גיט צו עפענען אַן עלעמענט אַנשטאָט פון טאָפּל גיט</value>
@ -420,7 +420,7 @@
<data name="Cache" xml:space="preserve">
<value>קאַש</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>שטענדיק ווייַזן פאַרבאָרגן טעקעס, דירעקטעריז אָדער דרייווז</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>פילטער מעניו לויט טעקע טיפּ, למשל: *.עקסע|*.דלל</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>ווייַזן ציילן פון עלעמענטן אונטן</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>ווייַז דער טיטל פון דער Directory אויבן</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>ווייַזן פֿונקציע שליסלען אונטן</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>ווייַזן זוכן באַר</value>
</data>
</root>

View file

@ -274,7 +274,7 @@
<value>鼠标悬停时的箭头</value>
</data>
<data name="Background of arrow when clicking" xml:space="preserve">
<value>击时箭头的背景</value>
<value>击时箭头的背景</value>
</data>
<data name="Background of arrow while mouse hovers over it" xml:space="preserve">
<value>鼠标悬停在箭头上时的箭头背景</value>
@ -420,8 +420,8 @@
<data name="Cache" xml:space="preserve">
<value>缓存</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<value>总是显示隐藏的文件、目录或驱动器</value>
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>始终显示隐藏的文件、目录或驱动器</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
<value>隐藏的文件和目录</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>按文件类型过滤菜单,例如:*.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>在下面显示元素的数量</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>在顶部显示目录标题</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>在下方显示功能键</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>显示搜索栏</value>
</data>
</root>

View file

@ -325,7 +325,7 @@
<value>加載</value>
</data>
<data name="Problem with shortcut link" xml:space="preserve">
<value>快捷鏈接問題</value>
<value>快捷方式鏈接問題</value>
</data>
<data name="The item that this shortcut refers to has been changed or moved, so this shortcut will no longer work properly." xml:space="preserve">
<value>此快捷方式所指的項目已更改或移動,因此此快捷方式將不再正常工作。</value>
@ -420,8 +420,8 @@
<data name="Cache" xml:space="preserve">
<value>緩存</value>
</data>
<data name="Always Show hidden files, directories or drives" xml:space="preserve">
<value>總是顯示隱藏的文件、目錄或驅動器</value>
<data name="Always show hidden files, directories or drives" xml:space="preserve">
<value>始終顯示隱藏的文件、目錄或驅動器</value>
</data>
<data name="Hidden files and directories" xml:space="preserve">
<value>隱藏的文件和目錄</value>
@ -486,4 +486,16 @@
<data name="Filter menu by file type e.g.: *.exe|*.dll" xml:space="preserve">
<value>按文件類型過濾菜單,例如:*.exe|*.dll</value>
</data>
<data name="Show count of elements below" xml:space="preserve">
<value>在下面顯示元素的數量</value>
</data>
<data name="Show directory title at top" xml:space="preserve">
<value>在頂部顯示目錄標題</value>
</data>
<data name="Show function keys below" xml:space="preserve">
<value>在下方顯示功能鍵</value>
</data>
<data name="Show search bar" xml:space="preserve">
<value>顯示搜索欄</value>
</data>
</root>

View file

@ -114,8 +114,8 @@ namespace SystemTrayMenu.Helper
aboutBox.AppMoreInfo += "#235 #242 243 #247, #271 Tom, #237 Torsten S., #240 video Patrick, #244 Gunter D., #246 #329 MACE4GITHUB, #259 #310 vanjac, ";
aboutBox.AppMoreInfo += "#262 terencemcdonnell, #269 petersnows25, #272 Peter M., #273 #274 ParasiteDelta, #275 #276 #278 donaldaken, ";
aboutBox.AppMoreInfo += "#277 Jan S., #282 akuznets, #283 #284 #289 RuSieg, #285 #286 dao-net, #288 William P., #294 #295 #296 Stefan Mahrer, ";
aboutBox.AppMoreInfo += "#225 #297 #299 #317 #321 #324 #330 chip33, #298 phanirithvij, #306 wini2, #370 dna5589, #372 not-nef, #376 Michelle H. ";
aboutBox.AppMoreInfo += "#377 SoenkeHob, #384 boydfields, #387 yrctw" + Environment.NewLine;
aboutBox.AppMoreInfo += "#225 #297 #299 #317 #321 #324 #330 #386 chip33, #298 phanirithvij, #306 wini2, #370 dna5589, #372 not-nef, #376 Michelle H. ";
aboutBox.AppMoreInfo += "#377 SoenkeHob, #380 TransLucida, #384 boydfields, #386 visusys, #387 yrctw" + Environment.NewLine;
aboutBox.AppMoreInfo += @"
Sponsors - Thank you!
------------------

View file

@ -35,7 +35,7 @@ namespace SystemTrayMenu.UserInterface
// labelTitle
labelTitle.AutoEllipsis = true;
labelTitle.AutoSize = true;
labelTitle.AutoSize = false;
labelTitle.Dock = DockStyle.Fill;
labelTitle.Font = new Font("Segoe UI", 8.25F * Scaling.Factor, FontStyle.Bold, GraphicsUnit.Point, 0);
labelTitle.ForeColor = Color.Black;
@ -43,7 +43,7 @@ namespace SystemTrayMenu.UserInterface
labelTitle.Margin = new Padding(0);
labelTitle.Name = "labelTitle";
labelTitle.Padding = new Padding(3, 0, 0, 1);
labelTitle.Size = new Size(70, 14);
labelTitle.Size = new Size(70, 12);
labelTitle.Text = "SystemTrayMenu";
labelTitle.TextAlign = ContentAlignment.MiddleCenter;
labelTitle.MouseWheel += new MouseEventHandler(DgvMouseWheel);

View file

@ -165,7 +165,7 @@
this.labelItems.AutoSize = true;
this.labelItems.ForeColor = System.Drawing.Color.White;
this.labelItems.Location = new System.Drawing.Point(10, 3);
this.labelItems.Margin = new System.Windows.Forms.Padding(0);
this.labelItems.Margin = new System.Windows.Forms.Padding(0, 6, 0, 0);
this.labelItems.Name = "labelItems";
this.labelItems.Size = new System.Drawing.Size(45, 15);
this.labelItems.TabIndex = 2;
@ -184,7 +184,7 @@
this.tableLayoutPanelMenu.Location = new System.Drawing.Point(1, 1);
this.tableLayoutPanelMenu.Margin = new System.Windows.Forms.Padding(0);
this.tableLayoutPanelMenu.Name = "tableLayoutPanelMenu";
this.tableLayoutPanelMenu.Padding = new System.Windows.Forms.Padding(3, 0, 3, 0);
this.tableLayoutPanelMenu.Padding = new System.Windows.Forms.Padding(6, 0, 6, 6);
this.tableLayoutPanelMenu.RowCount = 7;
this.tableLayoutPanelMenu.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanelMenu.RowStyles.Add(new System.Windows.Forms.RowStyle());
@ -243,9 +243,9 @@
this.pictureBoxRestart.BackColor = System.Drawing.Color.Transparent;
this.pictureBoxRestart.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pictureBoxRestart.Location = new System.Drawing.Point(122, 1);
this.pictureBoxRestart.Margin = new System.Windows.Forms.Padding(1);
this.pictureBoxRestart.Margin = new System.Windows.Forms.Padding(1, 5, 1, 1);
this.pictureBoxRestart.Name = "pictureBoxRestart";
this.pictureBoxRestart.Size = new System.Drawing.Size(20, 20);
this.pictureBoxRestart.Size = new System.Drawing.Size(16, 16);
this.pictureBoxRestart.TabIndex = 3;
this.pictureBoxRestart.TabStop = false;
this.pictureBoxRestart.Paint += new System.Windows.Forms.PaintEventHandler(this.PictureBoxRestart_Paint);
@ -259,9 +259,9 @@
this.pictureBoxSettings.BackColor = System.Drawing.Color.Transparent;
this.pictureBoxSettings.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pictureBoxSettings.Location = new System.Drawing.Point(100, 1);
this.pictureBoxSettings.Margin = new System.Windows.Forms.Padding(1);
this.pictureBoxSettings.Margin = new System.Windows.Forms.Padding(1, 5, 1, 1);
this.pictureBoxSettings.Name = "pictureBoxSettings";
this.pictureBoxSettings.Size = new System.Drawing.Size(20, 20);
this.pictureBoxSettings.Size = new System.Drawing.Size(16, 16);
this.pictureBoxSettings.TabIndex = 2;
this.pictureBoxSettings.TabStop = false;
this.pictureBoxSettings.Paint += new System.Windows.Forms.PaintEventHandler(this.PictureBoxSettings_Paint);
@ -275,9 +275,9 @@
this.pictureBoxMenuAlwaysOpen.BackColor = System.Drawing.Color.Transparent;
this.pictureBoxMenuAlwaysOpen.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pictureBoxMenuAlwaysOpen.Location = new System.Drawing.Point(78, 1);
this.pictureBoxMenuAlwaysOpen.Margin = new System.Windows.Forms.Padding(1);
this.pictureBoxMenuAlwaysOpen.Margin = new System.Windows.Forms.Padding(1, 5, 1, 1);
this.pictureBoxMenuAlwaysOpen.Name = "pictureBoxMenuAlwaysOpen";
this.pictureBoxMenuAlwaysOpen.Size = new System.Drawing.Size(20, 20);
this.pictureBoxMenuAlwaysOpen.Size = new System.Drawing.Size(16, 16);
this.pictureBoxMenuAlwaysOpen.TabIndex = 1;
this.pictureBoxMenuAlwaysOpen.TabStop = false;
this.pictureBoxMenuAlwaysOpen.Click += new System.EventHandler(this.PictureBoxMenuAlwaysOpen_Click);
@ -292,9 +292,9 @@
this.pictureBoxOpenFolder.BackColor = System.Drawing.Color.Transparent;
this.pictureBoxOpenFolder.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pictureBoxOpenFolder.Location = new System.Drawing.Point(56, 1);
this.pictureBoxOpenFolder.Margin = new System.Windows.Forms.Padding(1);
this.pictureBoxOpenFolder.Margin = new System.Windows.Forms.Padding(1, 5, 1, 1);
this.pictureBoxOpenFolder.Name = "pictureBoxOpenFolder";
this.pictureBoxOpenFolder.Size = new System.Drawing.Size(20, 20);
this.pictureBoxOpenFolder.Size = new System.Drawing.Size(16, 16);
this.pictureBoxOpenFolder.TabIndex = 1;
this.pictureBoxOpenFolder.TabStop = false;
this.pictureBoxOpenFolder.Paint += new System.Windows.Forms.PaintEventHandler(this.PictureBoxOpenFolder_Paint);

View file

@ -347,9 +347,9 @@ namespace SystemTrayMenu.UserInterface
return dgv;
}
internal void SetTitle(string title)
internal void AdjustControls(string title, MenuDataValidity menuDataValidity)
{
if (!string.IsNullOrEmpty(title))
if (!string.IsNullOrEmpty(title) && Config.ShowDirectoryTitleAtTop)
{
if (title.Length > MenuDefines.LengthMax)
{
@ -357,6 +357,35 @@ namespace SystemTrayMenu.UserInterface
}
labelTitle.Text = title;
labelTitle.AutoSize = true;
}
else
{
labelTitle.Text = string.Empty;
}
if (!Config.ShowSearchBar)
{
tableLayoutPanelSearch.AutoSize = false;
tableLayoutPanelSearch.Height = 0;
textBoxSearch.AutoSize = false;
textBoxSearch.Height = 0;
pictureBoxSearch.Visible = false;
panelLine.Visible = false;
}
if (!Config.ShowCountOfElementsBelow &&
menuDataValidity == MenuDataValidity.Valid)
{
labelItems.Visible = false;
}
if (!Config.ShowFunctionKeysBelow)
{
pictureBoxOpenFolder.Visible = false;
pictureBoxMenuAlwaysOpen.Visible = false;
pictureBoxSettings.Visible = false;
pictureBoxRestart.Visible = false;
}
}

View file

@ -316,8 +316,12 @@ namespace SystemTrayMenu.UserInterface
this.labelSearchField = new System.Windows.Forms.Label();
this.groupBoxAppearance = new System.Windows.Forms.GroupBox();
this.tableLayoutPanelAppearance = new System.Windows.Forms.TableLayoutPanel();
this.checkBoxShowCountOfElementsBelow = new System.Windows.Forms.CheckBox();
this.checkBoxShowFunctionKeysBelow = new System.Windows.Forms.CheckBox();
this.buttonAppearanceDefault = new System.Windows.Forms.Button();
this.checkBoxShowSearchBar = new System.Windows.Forms.CheckBox();
this.checkBoxUseFading = new System.Windows.Forms.CheckBox();
this.checkBoxShowDirectoryTitleAtTop = new System.Windows.Forms.CheckBox();
this.checkBoxDarkModeAlwaysOn = new System.Windows.Forms.CheckBox();
this.checkBoxRoundCorners = new System.Windows.Forms.CheckBox();
this.tableLayoutPanelBottom = new System.Windows.Forms.TableLayoutPanel();
@ -606,7 +610,7 @@ namespace SystemTrayMenu.UserInterface
this.buttonChangeFolder.Margin = new System.Windows.Forms.Padding(2, 3, 3, 3);
this.buttonChangeFolder.MinimumSize = new System.Drawing.Size(75, 23);
this.buttonChangeFolder.Name = "buttonChangeFolder";
this.buttonChangeFolder.Size = new System.Drawing.Size(94, 25);
this.buttonChangeFolder.Size = new System.Drawing.Size(119, 25);
this.buttonChangeFolder.TabIndex = 0;
this.buttonChangeFolder.Text = "Changing directory";
this.buttonChangeFolder.UseVisualStyleBackColor = true;
@ -2312,7 +2316,7 @@ namespace SystemTrayMenu.UserInterface
this.tableLayoutPanelCustomize.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanelCustomize.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanelCustomize.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanelCustomize.Size = new System.Drawing.Size(391, 1356);
this.tableLayoutPanelCustomize.Size = new System.Drawing.Size(391, 1456);
this.tableLayoutPanelCustomize.TabIndex = 0;
//
// groupBoxColorsDarkMode
@ -2320,7 +2324,7 @@ namespace SystemTrayMenu.UserInterface
this.groupBoxColorsDarkMode.AutoSize = true;
this.groupBoxColorsDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.groupBoxColorsDarkMode.Controls.Add(this.tableLayoutPanelDarkMode);
this.groupBoxColorsDarkMode.Location = new System.Drawing.Point(3, 748);
this.groupBoxColorsDarkMode.Location = new System.Drawing.Point(3, 848);
this.groupBoxColorsDarkMode.MaximumSize = new System.Drawing.Size(385, 0);
this.groupBoxColorsDarkMode.MinimumSize = new System.Drawing.Size(385, 0);
this.groupBoxColorsDarkMode.Name = "groupBoxColorsDarkMode";
@ -3393,7 +3397,7 @@ namespace SystemTrayMenu.UserInterface
this.groupBoxColorsLightMode.AutoSize = true;
this.groupBoxColorsLightMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.groupBoxColorsLightMode.Controls.Add(this.tableLayoutPanelColorsAndDefault);
this.groupBoxColorsLightMode.Location = new System.Drawing.Point(3, 137);
this.groupBoxColorsLightMode.Location = new System.Drawing.Point(3, 237);
this.groupBoxColorsLightMode.MaximumSize = new System.Drawing.Size(385, 0);
this.groupBoxColorsLightMode.MinimumSize = new System.Drawing.Size(385, 0);
this.groupBoxColorsLightMode.Name = "groupBoxColorsLightMode";
@ -4473,7 +4477,7 @@ namespace SystemTrayMenu.UserInterface
this.groupBoxAppearance.MaximumSize = new System.Drawing.Size(385, 0);
this.groupBoxAppearance.MinimumSize = new System.Drawing.Size(385, 0);
this.groupBoxAppearance.Name = "groupBoxAppearance";
this.groupBoxAppearance.Size = new System.Drawing.Size(385, 128);
this.groupBoxAppearance.Size = new System.Drawing.Size(385, 228);
this.groupBoxAppearance.TabIndex = 1;
this.groupBoxAppearance.TabStop = false;
this.groupBoxAppearance.Text = "groupBoxAppearance";
@ -4484,26 +4488,55 @@ namespace SystemTrayMenu.UserInterface
this.tableLayoutPanelAppearance.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.tableLayoutPanelAppearance.ColumnCount = 1;
this.tableLayoutPanelAppearance.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanelAppearance.Controls.Add(this.buttonAppearanceDefault, 0, 3);
this.tableLayoutPanelAppearance.Controls.Add(this.checkBoxShowCountOfElementsBelow, 0, 6);
this.tableLayoutPanelAppearance.Controls.Add(this.checkBoxShowFunctionKeysBelow, 0, 5);
this.tableLayoutPanelAppearance.Controls.Add(this.buttonAppearanceDefault, 0, 7);
this.tableLayoutPanelAppearance.Controls.Add(this.checkBoxShowSearchBar, 0, 4);
this.tableLayoutPanelAppearance.Controls.Add(this.checkBoxUseFading, 0, 1);
this.tableLayoutPanelAppearance.Controls.Add(this.checkBoxShowDirectoryTitleAtTop, 0, 3);
this.tableLayoutPanelAppearance.Controls.Add(this.checkBoxDarkModeAlwaysOn, 0, 2);
this.tableLayoutPanelAppearance.Controls.Add(this.checkBoxRoundCorners, 0, 0);
this.tableLayoutPanelAppearance.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanelAppearance.Location = new System.Drawing.Point(3, 19);
this.tableLayoutPanelAppearance.Name = "tableLayoutPanelAppearance";
this.tableLayoutPanelAppearance.RowCount = 4;
this.tableLayoutPanelAppearance.RowCount = 8;
this.tableLayoutPanelAppearance.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanelAppearance.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanelAppearance.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanelAppearance.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanelAppearance.Size = new System.Drawing.Size(379, 106);
this.tableLayoutPanelAppearance.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanelAppearance.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanelAppearance.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanelAppearance.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanelAppearance.Size = new System.Drawing.Size(379, 206);
this.tableLayoutPanelAppearance.TabIndex = 1;
//
// checkBoxShowCountOfElementsBelow
//
this.checkBoxShowCountOfElementsBelow.AutoSize = true;
this.checkBoxShowCountOfElementsBelow.Location = new System.Drawing.Point(3, 153);
this.checkBoxShowCountOfElementsBelow.Name = "checkBoxShowCountOfElementsBelow";
this.checkBoxShowCountOfElementsBelow.Size = new System.Drawing.Size(232, 19);
this.checkBoxShowCountOfElementsBelow.TabIndex = 4;
this.checkBoxShowCountOfElementsBelow.Text = "checkBoxShowCountOfElementsBelow";
this.checkBoxShowCountOfElementsBelow.UseVisualStyleBackColor = true;
//
// checkBoxShowFunctionKeysBelow
//
this.checkBoxShowFunctionKeysBelow.AutoSize = true;
this.checkBoxShowFunctionKeysBelow.Dock = System.Windows.Forms.DockStyle.Fill;
this.checkBoxShowFunctionKeysBelow.Location = new System.Drawing.Point(3, 128);
this.checkBoxShowFunctionKeysBelow.Name = "checkBoxShowFunctionKeysBelow";
this.checkBoxShowFunctionKeysBelow.Size = new System.Drawing.Size(373, 19);
this.checkBoxShowFunctionKeysBelow.TabIndex = 3;
this.checkBoxShowFunctionKeysBelow.Text = "checkBoxShowFunctionKeysBelow";
this.checkBoxShowFunctionKeysBelow.UseVisualStyleBackColor = true;
//
// buttonAppearanceDefault
//
this.buttonAppearanceDefault.AutoSize = true;
this.buttonAppearanceDefault.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.buttonAppearanceDefault.Location = new System.Drawing.Point(3, 78);
this.buttonAppearanceDefault.Location = new System.Drawing.Point(3, 178);
this.buttonAppearanceDefault.MinimumSize = new System.Drawing.Size(75, 23);
this.buttonAppearanceDefault.Name = "buttonAppearanceDefault";
this.buttonAppearanceDefault.Size = new System.Drawing.Size(154, 25);
@ -4512,6 +4545,17 @@ namespace SystemTrayMenu.UserInterface
this.buttonAppearanceDefault.UseVisualStyleBackColor = true;
this.buttonAppearanceDefault.Click += new System.EventHandler(this.ButtonAppearanceDefault_Click);
//
// checkBoxShowSearchBar
//
this.checkBoxShowSearchBar.AutoSize = true;
this.checkBoxShowSearchBar.Dock = System.Windows.Forms.DockStyle.Fill;
this.checkBoxShowSearchBar.Location = new System.Drawing.Point(3, 103);
this.checkBoxShowSearchBar.Name = "checkBoxShowSearchBar";
this.checkBoxShowSearchBar.Size = new System.Drawing.Size(373, 19);
this.checkBoxShowSearchBar.TabIndex = 2;
this.checkBoxShowSearchBar.Text = "checkBoxShowSearchBar";
this.checkBoxShowSearchBar.UseVisualStyleBackColor = true;
//
// checkBoxUseFading
//
this.checkBoxUseFading.AutoSize = true;
@ -4523,6 +4567,17 @@ namespace SystemTrayMenu.UserInterface
this.checkBoxUseFading.Text = "checkBoxUseFading";
this.checkBoxUseFading.UseVisualStyleBackColor = true;
//
// checkBoxShowDirectoryTitleAtTop
//
this.checkBoxShowDirectoryTitleAtTop.AutoSize = true;
this.checkBoxShowDirectoryTitleAtTop.Dock = System.Windows.Forms.DockStyle.Fill;
this.checkBoxShowDirectoryTitleAtTop.Location = new System.Drawing.Point(3, 78);
this.checkBoxShowDirectoryTitleAtTop.Name = "checkBoxShowDirectoryTitleAtTop";
this.checkBoxShowDirectoryTitleAtTop.Size = new System.Drawing.Size(373, 19);
this.checkBoxShowDirectoryTitleAtTop.TabIndex = 1;
this.checkBoxShowDirectoryTitleAtTop.Text = "checkBoxShowDirectoryTitleAtTop";
this.checkBoxShowDirectoryTitleAtTop.UseVisualStyleBackColor = true;
//
// checkBoxDarkModeAlwaysOn
//
this.checkBoxDarkModeAlwaysOn.AutoSize = true;
@ -4587,7 +4642,7 @@ namespace SystemTrayMenu.UserInterface
this.buttonCancel.Location = new System.Drawing.Point(348, 0);
this.buttonCancel.Margin = new System.Windows.Forms.Padding(3, 0, 5, 0);
this.buttonCancel.MinimumSize = new System.Drawing.Size(75, 23);
this.buttonCancel.Name = "Abort";
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(75, 25);
this.buttonCancel.TabIndex = 2;
this.buttonCancel.Text = "Abort";
@ -5166,5 +5221,9 @@ namespace SystemTrayMenu.UserInterface
private System.Windows.Forms.GroupBox groupBoxSearchPattern;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanelSearchPattern;
private System.Windows.Forms.TextBox textBoxSearchPattern;
private System.Windows.Forms.CheckBox checkBoxShowFunctionKeysBelow;
private System.Windows.Forms.CheckBox checkBoxShowSearchBar;
private System.Windows.Forms.CheckBox checkBoxShowDirectoryTitleAtTop;
private System.Windows.Forms.CheckBox checkBoxShowCountOfElementsBelow;
}
}

View file

@ -155,7 +155,7 @@ namespace SystemTrayMenu.UserInterface
groupBoxHiddenFilesAndFolders.Text = Translator.GetText("Hidden files and directories");
radioButtonSystemSettingsShowHiddenFiles.Text = Translator.GetText("Use operating system settings");
radioButtonNeverShowHiddenFiles.Text = Translator.GetText("Never show hidden files, directories or drives");
radioButtonAlwaysShowHiddenFiles.Text = Translator.GetText("Always Show hidden files, directories or drives");
radioButtonAlwaysShowHiddenFiles.Text = Translator.GetText("Always show hidden files, directories or drives");
groupBoxSorting.Text = Translator.GetText("Sorting");
radioButtonSortByName.Text = Translator.GetText("Sort by name");
radioButtonSortByDate.Text = Translator.GetText("Sort by date");
@ -193,6 +193,10 @@ namespace SystemTrayMenu.UserInterface
checkBoxRoundCorners.Text = Translator.GetText("Round corners");
checkBoxUseFading.Text = Translator.GetText("Fading");
checkBoxDarkModeAlwaysOn.Text = Translator.GetText("Color scheme dark always active");
checkBoxShowDirectoryTitleAtTop.Text = Translator.GetText("Show directory title at top");
checkBoxShowCountOfElementsBelow.Text = Translator.GetText("Show count of elements below");
checkBoxShowSearchBar.Text = Translator.GetText("Show search bar");
checkBoxShowFunctionKeysBelow.Text = Translator.GetText("Show function keys below");
buttonAppearanceDefault.Text = Translator.GetText("Default");
groupBoxColorsLightMode.Text = Translator.GetText("Color scheme bright");
groupBoxColorsDarkMode.Text = Translator.GetText("Color scheme dark");
@ -522,6 +526,10 @@ namespace SystemTrayMenu.UserInterface
checkBoxRoundCorners.Checked = Settings.Default.RoundCorners;
checkBoxUseFading.Checked = Settings.Default.UseFading;
checkBoxDarkModeAlwaysOn.Checked = Settings.Default.IsDarkModeAlwaysOn;
checkBoxShowDirectoryTitleAtTop.Checked = Settings.Default.ShowDirectoryTitleAtTop;
checkBoxShowSearchBar.Checked = Settings.Default.ShowSearchBar;
checkBoxShowCountOfElementsBelow.Checked = Settings.Default.ShowCountOfElementsBelow;
checkBoxShowFunctionKeysBelow.Checked = Settings.Default.ShowFunctionKeysBelow;
textBoxColorSelectedItem.Text = Settings.Default.ColorSelectedItem;
textBoxColorSelecetedItemDarkMode.Text = Settings.Default.ColorDarkModeSelecetedItem;
@ -946,6 +954,10 @@ namespace SystemTrayMenu.UserInterface
Settings.Default.RoundCorners = checkBoxRoundCorners.Checked;
Settings.Default.UseFading = checkBoxUseFading.Checked;
Settings.Default.IsDarkModeAlwaysOn = checkBoxDarkModeAlwaysOn.Checked;
Settings.Default.ShowDirectoryTitleAtTop = checkBoxShowDirectoryTitleAtTop.Checked;
Settings.Default.ShowSearchBar = checkBoxShowSearchBar.Checked;
Settings.Default.ShowCountOfElementsBelow = checkBoxShowCountOfElementsBelow.Checked;
Settings.Default.ShowFunctionKeysBelow = checkBoxShowFunctionKeysBelow.Checked;
if (checkBoxStoreConfigAtAssemblyLocation.Checked)
{
@ -1198,7 +1210,7 @@ namespace SystemTrayMenu.UserInterface
numericUpDownIconSizeInPercent.Value = 100;
numericUpDownRowHeighteInPercentage.Value = 100;
numericUpDownMenuWidth.Value = 400;
numericUpDownMenuHeight.Value = 600;
numericUpDownMenuHeight.Value = 450;
radioButtonAppearAtTheBottomRight.Checked = false;
radioButtonAppearAtTheBottomLeft.Checked = true;
@ -1334,9 +1346,13 @@ namespace SystemTrayMenu.UserInterface
private void ButtonAppearanceDefault_Click(object sender, EventArgs e)
{
checkBoxRoundCorners.Checked = true;
checkBoxUseFading.Checked = true;
checkBoxRoundCorners.Checked = false;
checkBoxUseFading.Checked = false;
checkBoxDarkModeAlwaysOn.Checked = true;
checkBoxShowDirectoryTitleAtTop.Checked = false;
checkBoxShowSearchBar.Checked = true;
checkBoxShowCountOfElementsBelow.Checked = false;
checkBoxShowFunctionKeysBelow.Checked = false;
}
private void ButtonDefaultColors_Click(object sender, EventArgs e)