102 lines
No EOL
3.3 KiB
C#
102 lines
No EOL
3.3 KiB
C#
// Project Makoto
|
|
// Copyright (C) 2023 Fortunevale
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY
|
|
namespace ProjectMakoto.Plugins.Social.Entities;
|
|
#pragma warning disable CS8981
|
|
#pragma warning disable CS8618
|
|
#pragma warning disable IDE1006
|
|
public class Translations : ITranslations
|
|
{
|
|
public Dictionary<string, int> Progress = new();
|
|
public CommandTranslation[] CommandList { get; set; }
|
|
#region AutoGenerated
|
|
public commands Commands;
|
|
public sealed class commands
|
|
{
|
|
public slap Slap;
|
|
public sealed class slap
|
|
{
|
|
public MultiTranslationKey Self;
|
|
public MultiTranslationKey Other;
|
|
}
|
|
public pat Pat;
|
|
public sealed class pat
|
|
{
|
|
public MultiTranslationKey Self;
|
|
public MultiTranslationKey Other;
|
|
}
|
|
public kiss Kiss;
|
|
public sealed class kiss
|
|
{
|
|
public MultiTranslationKey Self;
|
|
public MultiTranslationKey Other;
|
|
}
|
|
public kill Kill;
|
|
public sealed class kill
|
|
{
|
|
public MultiTranslationKey Self;
|
|
public MultiTranslationKey Other;
|
|
}
|
|
public hug Hug;
|
|
public sealed class hug
|
|
{
|
|
public MultiTranslationKey Self;
|
|
public MultiTranslationKey Other;
|
|
}
|
|
public highFive HighFive;
|
|
public sealed class highFive
|
|
{
|
|
public MultiTranslationKey Self;
|
|
public MultiTranslationKey Other;
|
|
}
|
|
public cuddle Cuddle;
|
|
public sealed class cuddle
|
|
{
|
|
public MultiTranslationKey Self;
|
|
public MultiTranslationKey Other;
|
|
}
|
|
public boop Boop;
|
|
public sealed class boop
|
|
{
|
|
public MultiTranslationKey Self;
|
|
public MultiTranslationKey Other;
|
|
}
|
|
public SingleTranslationKey BlockedByVictim;
|
|
public SingleTranslationKey BlockedVictim;
|
|
public afk Afk;
|
|
public sealed class afk
|
|
{
|
|
public SingleTranslationKey SetAfk;
|
|
public SingleTranslationKey Title;
|
|
public events Events;
|
|
public sealed class events
|
|
{
|
|
public SingleTranslationKey CurrentlyAfk;
|
|
public SingleTranslationKey AndMore;
|
|
public SingleTranslationKey MessageListing;
|
|
public SingleTranslationKey Message;
|
|
public SingleTranslationKey MissedTitle;
|
|
public SingleTranslationKey NoLongerAfk;
|
|
}
|
|
}
|
|
public unblockUser UnblockUser;
|
|
public sealed class unblockUser
|
|
{
|
|
public SingleTranslationKey Unblocked;
|
|
public SingleTranslationKey NotBlocked;
|
|
}
|
|
public blockUser BlockUser;
|
|
public sealed class blockUser
|
|
{
|
|
public SingleTranslationKey CannotBlock;
|
|
public MultiTranslationKey Blocked;
|
|
public SingleTranslationKey AlreadyBlocked;
|
|
}
|
|
}
|
|
#endregion AutoGenerated
|
|
} |