spelling: calculator (#3750)

This commit is contained in:
Josh Soref
2020-05-27 11:22:18 -04:00
committed by GitHub
parent 0bcaa13056
commit 038c346500
12 changed files with 27 additions and 27 deletions

View File

@@ -6,7 +6,7 @@ using System.Windows;
using Mages.Core;
using Wox.Plugin;
namespace Microsoft.Plugin.Caculator
namespace Microsoft.Plugin.Calculator
{
public class Main : IPlugin, IPluginI18n
{
@@ -113,12 +113,12 @@ namespace Microsoft.Plugin.Caculator
public string GetTranslatedPluginTitle()
{
return Context.API.GetTranslation("wox_plugin_caculator_plugin_name");
return Context.API.GetTranslation("wox_plugin_calculator_plugin_name");
}
public string GetTranslatedPluginDescription()
{
return Context.API.GetTranslation("wox_plugin_caculator_plugin_description");
return Context.API.GetTranslation("wox_plugin_calculator_plugin_description");
}
}
}