Move Localizations into core

This commit is contained in:
Daan Boerlage 2021-10-31 20:15:08 +01:00
parent 29e22acbc0
commit 89ea6df6e2
Signed by: daan
GPG key ID: FCE070E1E4956606
54 changed files with 245 additions and 339 deletions

View file

@ -41,127 +41,8 @@
<ProjectReference Include="..\Web\Web.csproj" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Localization\Ship.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Ship.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Localization\Rank.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Rank.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Localization\Karma.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Karma.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Localization\Internal.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Internal.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Localization\Cookies.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Cookies.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Localization\Roll.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Roll.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Localization\Choose.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Choose.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Localization\Admin.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Admin.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Localization\Quote.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Quote.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Localization\Role.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Role.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Localization\Stats.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Stats.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Localization\Corona.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Corona.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Localization\EightBall.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>EightBall.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Compile Update="Localization\Ship.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>ship.resx</DependentUpon>
</Compile>
<Compile Update="Localization\Rank.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Rank.resx</DependentUpon>
</Compile>
<Compile Update="Localization\Ship.Designer.cs">
<DependentUpon>Ship.resx</DependentUpon>
</Compile>
<Compile Update="Localization\Karma.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Karma.resx</DependentUpon>
</Compile>
<Compile Update="Localization\Internal.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Internal.resx</DependentUpon>
</Compile>
<Compile Update="Localization\Cookies.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Cookies.resx</DependentUpon>
</Compile>
<Compile Update="Localization\Roll.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Roll.resx</DependentUpon>
</Compile>
<Compile Update="Localization\Choose.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Choose.resx</DependentUpon>
</Compile>
<Compile Update="Localization\Admin.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Admin.resx</DependentUpon>
</Compile>
<Compile Update="Localization\Quote.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Quote.resx</DependentUpon>
</Compile>
<Compile Update="Localization\Role.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Role.resx</DependentUpon>
</Compile>
<Compile Update="Localization\Stats.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Stats.resx</DependentUpon>
</Compile>
<Compile Update="Localization\Corona.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Corona.resx</DependentUpon>
</Compile>
<Compile Update="Localization\EightBall.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>EightBall.resx</DependentUpon>
</Compile>
</ItemGroup>
</Project>

View file

