Revert get translation as none is provided

This commit is contained in:
Jeremy Wu
2019-08-22 22:03:51 +10:00
parent c0c55a7af8
commit 16e8cfdf31
2 changed files with 3 additions and 7 deletions

View File

@@ -169,13 +169,13 @@ namespace Wox.Plugin.Sys
},
new Result
{
Title = context.API.GetTranslation("wox_plugin_sys_save_command"),
SubTitle = context.API.GetTranslation("wox_plugin_sys_save"),
Title = "Save Settings",
SubTitle = "Save all Wox settings",
IcoPath = "Images\\app.png",
Action = c =>
{
context.API.SaveAppAllSettings();
context.API.ShowMsg(string.Format(context.API.GetTranslation("wox_plugin_sys_save_success")));
context.API.ShowMsg(string.Format("Successfully saved all Wox settings"));
return true;
}
},