mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-09 20:57:22 +02:00
fixed mistakes and added new translation keys
This commit is contained in:
@@ -17,6 +17,7 @@
|
|||||||
<system:String x:Key="wox_plugin_sys_emptyrecyclebin">Empty recycle bin</system:String>
|
<system:String x:Key="wox_plugin_sys_emptyrecyclebin">Empty recycle bin</system:String>
|
||||||
<system:String x:Key="wox_plugin_sys_hibernate">Hibernate computer</system:String>
|
<system:String x:Key="wox_plugin_sys_hibernate">Hibernate computer</system:String>
|
||||||
<system:String x:Key="wox_plugin_sys_save_all_settings">Save all Wox settings</system:String>
|
<system:String x:Key="wox_plugin_sys_save_all_settings">Save all Wox settings</system:String>
|
||||||
|
<system:String x:Key="wox_plugin_sys_reload_plugin_data">Reloads plugin data with new content added after Wox started. Plugins need to have this feature already added.</system:String>
|
||||||
|
|
||||||
<!--Dialogs-->
|
<!--Dialogs-->
|
||||||
<system:String x:Key="wox_plugin_sys_dlgtitle_success">Success</system:String>
|
<system:String x:Key="wox_plugin_sys_dlgtitle_success">Success</system:String>
|
||||||
|
|||||||
@@ -17,6 +17,7 @@
|
|||||||
<system:String x:Key="wox_plugin_sys_emptyrecyclebin">Geri Dönüşüm Kutusunu Boşalt</system:String>
|
<system:String x:Key="wox_plugin_sys_emptyrecyclebin">Geri Dönüşüm Kutusunu Boşalt</system:String>
|
||||||
<system:String x:Key="wox_plugin_sys_hibernate">Bilgisayarı Askıya Al</system:String>
|
<system:String x:Key="wox_plugin_sys_hibernate">Bilgisayarı Askıya Al</system:String>
|
||||||
<system:String x:Key="wox_plugin_sys_save_all_settings">Tüm Wox Ayarlarını Kaydet</system:String>
|
<system:String x:Key="wox_plugin_sys_save_all_settings">Tüm Wox Ayarlarını Kaydet</system:String>
|
||||||
|
<system:String x:Key="wox_plugin_sys_reload_plugin_data">Eklentilerin verilerini Wox'un açılışından sonra yapılan değişiklikleri için günceller. Eklentilerin bu özelliği zaten eklemiş olması gerekir.</system:String>
|
||||||
|
|
||||||
<!--Diyaloglar-->
|
<!--Diyaloglar-->
|
||||||
<system:String x:Key="wox_plugin_sys_dlgtitle_success">Başarılı</system:String>
|
<system:String x:Key="wox_plugin_sys_dlgtitle_success">Başarılı</system:String>
|
||||||
|
|||||||
@@ -210,6 +210,17 @@ namespace Wox.Plugin.Sys
|
|||||||
context.API.OpenSettingDialog();
|
context.API.OpenSettingDialog();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
new Result
|
||||||
|
{
|
||||||
|
Title = "Reload Plugin Data",
|
||||||
|
SubTitle = context.API.GetTranslation("wox_plugin_sys_reload_plugin_data"),
|
||||||
|
IcoPath = "Images\\app.png",
|
||||||
|
Action = c =>
|
||||||
|
{
|
||||||
|
context.API.ReloadAllPluginData();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
return results;
|
return results;
|
||||||
|
|||||||
Reference in New Issue
Block a user