@ -14,6 +14,7 @@ using Geekbot.Core.CommandPreconditions;
using Geekbot.Core.ErrorHandling;
using Geekbot.Core.Extensions;
using Geekbot.Core.GuildSettingsManager;
using Localization = Geekbot.Core.Localization;
namespace Geekbot.Bot.Commands.Admin
{

View file

@ -14,6 +14,7 @@ using Geekbot.Core.ErrorHandling;
using Geekbot.Core.Extensions;
using Geekbot.Core.GuildSettingsManager;
using Geekbot.Core.ReactionListener;
using Localization = Geekbot.Core.Localization;
namespace Geekbot.Bot.Commands.Admin
{

View file

@ -6,6 +6,7 @@ using Discord.Commands;
using Geekbot.Core;
using Geekbot.Core.ErrorHandling;
using Geekbot.Core.GuildSettingsManager;
using Localization = Geekbot.Core.Localization;
namespace Geekbot.Bot.Commands.Randomness
{

View file

@ -10,6 +10,7 @@ using Geekbot.Core.ErrorHandling;
using Geekbot.Core.Extensions;
using Geekbot.Core.GuildSettingsManager;
using Geekbot.Core.RandomNumberGenerator;
using Localization = Geekbot.Core.Localization;
namespace Geekbot.Bot.Commands.Randomness
{

View file

@ -3,7 +3,6 @@ using System.Linq;
using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using Geekbot.Bot.Utils;
using Geekbot.Core;
using Geekbot.Core.CommandPreconditions;
using Geekbot.Core.Database;
@ -12,6 +11,7 @@ using Geekbot.Core.ErrorHandling;
using Geekbot.Core.Extensions;
using Geekbot.Core.GuildSettingsManager;
using Geekbot.Core.RandomNumberGenerator;
using Localization = Geekbot.Core.Localization;
namespace Geekbot.Bot.Commands.Rpg
{

View file

@ -3,7 +3,6 @@ using System.Linq;
using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using Geekbot.Bot.Utils;
using Geekbot.Core;
using Geekbot.Core.CommandPreconditions;
using Geekbot.Core.Database;
@ -11,6 +10,7 @@ using Geekbot.Core.Database.Models;
using Geekbot.Core.ErrorHandling;
using Geekbot.Core.Extensions;
using Geekbot.Core.GuildSettingsManager;
using Localization = Geekbot.Core.Localization;
namespace Geekbot.Bot.Commands.User.Karma
{

View file

@ -12,6 +12,7 @@ using Geekbot.Core.ErrorHandling;
using Geekbot.Core.Extensions;
using Geekbot.Core.GuildSettingsManager;
using Geekbot.Core.Highscores;
using Localization = Geekbot.Core.Localization;
namespace Geekbot.Bot.Commands.User.Ranking
{

View file

@ -10,6 +10,7 @@ using Geekbot.Core.ErrorHandling;
using Geekbot.Core.Extensions;
using Geekbot.Core.GuildSettingsManager;
using Geekbot.Core.Levels;
using Localization = Geekbot.Core.Localization;
namespace Geekbot.Bot.Commands.User
{

View file

@ -4,6 +4,7 @@ using Discord.Commands;
using Geekbot.Core;
using Geekbot.Core.ErrorHandling;
using Geekbot.Core.GuildSettingsManager;
using Localization = Geekbot.Core.Localization;
namespace Geekbot.Bot.Commands.Utils
{

View file

@ -10,6 +10,7 @@ using Geekbot.Core.Converters;
using Geekbot.Core.ErrorHandling;
using Geekbot.Core.Extensions;
using Geekbot.Core.GuildSettingsManager;
using Localization = Geekbot.Core.Localization;
namespace Geekbot.Bot.Commands.Utils.Corona
{

View file

@ -17,6 +17,7 @@ using Geekbot.Core.UserRepository;
using Microsoft.EntityFrameworkCore;
using Sentry;
using Constants = Geekbot.Core.Constants;
using Localization = Geekbot.Core.Localization;
namespace Geekbot.Bot.Commands.Utils.Quote
{

View file

@ -1,81 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Geekbot.Bot.Localization {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Admin {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Admin() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Geekbot.Bot.Localization.Admin", typeof(Admin).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to I&apos;m talking english.
/// </summary>
internal static string GetLanguage {
get {
return ResourceManager.GetString("GetLanguage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to I will reply in english from now on.
/// </summary>
internal static string NewLanguageSet {
get {
return ResourceManager.GetString("NewLanguageSet", resourceCulture);
}
}
}
}

View file

@ -1,20 +0,0 @@
<root>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="NewLanguageSet" xml:space="preserve">
<value>I werd ab jetzt uf schwiizerdüütsch antworte, äuuä</value>
</data>
<data name="GetLanguage" xml:space="preserve">
<value>I red schwiizerdüütsch</value>
</data>
</root>

View file

@ -1,27 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="NewLanguageSet" xml:space="preserve">
<value>I will reply in english from now on</value>
</data>
<data name="GetLanguage" xml:space="preserve">
<value>I'm talking english</value>
</data>
</root>

View file

@ -1,72 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Geekbot.Bot.Localization {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Choose {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Choose() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Geekbot.Bot.Localization.Choose", typeof(Choose).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to I Choose **{0}**.
/// </summary>
internal static string Choice {
get {
return ResourceManager.GetString("Choice", resourceCulture);
}
}
}
}

View file

@ -1,17 +0,0 @@
<root>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Choice" xml:space="preserve">
<value>I nimme **{0}**</value>
</data>
</root>

View file

@ -1,24 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Choice" xml:space="preserve">
<value>I Choose **{0}**</value>
</data>
</root>

View file

@ -1,126 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Geekbot.Bot.Localization {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Cookies {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Cookies() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Geekbot.Bot.Localization.Cookies", typeof(Cookies).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to You ate {0} cookies, you&apos;ve only got {1} cookies left.
/// </summary>
internal static string AteCookies {
get {
return ResourceManager.GetString("AteCookies", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You got {0} cookies, there are now {1} cookies in you cookie jar.
/// </summary>
internal static string GetCookies {
get {
return ResourceManager.GetString("GetCookies", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You gave {0} cookies to {1}.
/// </summary>
internal static string Given {
get {
return ResourceManager.GetString("Given", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to There are {0} cookies in you cookie jar.
/// </summary>
internal static string InYourJar {
get {
return ResourceManager.GetString("InYourJar", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Your cookie jar looks almost empty, you should probably not eat a cookie.
/// </summary>
internal static string NotEnoughCookiesToEat {
get {
return ResourceManager.GetString("NotEnoughCookiesToEat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You don&apos;t have enough cookies.
/// </summary>
internal static string NotEnoughToGive {
get {
return ResourceManager.GetString("NotEnoughToGive", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You already got cookies today, you can have more cookies in {0}.
/// </summary>
internal static string WaitForMoreCookies {
get {
return ResourceManager.GetString("WaitForMoreCookies", resourceCulture);
}
}
}
}

View file

@ -1,35 +0,0 @@
<root>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="GetCookies" xml:space="preserve">
<value>Du häsch {0} guetzli becho, du häsch jetzt {1} guetzli ih dr büchse</value>
</data>
<data name="WaitForMoreCookies" xml:space="preserve">
<value>Du hesch scho guetzli becho hüt, du chasch meh ha in {0}</value>
</data>
<data name="InYourJar" xml:space="preserve">
<value>Es hät {0} guetzli ih dineri büchs</value>
</data>
<data name="Given" xml:space="preserve">
<value>Du hesch {1} {0} guetzli geh</value>
</data>
<data name="NotEnoughToGive" xml:space="preserve">
<value>Du hesch nid gnueg guetzli</value>
</data>
<data name="NotEnoughCookiesToEat" xml:space="preserve">
<value>Du hesch chuum no guetzli ih dineri büchs, du sötsch warschinli keini esse</value>
</data>
<data name="AteCookies" xml:space="preserve">
<value>Du hesch {0} guetzli gesse und hesch jezt no {1} übrig</value>
</data>
</root>

View file

@ -1,42 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="GetCookies" xml:space="preserve">
<value>You got {0} cookies, there are now {1} cookies in you cookie jar</value>
</data>
<data name="WaitForMoreCookies" xml:space="preserve">
<value>You already got cookies today, you can have more cookies in {0}</value>
</data>
<data name="InYourJar" xml:space="preserve">
<value>There are {0} cookies in you cookie jar</value>
</data>
<data name="Given" xml:space="preserve">
<value>You gave {0} cookies to {1}</value>
</data>
<data name="NotEnoughToGive" xml:space="preserve">
<value>You don't have enough cookies</value>
</data>
<data name="NotEnoughCookiesToEat" xml:space="preserve">
<value>Your cookie jar looks almost empty, you should probably not eat a cookie</value>
</data>
<data name="AteCookies" xml:space="preserve">
<value>You ate {0} cookies, you've only got {1} cookies left</value>
</data>
</root>

View file

@ -1,117 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Geekbot.Bot.Localization {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Corona {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Corona() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Geekbot.Bot.Localization.Corona", typeof(Corona).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Active.
/// </summary>
internal static string Active {
get {
return ResourceManager.GetString("Active", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Confirmed Corona Cases.
/// </summary>
internal static string ConfirmedCases {
get {
return ResourceManager.GetString("ConfirmedCases", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Deaths.
/// </summary>
internal static string Deaths {
get {
return ResourceManager.GetString("Deaths", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Recovered.
/// </summary>
internal static string Recovered {
get {
return ResourceManager.GetString("Recovered", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Source.
/// </summary>
internal static string Source {
get {
return ResourceManager.GetString("Source", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Total.
/// </summary>
internal static string Total {
get {
return ResourceManager.GetString("Total", resourceCulture);
}
}
}
}

View file

@ -1,32 +0,0 @@
<root>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="ConfirmedCases" xml:space="preserve">
<value>Bstätigti Corona Fallzahle</value>
</data>
<data name="Total" xml:space="preserve">
<value>Total</value>
</data>
<data name="Active" xml:space="preserve">
<value>Aktiv</value>
</data>
<data name="Recovered" xml:space="preserve">
<value>Erholt</value>
</data>
<data name="Deaths" xml:space="preserve">
<value>Gstorbe</value>
</data>
<data name="Source" xml:space="preserve">
<value>Quelle</value>
</data>
</root>

View file

@ -1,39 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="ConfirmedCases" xml:space="preserve">
<value>Confirmed Corona Cases</value>
</data>
<data name="Total" xml:space="preserve">
<value>Total</value>
</data>
<data name="Active" xml:space="preserve">
<value>Active</value>
</data>
<data name="Recovered" xml:space="preserve">
<value>Recovered</value>
</data>
<data name="Deaths" xml:space="preserve">
<value>Deaths</value>
</data>
<data name="Source" xml:space="preserve">
<value>Source</value>
</data>
</root>

View file

@ -1,243 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Geekbot.Bot.Localization {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class EightBall {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal EightBall() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Geekbot.Bot.Localization.EightBall", typeof(EightBall).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to As I see it, yes.
/// </summary>
internal static string AsISeeItYes {
get {
return ResourceManager.GetString("AsISeeItYes", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Ask again later.
/// </summary>
internal static string AskAgainLater {
get {
return ResourceManager.GetString("AskAgainLater", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Better not tell you now.
/// </summary>
internal static string BetterNotTellYouNow {
get {
return ResourceManager.GetString("BetterNotTellYouNow", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot predict now.
/// </summary>
internal static string CannotPredictNow {
get {
return ResourceManager.GetString("CannotPredictNow", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Concentrate and ask again.
/// </summary>
internal static string ConcentrateAndAskAgain {
get {
return ResourceManager.GetString("ConcentrateAndAskAgain", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Don&apos;t count on it.
/// </summary>
internal static string DontCountOnIt {
get {
return ResourceManager.GetString("DontCountOnIt", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to It is certain.
/// </summary>
internal static string ItIsCertain {
get {
return ResourceManager.GetString("ItIsCertain", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to It is decidedly so.
/// </summary>
internal static string ItIsDecidedlySo {
get {
return ResourceManager.GetString("ItIsDecidedlySo", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Most likely.
/// </summary>
internal static string MostLikely {
get {
return ResourceManager.GetString("MostLikely", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to My reply is no.
/// </summary>
internal static string MyReplyIsNo {
get {
return ResourceManager.GetString("MyReplyIsNo", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to My sources say no.
/// </summary>
internal static string MySourcesSayNo {
get {
return ResourceManager.GetString("MySourcesSayNo", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Outlook good.
/// </summary>
internal static string OutlookGood {
get {
return ResourceManager.GetString("OutlookGood", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Outlook not so good.
/// </summary>
internal static string OutlookNotSoGood {
get {
return ResourceManager.GetString("OutlookNotSoGood", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Reply hazy try again.
/// </summary>
internal static string ReplyHazyTryAgain {
get {
return ResourceManager.GetString("ReplyHazyTryAgain", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Signs point to yes.
/// </summary>
internal static string SignsPointToYes {
get {
return ResourceManager.GetString("SignsPointToYes", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Very doubtful.
/// </summary>
internal static string VeryDoubtful {
get {
return ResourceManager.GetString("VeryDoubtful", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Without a doubt.
/// </summary>
internal static string WithoutADoubt {
get {
return ResourceManager.GetString("WithoutADoubt", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Yes.
/// </summary>
internal static string Yes {
get {
return ResourceManager.GetString("Yes", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Yes, definitely.
/// </summary>
internal static string YesDefinitely {
get {
return ResourceManager.GetString("YesDefinitely", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You may rely on it.
/// </summary>
internal static string YouMayRelyOnIt {
get {
return ResourceManager.GetString("YouMayRelyOnIt", resourceCulture);
}
}
}
}

View file

@ -1,94 +0,0 @@
<root>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="ItIsCertain" xml:space="preserve">
<value>Es isch sicher</value>
<comment/>
</data>
<data name="ItIsDecidedlySo" xml:space="preserve">
<value>So isch es entschiede worde</value>
<comment/>
</data>
<data name="WithoutADoubt" xml:space="preserve">
<value>Ohni zwifel</value>
<comment/>
</data>
<data name="YesDefinitely" xml:space="preserve">
<value>Ja, absolut</value>
<comment/>
</data>
<data name="YouMayRelyOnIt" xml:space="preserve">
<value>Chasch davo usgoh</value>
<comment/>
</data>
<data name="AsISeeItYes" xml:space="preserve">
<value>Wie ich es gsehn, ja</value>
<comment/>
</data>
<data name="MostLikely" xml:space="preserve">
<value>Sehr waschinli</value>
<comment/>
</data>
<data name="OutlookGood" xml:space="preserve">
<value>Ussicht isch guet</value>
<comment/>
</data>
<data name="Yes" xml:space="preserve">
<value>Ja</value>
<comment/>
</data>
<data name="SignsPointToYes" xml:space="preserve">
<value>Ahzeiche zeigend uf ja</value>
<comment/>
</data>
<data name="ReplyHazyTryAgain" xml:space="preserve">
<value>Antwort isch verschwumme, versuechs nomol</value>
<comment/>
</data>
<data name="AskAgainLater" xml:space="preserve">
<value>Frög spöter nomol</value>
<comment/>
</data>
<data name="BetterNotTellYouNow" xml:space="preserve">
<value>Segs dir jetzt besser nid</value>
<comment/>
</data>
<data name="CannotPredictNow" xml:space="preserve">
<value>Im mommnet chani das nid vorussege</value>
<comment/>
</data>
<data name="ConcentrateAndAskAgain" xml:space="preserve">
<value>Konzentrier di und frog nomol</value>
<comment/>
</data>
<data name="DontCountOnIt" xml:space="preserve">
<value>Zähl nid druf</value>
<comment/>
</data>
<data name="MyReplyIsNo" xml:space="preserve">
<value>Mini antwort isch nei</value>
<comment/>
</data>
<data name="MySourcesSayNo" xml:space="preserve">
<value>Mini quellene seged nei</value>
<comment/>
</data>
<data name="OutlookNotSoGood" xml:space="preserve">
<value>Ussicht isch ned so guet</value>
<comment/>
</data>
<data name="VeryDoubtful" xml:space="preserve">
<value>Sehr froglich</value>
<comment/>
</data>
</root>

View file

@ -1,200 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string"/>
<xsd:attribute name="type" type="xsd:string"/>
<xsd:attribute name="mimetype" type="xsd:string"/>
<xsd:attribute ref="xml:space"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string"/>
<xsd:attribute name="name" type="xsd:string"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
<xsd:attribute ref="xml:space"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required"/>
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="ItIsCertain" xml:space="preserve">
<value>It is certain</value>
<comment/>
</data>
<data name="ItIsDecidedlySo" xml:space="preserve">
<value>It is decidedly so</value>
<comment/>
</data>
<data name="WithoutADoubt" xml:space="preserve">
<value>Without a doubt</value>
<comment/>
</data>
<data name="YesDefinitely" xml:space="preserve">
<value>Yes, definitely</value>
<comment/>
</data>
<data name="YouMayRelyOnIt" xml:space="preserve">
<value>You may rely on it</value>
<comment/>
</data>
<data name="AsISeeItYes" xml:space="preserve">
<value>As I see it, yes</value>
<comment/>
</data>
<data name="MostLikely" xml:space="preserve">
<value>Most likely</value>
<comment/>
</data>
<data name="OutlookGood" xml:space="preserve">
<value>Outlook good</value>
<comment/>
</data>
<data name="Yes" xml:space="preserve">
<value>Yes</value>
<comment/>
</data>
<data name="SignsPointToYes" xml:space="preserve">
<value>Signs point to yes</value>
<comment/>
</data>
<data name="ReplyHazyTryAgain" xml:space="preserve">
<value>Reply hazy try again</value>
<comment/>
</data>
<data name="AskAgainLater" xml:space="preserve">
<value>Ask again later</value>
<comment/>
</data>
<data name="BetterNotTellYouNow" xml:space="preserve">
<value>Better not tell you now</value>
<comment/>
</data>
<data name="CannotPredictNow" xml:space="preserve">
<value>Cannot predict now</value>
<comment/>
</data>
<data name="ConcentrateAndAskAgain" xml:space="preserve">
<value>Concentrate and ask again</value>
<comment/>
</data>
<data name="DontCountOnIt" xml:space="preserve">
<value>Don't count on it</value>
<comment/>
</data>
<data name="MyReplyIsNo" xml:space="preserve">
<value>My reply is no</value>
<comment/>
</data>
<data name="MySourcesSayNo" xml:space="preserve">
<value>My sources say no</value>
<comment/>
</data>
<data name="OutlookNotSoGood" xml:space="preserve">
<value>Outlook not so good</value>
<comment/>
</data>
<data name="VeryDoubtful" xml:space="preserve">
<value>Very doubtful</value>
<comment/>
</data>
</root>

View file

@ -1,126 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Geekbot.Bot.Localization {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Internal {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Internal() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Geekbot.Bot.Localization.Internal", typeof(Internal).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to and.
/// </summary>
internal static string And {
get {
return ResourceManager.GetString("And", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to day|days.
/// </summary>
internal static string Days {
get {
return ResourceManager.GetString("Days", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to hour|hours.
/// </summary>
internal static string Hours {
get {
return ResourceManager.GetString("Hours", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Seems like i don&apos;t have enough permission to that :confused:.
/// </summary>
internal static string Http403 {
get {
return ResourceManager.GetString("Http403", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to minute|minutes.
/// </summary>
internal static string Minutes {
get {
return ResourceManager.GetString("Minutes", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to second|seconds.
/// </summary>
internal static string Seconds {
get {
return ResourceManager.GetString("Seconds", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Something went wrong :confused:.
/// </summary>
internal static string SomethingWentWrong {
get {
return ResourceManager.GetString("SomethingWentWrong", resourceCulture);
}
}
}
}

View file

@ -1,35 +0,0 @@
<root>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="SomethingWentWrong" xml:space="preserve">
<value>Öppis isch schief gange :confused:</value>
</data>
<data name="Http403" xml:space="preserve">
<value>Gseht danach us das ich nid gnueg recht han zum das mache :confused:</value>
</data>
<data name="Days" xml:space="preserve">
<value>tag|täg</value>
</data>
<data name="Hours" xml:space="preserve">
<value>stund|stunde</value>
</data>
<data name="Minutes" xml:space="preserve">
<value>minute|minute</value>
</data>
<data name="Seconds" xml:space="preserve">
<value>sekunde|sekunde</value>
</data>
<data name="And" xml:space="preserve">
<value>und</value>
</data>
</root>

View file

@ -1,42 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="SomethingWentWrong" xml:space="preserve">
<value>Something went wrong :confused:</value>
</data>
<data name="Http403" xml:space="preserve">
<value>Seems like i don't have enough permission to that :confused:</value>
</data>
<data name="Days" xml:space="preserve">
<value>day|days</value>
</data>
<data name="Hours" xml:space="preserve">
<value>hour|hours</value>
</data>
<data name="Minutes" xml:space="preserve">
<value>minute|minutes</value>
</data>
<data name="Seconds" xml:space="preserve">
<value>second|seconds</value>
</data>
<data name="And" xml:space="preserve">
<value>and</value>
</data>
</root>

View file

@ -1,153 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Geekbot.Bot.Localization {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Karma {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Karma() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Geekbot.Bot.Localization.Karma", typeof(Karma).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Amount.
/// </summary>
internal static string Amount {
get {
return ResourceManager.GetString("Amount", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to By.
/// </summary>
internal static string By {
get {
return ResourceManager.GetString("By", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Sorry {0}, but you can&apos;t lower your own karma.
/// </summary>
internal static string CannotChangeOwnDown {
get {
return ResourceManager.GetString("CannotChangeOwnDown", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Sorry {0}, but you can&apos;t give yourself neutral karma.
/// </summary>
internal static string CannotChangeOwnSame {
get {
return ResourceManager.GetString("CannotChangeOwnSame", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Sorry {0}, but you can&apos;t give yourself karma.
/// </summary>
internal static string CannotChangeOwnUp {
get {
return ResourceManager.GetString("CannotChangeOwnUp", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Current.
/// </summary>
internal static string Current {
get {
return ResourceManager.GetString("Current", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Karma lowered.
/// </summary>
internal static string Decreased {
get {
return ResourceManager.GetString("Decreased", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Gained Karma.
/// </summary>
internal static string Increased {
get {
return ResourceManager.GetString("Increased", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Neutral Karma.
/// </summary>
internal static string Neutral {
get {
return ResourceManager.GetString("Neutral", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Sorry {0}, but you have to wait {1} before you can give karma again....
/// </summary>
internal static string WaitUntill {
get {
return ResourceManager.GetString("WaitUntill", resourceCulture);
}
}
}
}

View file

@ -1,44 +0,0 @@
<root>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="CannotChangeOwnUp" xml:space="preserve">
<value>Sorry {0}, aber du chasch dr selber kei karma geh</value>
</data>
<data name="WaitUntill" xml:space="preserve">
<value>Sorry {0}, aber du musch no {1} warte bisch d wieder karma chasch geh...</value>
</data>
<data name="Increased" xml:space="preserve">
<value>Karma becho</value>
</data>
<data name="By" xml:space="preserve">
<value>Vo</value>
</data>
<data name="Amount" xml:space="preserve">
<value>Mengi</value>
</data>
<data name="Current" xml:space="preserve">
<value>Jetzt</value>
</data>
<data name="CannotChangeOwnDown" xml:space="preserve">
<value>Sorry {0}, aber du chasch dis eigete karma nid senke</value>
</data>
<data name="Decreased" xml:space="preserve">
<value>Karma gsenkt</value>
</data>
<data name="Neutral" xml:space="preserve">
<value>Neutral Karma</value>
</data>
<data name="CannotChangeOwnSame" xml:space="preserve">
<value>Sorry {0}, aber du chasch dr selber kei neutrals karma geh</value>
</data>
</root>

View file

@ -1,51 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="CannotChangeOwnUp" xml:space="preserve">
<value>Sorry {0}, but you can't give yourself karma</value>
</data>
<data name="WaitUntill" xml:space="preserve">
<value>Sorry {0}, but you have to wait {1} before you can give karma again...</value>
</data>
<data name="Increased" xml:space="preserve">
<value>Gained Karma</value>
</data>
<data name="By" xml:space="preserve">
<value>By</value>
</data>
<data name="Amount" xml:space="preserve">
<value>Amount</value>
</data>
<data name="Current" xml:space="preserve">
<value>Current</value>
</data>
<data name="CannotChangeOwnDown" xml:space="preserve">
<value>Sorry {0}, but you can't lower your own karma</value>
</data>
<data name="Decreased" xml:space="preserve">
<value>Karma lowered</value>
</data>
<data name="Neutral" xml:space="preserve">
<value>Neutral Karma</value>
</data>
<data name="CannotChangeOwnSame" xml:space="preserve">
<value>Sorry {0}, but you can't give yourself neutral karma</value>
</data>
</root>

View file

@ -1,162 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Geekbot.Bot.Localization {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Quote {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Quote() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Geekbot.Bot.Localization.Quote", typeof(Quote).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to You can&apos;t save quotes by a bot....
/// </summary>
internal static string CannotQuoteBots {
get {
return ResourceManager.GetString("CannotQuoteBots", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You can&apos;t save your own quotes....
/// </summary>
internal static string CannotSaveOwnQuotes {
get {
return ResourceManager.GetString("CannotSaveOwnQuotes", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Most quoted person.
/// </summary>
internal static string MostQuotesPerson {
get {
return ResourceManager.GetString("MostQuotesPerson", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This server doesn&apos;t seem to have any quotes yet. You can add a quote with `!quote save @user` or `!quote save &lt;messageId&gt;`.
/// </summary>
internal static string NoQuotesFound {
get {
return ResourceManager.GetString("NoQuotesFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to That is not a valid message link.
/// </summary>
internal static string NotAValidMessageLink {
get {
return ResourceManager.GetString("NotAValidMessageLink", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to I couldn&apos;t find a quote with that ID :disappointed:.
/// </summary>
internal static string NotFoundWithId {
get {
return ResourceManager.GetString("NotFoundWithId", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You can only quote messages from the same server.
/// </summary>
internal static string OnlyQuoteFromSameServer {
get {
return ResourceManager.GetString("OnlyQuoteFromSameServer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to **Quote Added**.
/// </summary>
internal static string QuoteAdded {
get {
return ResourceManager.GetString("QuoteAdded", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Quote Stats.
/// </summary>
internal static string QuoteStats {
get {
return ResourceManager.GetString("QuoteStats", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to **Removed #{0}**.
/// </summary>
internal static string Removed {
get {
return ResourceManager.GetString("Removed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Total.
/// </summary>
internal static string TotalQuotes {
get {
return ResourceManager.GetString("TotalQuotes", resourceCulture);
}
}
}
}

View file

@ -1,47 +0,0 @@
<root>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="NoQuotesFound" xml:space="preserve">
<value>Dä server het no kei quotes. Du chasch quotes hinzuefüege mit `!quote save @user` oder `!quote save &lt;messageId&gt;`</value>
</data>
<data name="CannotSaveOwnQuotes" xml:space="preserve">
<value>Du chasch kei quotes vo dir selber speichere...</value>
</data>
<data name="CannotQuoteBots" xml:space="preserve">
<value>Du chasch kei quotes vomne bot speichere...</value>
</data>
<data name="QuoteAdded" xml:space="preserve">
<value>**Quote hinzugfüegt**</value>
</data>
<data name="Removed" xml:space="preserve">
<value>**#{0} glöscht**</value>
</data>
<data name="NotFoundWithId" xml:space="preserve">
<value>Ich chan kei quote finde mit därri ID :disappointed:</value>
</data>
<data name="QuoteStats" xml:space="preserve">
<value>Quote statistike</value>
</data>
<data name="TotalQuotes" xml:space="preserve">
<value>Total</value>
</data>
<data name="MostQuotesPerson" xml:space="preserve">
<value>Meist quoteti person</value>
</data>
<data name="NotAValidMessageLink" xml:space="preserve">
<value>Das isch kei korrete nachrichtelink</value>
</data>
<data name="OnlyQuoteFromSameServer" xml:space="preserve">
<value>Du chasch numme nachrichte vom gliche server quote</value>
</data>
</root>

View file

@ -1,54 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="NoQuotesFound" xml:space="preserve">
<value>This server doesn't seem to have any quotes yet. You can add a quote with `!quote save @user` or `!quote save &lt;messageId&gt;`</value>
</data>
<data name="CannotSaveOwnQuotes" xml:space="preserve">
<value>You can't save your own quotes...</value>
</data>
<data name="CannotQuoteBots" xml:space="preserve">
<value>You can't save quotes by a bot...</value>
</data>
<data name="QuoteAdded" xml:space="preserve">
<value>**Quote Added**</value>
</data>
<data name="Removed" xml:space="preserve">
<value>**Removed #{0}**</value>
</data>
<data name="NotFoundWithId" xml:space="preserve">
<value>I couldn't find a quote with that ID :disappointed:</value>
</data>
<data name="QuoteStats" xml:space="preserve">
<value>Quote Stats</value>
</data>
<data name="TotalQuotes" xml:space="preserve">
<value>Total</value>
</data>
<data name="MostQuotesPerson" xml:space="preserve">
<value>Most quoted person</value>
</data>
<data name="NotAValidMessageLink" xml:space="preserve">
<value>That is not a valid message link</value>
</data>
<data name="OnlyQuoteFromSameServer" xml:space="preserve">
<value>You can only quote messages from the same server</value>
</data>
</root>

View file

@ -1,108 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Geekbot.Bot.Localization {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Rank {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Rank() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Geekbot.Bot.Localization.Rank", typeof(Rank).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to :warning: I couldn&apos;t find all usernames. Maybe they left the server?.
/// </summary>
internal static string FailedToResolveAllUsernames {
get {
return ResourceManager.GetString("FailedToResolveAllUsernames", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to :bar_chart: **{0} Highscore for {1}**.
/// </summary>
internal static string HighscoresFor {
get {
return ResourceManager.GetString("HighscoresFor", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Valid types are &apos;`messages`&apos; &apos;`karma`&apos;, &apos;`rolls`&apos;, &apos;`cookies`&apos;, &apos;`seasons`&apos; and &apos;`quotes`&apos;.
/// </summary>
internal static string InvalidType {
get {
return ResourceManager.GetString("InvalidType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to :warning: Limiting to 20.
/// </summary>
internal static string LimitingTo20Warning {
get {
return ResourceManager.GetString("LimitingTo20Warning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No {0} found on this server.
/// </summary>
internal static string NoTypeFoundForServer {
get {
return ResourceManager.GetString("NoTypeFoundForServer", resourceCulture);
}
}
}
}

View file

@ -1,29 +0,0 @@
<root>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="LimitingTo20Warning" xml:space="preserve">
<value>:warning: Limitiert uf 20</value>
</data>
<data name="NoTypeFoundForServer" xml:space="preserve">
<value>Kei {0} gfunde für dä server</value>
</data>
<data name="FailedToResolveAllUsernames" xml:space="preserve">
<value>:warning: Ich han nid alli benutzername gfunde. villiicht hend sie de server verlah?</value>
</data>
<data name="HighscoresFor" xml:space="preserve">
<value>:bar_chart: **{0} Highscore für {1}**</value>
</data>
<data name="InvalidType" xml:space="preserve">
<value>Gültigi paramenter sind '`messages`' '`karma`', '`rolls`', '`cookies`', '`seasons`' und '`quotes`'</value>
</data>
</root>

View file

@ -1,36 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="InvalidType" xml:space="preserve">
<value>Valid types are '`messages`' '`karma`', '`rolls`', '`cookies`', '`seasons`' and '`quotes`'</value>
</data>
<data name="LimitingTo20Warning" xml:space="preserve">
<value>:warning: Limiting to 20</value>
</data>
<data name="NoTypeFoundForServer" xml:space="preserve">
<value>No {0} found on this server</value>
</data>
<data name="FailedToResolveAllUsernames" xml:space="preserve">
<value>:warning: I couldn't find all usernames. Maybe they left the server?</value>
</data>
<data name="HighscoresFor" xml:space="preserve">
<value>:bar_chart: **{0} Highscore for {1}**</value>
</data>
</root>

View file

@ -1,153 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Geekbot.Bot.Localization {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Role {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Role() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Geekbot.Bot.Localization.Role", typeof(Role).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Added {0} to the whitelist.
/// </summary>
internal static string AddedRoleToWhitelist {
get {
return ResourceManager.GetString("AddedRoleToWhitelist", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Added you to {0}.
/// </summary>
internal static string AddedUserFromRole {
get {
return ResourceManager.GetString("AddedUserFromRole", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You cannot add that role to self service because it contains one or more dangerous permissions.
/// </summary>
internal static string CannotAddDangerousRole {
get {
return ResourceManager.GetString("CannotAddDangerousRole", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You can&apos;t add a role that is managed by discord.
/// </summary>
internal static string CannotAddManagedRole {
get {
return ResourceManager.GetString("CannotAddManagedRole", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to **Self Service Roles on {0}**.
/// </summary>
internal static string ListHeader {
get {
return ResourceManager.GetString("ListHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to To get a role, use `!role [name]`.
/// </summary>
internal static string ListInstruction {
get {
return ResourceManager.GetString("ListInstruction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to There are no roles configured for this server.
/// </summary>
internal static string NoRolesConfigured {
get {
return ResourceManager.GetString("NoRolesConfigured", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Removed {0} from the whitelist.
/// </summary>
internal static string RemovedRoleFromWhitelist {
get {
return ResourceManager.GetString("RemovedRoleFromWhitelist", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Removed you from {0}.
/// </summary>
internal static string RemovedUserFromRole {
get {
return ResourceManager.GetString("RemovedUserFromRole", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to That role doesn&apos;t exist or is not on the whitelist.
/// </summary>
internal static string RoleNotFound {
get {
return ResourceManager.GetString("RoleNotFound", resourceCulture);
}
}
}
}

View file

@ -1,44 +0,0 @@
<root>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="NoRolesConfigured" xml:space="preserve">
<value>Es sind kei rolle für dä server konfiguriert</value>
</data>
<data name="ListHeader" xml:space="preserve">
<value>**Self Service Rollene uf {0}**</value>
</data>
<data name="ListInstruction" xml:space="preserve">
<value>Zum ä rolle becho, schriib `!role [name]`</value>
</data>
<data name="RoleNotFound" xml:space="preserve">
<value>Die rolle gids nid or isch nid uf dr whitelist</value>
</data>
<data name="RemovedUserFromRole" xml:space="preserve">
<value>Han di entfernt vo {0}</value>
</data>
<data name="AddedUserFromRole" xml:space="preserve">
<value>Han di hinzue gfüegt zu {0}</value>
</data>
<data name="CannotAddManagedRole" xml:space="preserve">
<value>Du chasch kei rolle hinzuefüge wo verwalted wird vo discord</value>
</data>
<data name="CannotAddDangerousRole" xml:space="preserve">
<value>Du chasch die rolle nid hinzuefüge will er ein oder mehreri gföhrlichi berechtigunge het</value>
</data>
<data name="AddedRoleToWhitelist" xml:space="preserve">
<value>{0} isch zur whitelist hinzuegfüegt</value>
</data>
<data name="RemovedRoleFromWhitelist" xml:space="preserve">
<value>{0} isch vo dr whitelist glöscht</value>
</data>
</root>

View file

@ -1,51 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="NoRolesConfigured" xml:space="preserve">
<value>There are no roles configured for this server</value>
</data>
<data name="ListHeader" xml:space="preserve">
<value>**Self Service Roles on {0}**</value>
</data>
<data name="ListInstruction" xml:space="preserve">
<value>To get a role, use `!role [name]`</value>
</data>
<data name="RoleNotFound" xml:space="preserve">
<value>That role doesn't exist or is not on the whitelist</value>
</data>
<data name="RemovedUserFromRole" xml:space="preserve">
<value>Removed you from {0}</value>
</data>
<data name="AddedUserFromRole" xml:space="preserve">
<value>Added you to {0}</value>
</data>
<data name="CannotAddManagedRole" xml:space="preserve">
<value>You can't add a role that is managed by discord</value>
</data>
<data name="CannotAddDangerousRole" xml:space="preserve">
<value>You cannot add that role to self service because it contains one or more dangerous permissions</value>
</data>
<data name="AddedRoleToWhitelist" xml:space="preserve">
<value>Added {0} to the whitelist</value>
</data>
<data name="RemovedRoleFromWhitelist" xml:space="preserve">
<value>Removed {0} from the whitelist</value>
</data>
</root>

View file

@ -1,99 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Geekbot.Bot.Localization {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Roll {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Roll() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Geekbot.Bot.Localization.Roll", typeof(Roll).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Congratulations {0}, your guess was correct!.
/// </summary>
internal static string Gratz {
get {
return ResourceManager.GetString("Gratz", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to :red_circle: {0}, you can&apos;t guess the same number again, guess another number or wait {1}.
/// </summary>
internal static string NoPrevGuess {
get {
return ResourceManager.GetString("NoPrevGuess", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0}, you rolled {1}, your guess was {2}.
/// </summary>
internal static string Rolled {
get {
return ResourceManager.GetString("Rolled", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0}, you rolled {1}.
/// </summary>
internal static string RolledNoGuess {
get {
return ResourceManager.GetString("RolledNoGuess", resourceCulture);
}
}
}
}

View file

@ -1,26 +0,0 @@
<root>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Rolled" xml:space="preserve">
<value>{0}, du hesch {1} grollt und hesch {2} grate</value>
</data>
<data name="Gratz" xml:space="preserve">
<value>Gratuliere {0}, du hesch richtig grate!</value>
</data>
<data name="RolledNoGuess" xml:space="preserve">
<value>{0}, du hesch {1} grollt</value>
</data>
<data name="NoPrevGuess" xml:space="preserve">
<value>:red_circle: {0}, du chasch nid nomol es gliche rate, rate öppis anders oder warte {1}</value>
</data>
</root>

View file

@ -1,33 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Rolled" xml:space="preserve">
<value>{0}, you rolled {1}, your guess was {2}</value>
</data>
<data name="Gratz" xml:space="preserve">
<value>Congratulations {0}, your guess was correct!</value>
</data>
<data name="RolledNoGuess" xml:space="preserve">
<value>{0}, you rolled {1}</value>
</data>
<data name="NoPrevGuess" xml:space="preserve">
<value>:red_circle: {0}, you can't guess the same number again, guess another number or wait {1}</value>
</data>
</root>

View file

@ -1,117 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Geekbot.Bot.Localization {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Ship {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Ship() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Geekbot.Bot.Localization.Ship", typeof(Ship).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Almost a match.
/// </summary>
internal static string CouldWork {
get {
return ResourceManager.GetString("CouldWork", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to It&apos;s a match.
/// </summary>
internal static string ItsAMatch {
get {
return ResourceManager.GetString("ItsAMatch", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Matchmaking.
/// </summary>
internal static string Matchmaking {
get {
return ResourceManager.GetString("Matchmaking", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Not going happen.
/// </summary>
internal static string NotGoingToHappen {
get {
return ResourceManager.GetString("NotGoingToHappen", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Not such a good idea.
/// </summary>
internal static string NotSuchAGoodIdea {
get {
return ResourceManager.GetString("NotSuchAGoodIdea", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to There might be a chance.
/// </summary>
internal static string ThereMightBeAChance {
get {
return ResourceManager.GetString("ThereMightBeAChance", resourceCulture);
}
}
}
}

View file

@ -1,32 +0,0 @@
<root>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Matchmaking" xml:space="preserve">
<value>Verkupple</value>
</data>
<data name="NotGoingToHappen" xml:space="preserve">
<value>Wird nöd klappe</value>
</data>
<data name="NotSuchAGoodIdea" xml:space="preserve">
<value>Nöd so ä gueti idee</value>
</data>
<data name="ThereMightBeAChance" xml:space="preserve">
<value>Es gid eventuel ä chance</value>
</data>
<data name="CouldWork" xml:space="preserve">
<value>Fasch en match</value>
</data>
<data name="ItsAMatch" xml:space="preserve">
<value>Es isch es traumpaar</value>
</data>
</root>

View file

@ -1,39 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Matchmaking" xml:space="preserve">
<value>Matchmaking</value>
</data>
<data name="NotGoingToHappen" xml:space="preserve">
<value>Not going happen</value>
</data>
<data name="NotSuchAGoodIdea" xml:space="preserve">
<value>Not such a good idea</value>
</data>
<data name="ThereMightBeAChance" xml:space="preserve">
<value>There might be a chance</value>
</data>
<data name="CouldWork" xml:space="preserve">
<value>Almost a match</value>
</data>
<data name="ItsAMatch" xml:space="preserve">
<value>It's a match</value>
</data>
</root>

View file

@ -1,153 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Geekbot.Bot.Localization {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Stats {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Stats() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Geekbot.Bot.Localization.Stats", typeof(Stats).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Cookies.
/// </summary>
internal static string Cookies {
get {
return ResourceManager.GetString("Cookies", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Days.
/// </summary>
internal static string Days {
get {
return ResourceManager.GetString("Days", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Guessed Rolls.
/// </summary>
internal static string GuessedRolls {
get {
return ResourceManager.GetString("GuessedRolls", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Joined Server.
/// </summary>
internal static string JoinedServer {
get {
return ResourceManager.GetString("JoinedServer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Karma.
/// </summary>
internal static string Karma {
get {
return ResourceManager.GetString("Karma", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Level.
/// </summary>
internal static string Level {
get {
return ResourceManager.GetString("Level", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Messages Sent.
/// </summary>
internal static string MessagesSent {
get {
return ResourceManager.GetString("MessagesSent", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to On Discord Since.
/// </summary>
internal static string OnDiscordSince {
get {
return ResourceManager.GetString("OnDiscordSince", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Quotes.
/// </summary>
internal static string Quotes {
get {
return ResourceManager.GetString("Quotes", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Server Total.
/// </summary>
internal static string ServerTotal {
get {
return ResourceManager.GetString("ServerTotal", resourceCulture);
}
}
}
}

View file

@ -1,44 +0,0 @@
<root>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="ServerTotal" xml:space="preserve">
<value>Server Total</value>
</data>
<data name="OnDiscordSince" xml:space="preserve">
<value>Uf Discord siit</value>
</data>
<data name="MessagesSent" xml:space="preserve">
<value>Nachrichte versendet</value>
</data>
<data name="Level" xml:space="preserve">
<value>Level</value>
</data>
<data name="Karma" xml:space="preserve">
<value>Karma</value>
</data>
<data name="JoinedServer" xml:space="preserve">
<value>Server Bitrette</value>
</data>
<data name="GuessedRolls" xml:space="preserve">
<value>Grateni Rolls</value>
</data>
<data name="Cookies" xml:space="preserve">
<value>Guetzli</value>
</data>
<data name="Days" xml:space="preserve">
<value>Täg</value>
</data>
<data name="Quotes" xml:space="preserve">
<value>Quotes</value>
</data>
</root>

View file

@ -1,51 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="OnDiscordSince" xml:space="preserve">
<value>On Discord Since</value>
</data>
<data name="JoinedServer" xml:space="preserve">
<value>Joined Server</value>
</data>
<data name="Karma" xml:space="preserve">
<value>Karma</value>
</data>
<data name="Level" xml:space="preserve">
<value>Level</value>
</data>
<data name="MessagesSent" xml:space="preserve">
<value>Messages Sent</value>
</data>
<data name="ServerTotal" xml:space="preserve">
<value>Server Total</value>
</data>
<data name="GuessedRolls" xml:space="preserve">
<value>Guessed Rolls</value>
</data>
<data name="Cookies" xml:space="preserve">
<value>Cookies</value>
</data>
<data name="Days" xml:space="preserve">
<value>Days</value>
</data>
<data name="Quotes" xml:space="preserve">
<value>Quotes</value>
</data>
</root>

View file

@ -172,7 +172,7 @@ namespace Geekbot.Bot
var randomNumberGenerator = new RandomNumberGenerator();
var mediaProvider = new MediaProvider(_logger, randomNumberGenerator);
var kvMemoryStore = new KvInInMemoryStore();
var errorHandler = new ErrorHandler(_logger, _runParameters, () => Localization.Internal.SomethingWentWrong);
var errorHandler = new ErrorHandler(_logger, _runParameters, () => Geekbot.Core.Localization.Internal.SomethingWentWrong);
var diceParser = new DiceParser(randomNumberGenerator);
services.AddSingleton(_userRepository);

View file

@ -1,53 +0,0 @@
using System;
using System.Text;
namespace Geekbot.Bot.Utils
{
public class DateLocalization
{
public static string FormatDateTimeAsRemaining(DateTimeOffset dateTime)
{
return FormatDateTimeAsRemaining(dateTime - DateTimeOffset.Now);
}
public static string FormatDateTimeAsRemaining(TimeSpan remaining)
{
const string formattable = "{0} {1}";
var sb = new StringBuilder();
if (remaining.Days > 0)
{
sb.AppendFormat(formattable, remaining.Days, GetSingularOrPlural(remaining.Days, Localization.Internal.Days));
}
if (remaining.Hours > 0)
{
if (sb.Length > 0) sb.Append(", ");
sb.AppendFormat(formattable, remaining.Hours, GetSingularOrPlural(remaining.Hours, Localization.Internal.Hours));
}
if (remaining.Minutes > 0)
{
if (sb.Length > 0) sb.Append(", ");
sb.AppendFormat(formattable, remaining.Minutes, GetSingularOrPlural(remaining.Minutes, Localization.Internal.Minutes));
}
if (remaining.Seconds > 0)
{
if (sb.Length > 0)
{
sb.AppendFormat(" {0} ", Localization.Internal.And);
}
sb.AppendFormat(formattable, remaining.Seconds, GetSingularOrPlural(remaining.Seconds, Localization.Internal.Seconds));
}
return sb.ToString().Trim();
}
private static string GetSingularOrPlural(int number, string rawString)
{
var versions = rawString.Split('|');
return number == 1 ? versions[0] : versions[1];
}
}
}