diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-20 20:33:05 -0500 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-20 20:33:05 -0500 |
| commit | 767cdc1f6f6a63ce997fc9476911e2c361f9d402 (patch) | |
| tree | 49add55976f895441167c66cfa95e5c7688d18ce /TestPlugin/MyStrings.cs | |
| parent | 845554722efaed872948a9e0f7202e3ef52f1b6e (diff) | |
Pushing missing changes
Diffstat (limited to 'TestPlugin/MyStrings.cs')
| -rw-r--r-- | TestPlugin/MyStrings.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/TestPlugin/MyStrings.cs b/TestPlugin/MyStrings.cs new file mode 100644 index 000000000..385793b0b --- /dev/null +++ b/TestPlugin/MyStrings.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.ComponentModel.Composition; +using MediaBrowser.Common.Localization; + +namespace TestPlugin +{ + [Export(typeof(LocalizedStringData))] + public class MyStrings : LocalizedStringData + { + public MyStrings() : base() + { + ThisVersion = "1.0001"; + Prefix = "TestPlugin-"; + } + + public string TestPluginString1 = "This is string 1"; + public string TestPluginString2 = "This is string 2"; + public string TestPluginString3 = "This is string 3"; + } +} |
