mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-27 01:50:53 +01:00
Pushing missing changes
This commit is contained in:
24
TestPlugin/MyStrings.cs
Normal file
24
TestPlugin/MyStrings.cs
Normal file
@@ -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";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user