Skip to content

Instantly share code, notes, and snippets.

@andreaGhisa
Created December 4, 2018 07:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreaGhisa/de98a8fbf9a8f2b36e8e59e8d121acd4 to your computer and use it in GitHub Desktop.
Save andreaGhisa/de98a8fbf9a8f2b36e8e59e8d121acd4 to your computer and use it in GitHub Desktop.
Tellme
using Sdl.TellMe.ProviderApi;
namespace Sdl.Community.DeepLMTProvider.DeepLTellMe
{
[TellMeProvider]
public class DeepLTellMeProvider : ITellMeProvider
{
public string Name => "DeepL tell me provider";
public AbstractTellMeAction[] ProviderActions => new AbstractTellMeAction[]
{
new DeepLStoreAction
{
Keywords = new[] {"deepL", "deepl store", "deepl download"}
},
new DeepLContactAction
{
Keywords = new[] {"deepL", "deepl contact", "deepl trial"}
},
new DeepLHelpAction
{
Keywords = new[] {"deepL", "deepl help", "deepl guide"}
},
new DeepLCommunitySupportAction
{
Keywords = new[] {"deepL", "deepl community", "deepl support"}
},
new DeepLSettingsAction
{
Keywords = new[] {"deepL", "deepl settings", "settings"}
}
};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment