You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
554 lines
33 KiB
C#
554 lines
33 KiB
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using osu.Framework.Localisation;
|
|
|
|
namespace osu.Game.Resources.Localisation.Web
|
|
{
|
|
public static class NotificationsStrings
|
|
{
|
|
private const string prefix = @"osu.Game.Resources.Localisation.Web.Notifications";
|
|
|
|
/// <summary>
|
|
/// "All notifications read!"
|
|
/// </summary>
|
|
public static LocalisableString AllRead => new TranslatableString(getKey(@"all_read"), @"All notifications read!");
|
|
|
|
/// <summary>
|
|
/// "Delete {0}"
|
|
/// </summary>
|
|
public static LocalisableString Delete(string type) => new TranslatableString(getKey(@"delete"), @"Delete {0}", type);
|
|
|
|
/// <summary>
|
|
/// "Loading unread notifications..."
|
|
/// </summary>
|
|
public static LocalisableString Loading => new TranslatableString(getKey(@"loading"), @"Loading unread notifications...");
|
|
|
|
/// <summary>
|
|
/// "Clear {0}"
|
|
/// </summary>
|
|
public static LocalisableString MarkRead(string type) => new TranslatableString(getKey(@"mark_read"), @"Clear {0}", type);
|
|
|
|
/// <summary>
|
|
/// "No notifications"
|
|
/// </summary>
|
|
public static LocalisableString None => new TranslatableString(getKey(@"none"), @"No notifications");
|
|
|
|
/// <summary>
|
|
/// "see all notifications"
|
|
/// </summary>
|
|
public static LocalisableString SeeAll => new TranslatableString(getKey(@"see_all"), @"see all notifications");
|
|
|
|
/// <summary>
|
|
/// "go to chat"
|
|
/// </summary>
|
|
public static LocalisableString SeeChannel => new TranslatableString(getKey(@"see_channel"), @"go to chat");
|
|
|
|
/// <summary>
|
|
/// "Please verify session to view notifications"
|
|
/// </summary>
|
|
public static LocalisableString Verifying => new TranslatableString(getKey(@"verifying"), @"Please verify session to view notifications");
|
|
|
|
/// <summary>
|
|
/// "all"
|
|
/// </summary>
|
|
public static LocalisableString FiltersDefault => new TranslatableString(getKey(@"filters._"), @"all");
|
|
|
|
/// <summary>
|
|
/// "profile"
|
|
/// </summary>
|
|
public static LocalisableString FiltersUser => new TranslatableString(getKey(@"filters.user"), @"profile");
|
|
|
|
/// <summary>
|
|
/// "beatmaps"
|
|
/// </summary>
|
|
public static LocalisableString FiltersBeatmapset => new TranslatableString(getKey(@"filters.beatmapset"), @"beatmaps");
|
|
|
|
/// <summary>
|
|
/// "forum"
|
|
/// </summary>
|
|
public static LocalisableString FiltersForumTopic => new TranslatableString(getKey(@"filters.forum_topic"), @"forum");
|
|
|
|
/// <summary>
|
|
/// "news"
|
|
/// </summary>
|
|
public static LocalisableString FiltersNewsPost => new TranslatableString(getKey(@"filters.news_post"), @"news");
|
|
|
|
/// <summary>
|
|
/// "builds"
|
|
/// </summary>
|
|
public static LocalisableString FiltersBuild => new TranslatableString(getKey(@"filters.build"), @"builds");
|
|
|
|
/// <summary>
|
|
/// "chat"
|
|
/// </summary>
|
|
public static LocalisableString FiltersChannel => new TranslatableString(getKey(@"filters.channel"), @"chat");
|
|
|
|
/// <summary>
|
|
/// "Beatmap"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetDefault => new TranslatableString(getKey(@"item.beatmapset._"), @"Beatmap");
|
|
|
|
/// <summary>
|
|
/// "Guest difficulty"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapOwnerChangeDefault => new TranslatableString(getKey(@"item.beatmapset.beatmap_owner_change._"), @"Guest difficulty");
|
|
|
|
/// <summary>
|
|
/// "You're now owner of difficulty "{0}" for beatmap "{1}""
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapOwnerChangeBeatmapOwnerChange(string beatmap, string title) => new TranslatableString(getKey(@"item.beatmapset.beatmap_owner_change.beatmap_owner_change"), @"You're now owner of difficulty ""{0}"" for beatmap ""{1}""", beatmap, title);
|
|
|
|
/// <summary>
|
|
/// "You're now owner of difficulty "{0}""
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapOwnerChangeBeatmapOwnerChangeCompact(string beatmap) => new TranslatableString(getKey(@"item.beatmapset.beatmap_owner_change.beatmap_owner_change_compact"), @"You're now owner of difficulty ""{0}""", beatmap);
|
|
|
|
/// <summary>
|
|
/// "Beatmap discussion"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetDiscussionDefault => new TranslatableString(getKey(@"item.beatmapset.beatmapset_discussion._"), @"Beatmap discussion");
|
|
|
|
/// <summary>
|
|
/// "Discussion on "{0}" has been locked"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetDiscussionBeatmapsetDiscussionLock(string title) => new TranslatableString(getKey(@"item.beatmapset.beatmapset_discussion.beatmapset_discussion_lock"), @"Discussion on ""{0}"" has been locked", title);
|
|
|
|
/// <summary>
|
|
/// "Discussion was locked"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetDiscussionBeatmapsetDiscussionLockCompact => new TranslatableString(getKey(@"item.beatmapset.beatmapset_discussion.beatmapset_discussion_lock_compact"), @"Discussion was locked");
|
|
|
|
/// <summary>
|
|
/// "New post on "{0}" by {1}: "{2}""
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetDiscussionBeatmapsetDiscussionPostNew(string title, string username, string content) => new TranslatableString(getKey(@"item.beatmapset.beatmapset_discussion.beatmapset_discussion_post_new"), @"New post on ""{0}"" by {1}: ""{2}""", title, username, content);
|
|
|
|
/// <summary>
|
|
/// "New post on "{0}" by {1}"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetDiscussionBeatmapsetDiscussionPostNewEmpty(string title, string username) => new TranslatableString(getKey(@"item.beatmapset.beatmapset_discussion.beatmapset_discussion_post_new_empty"), @"New post on ""{0}"" by {1}", title, username);
|
|
|
|
/// <summary>
|
|
/// "New post by {0}: "{1}""
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetDiscussionBeatmapsetDiscussionPostNewCompact(string username, string content) => new TranslatableString(getKey(@"item.beatmapset.beatmapset_discussion.beatmapset_discussion_post_new_compact"), @"New post by {0}: ""{1}""", username, content);
|
|
|
|
/// <summary>
|
|
/// "New post by {0}"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetDiscussionBeatmapsetDiscussionPostNewCompactEmpty(string username) => new TranslatableString(getKey(@"item.beatmapset.beatmapset_discussion.beatmapset_discussion_post_new_compact_empty"), @"New post by {0}", username);
|
|
|
|
/// <summary>
|
|
/// "New review on "{0}" by {1} containing problems: {2}, suggestions: {3}, praises: {4}"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetDiscussionBeatmapsetDiscussionReviewNew(string title, string username, string problems, string suggestions, string praises) => new TranslatableString(getKey(@"item.beatmapset.beatmapset_discussion.beatmapset_discussion_review_new"), @"New review on ""{0}"" by {1} containing problems: {2}, suggestions: {3}, praises: {4}", title, username, problems, suggestions, praises);
|
|
|
|
/// <summary>
|
|
/// "New review by {0} containing problems: {1}, suggestions: {2}, praises: {3}"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetDiscussionBeatmapsetDiscussionReviewNewCompact(string username, string problems, string suggestions, string praises) => new TranslatableString(getKey(@"item.beatmapset.beatmapset_discussion.beatmapset_discussion_review_new_compact"), @"New review by {0} containing problems: {1}, suggestions: {2}, praises: {3}", username, problems, suggestions, praises);
|
|
|
|
/// <summary>
|
|
/// "Discussion on "{0}" has been unlocked"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetDiscussionBeatmapsetDiscussionUnlock(string title) => new TranslatableString(getKey(@"item.beatmapset.beatmapset_discussion.beatmapset_discussion_unlock"), @"Discussion on ""{0}"" has been unlocked", title);
|
|
|
|
/// <summary>
|
|
/// "Discussion was unlocked"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetDiscussionBeatmapsetDiscussionUnlockCompact => new TranslatableString(getKey(@"item.beatmapset.beatmapset_discussion.beatmapset_discussion_unlock_compact"), @"Discussion was unlocked");
|
|
|
|
/// <summary>
|
|
/// "Qualified Beatmap problem"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetProblemDefault => new TranslatableString(getKey(@"item.beatmapset.beatmapset_problem._"), @"Qualified Beatmap problem");
|
|
|
|
/// <summary>
|
|
/// "Reported by {0} on "{1}": "{2}""
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetProblemBeatmapsetDiscussionQualifiedProblem(string username, string title, string content) => new TranslatableString(getKey(@"item.beatmapset.beatmapset_problem.beatmapset_discussion_qualified_problem"), @"Reported by {0} on ""{1}"": ""{2}""", username, title, content);
|
|
|
|
/// <summary>
|
|
/// "Reported by {0} on "{1}""
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetProblemBeatmapsetDiscussionQualifiedProblemEmpty(string username, string title) => new TranslatableString(getKey(@"item.beatmapset.beatmapset_problem.beatmapset_discussion_qualified_problem_empty"), @"Reported by {0} on ""{1}""", username, title);
|
|
|
|
/// <summary>
|
|
/// "Reported by {0}: "{1}""
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetProblemBeatmapsetDiscussionQualifiedProblemCompact(string username, string content) => new TranslatableString(getKey(@"item.beatmapset.beatmapset_problem.beatmapset_discussion_qualified_problem_compact"), @"Reported by {0}: ""{1}""", username, content);
|
|
|
|
/// <summary>
|
|
/// "Reported by {0}"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetProblemBeatmapsetDiscussionQualifiedProblemCompactEmpty(string username) => new TranslatableString(getKey(@"item.beatmapset.beatmapset_problem.beatmapset_discussion_qualified_problem_compact_empty"), @"Reported by {0}", username);
|
|
|
|
/// <summary>
|
|
/// "Beatmap status changed"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetStateDefault => new TranslatableString(getKey(@"item.beatmapset.beatmapset_state._"), @"Beatmap status changed");
|
|
|
|
/// <summary>
|
|
/// ""{0}" has been disqualified"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetStateBeatmapsetDisqualify(string title) => new TranslatableString(getKey(@"item.beatmapset.beatmapset_state.beatmapset_disqualify"), @"""{0}"" has been disqualified", title);
|
|
|
|
/// <summary>
|
|
/// "Beatmap was disqualified"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetStateBeatmapsetDisqualifyCompact => new TranslatableString(getKey(@"item.beatmapset.beatmapset_state.beatmapset_disqualify_compact"), @"Beatmap was disqualified");
|
|
|
|
/// <summary>
|
|
/// ""{0}" was promoted to loved"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetStateBeatmapsetLove(string title) => new TranslatableString(getKey(@"item.beatmapset.beatmapset_state.beatmapset_love"), @"""{0}"" was promoted to loved", title);
|
|
|
|
/// <summary>
|
|
/// "Beatmap was promoted to loved"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetStateBeatmapsetLoveCompact => new TranslatableString(getKey(@"item.beatmapset.beatmapset_state.beatmapset_love_compact"), @"Beatmap was promoted to loved");
|
|
|
|
/// <summary>
|
|
/// ""{0}" has been nominated"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetStateBeatmapsetNominate(string title) => new TranslatableString(getKey(@"item.beatmapset.beatmapset_state.beatmapset_nominate"), @"""{0}"" has been nominated", title);
|
|
|
|
/// <summary>
|
|
/// "Beatmap was nominated"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetStateBeatmapsetNominateCompact => new TranslatableString(getKey(@"item.beatmapset.beatmapset_state.beatmapset_nominate_compact"), @"Beatmap was nominated");
|
|
|
|
/// <summary>
|
|
/// ""{0}" has gained enough nominations and entered the ranking queue"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetStateBeatmapsetQualify(string title) => new TranslatableString(getKey(@"item.beatmapset.beatmapset_state.beatmapset_qualify"), @"""{0}"" has gained enough nominations and entered the ranking queue", title);
|
|
|
|
/// <summary>
|
|
/// "Beatmap entered ranking queue"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetStateBeatmapsetQualifyCompact => new TranslatableString(getKey(@"item.beatmapset.beatmapset_state.beatmapset_qualify_compact"), @"Beatmap entered ranking queue");
|
|
|
|
/// <summary>
|
|
/// ""{0}" has been ranked"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetStateBeatmapsetRank(string title) => new TranslatableString(getKey(@"item.beatmapset.beatmapset_state.beatmapset_rank"), @"""{0}"" has been ranked", title);
|
|
|
|
/// <summary>
|
|
/// "Beatmap was ranked"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetStateBeatmapsetRankCompact => new TranslatableString(getKey(@"item.beatmapset.beatmapset_state.beatmapset_rank_compact"), @"Beatmap was ranked");
|
|
|
|
/// <summary>
|
|
/// ""{0}" was removed from Loved"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetStateBeatmapsetRemoveFromLoved(string title) => new TranslatableString(getKey(@"item.beatmapset.beatmapset_state.beatmapset_remove_from_loved"), @"""{0}"" was removed from Loved", title);
|
|
|
|
/// <summary>
|
|
/// "Beatmap was removed from Loved"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetStateBeatmapsetRemoveFromLovedCompact => new TranslatableString(getKey(@"item.beatmapset.beatmapset_state.beatmapset_remove_from_loved_compact"), @"Beatmap was removed from Loved");
|
|
|
|
/// <summary>
|
|
/// "Nomination of "{0}" has been reset"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetStateBeatmapsetResetNominations(string title) => new TranslatableString(getKey(@"item.beatmapset.beatmapset_state.beatmapset_reset_nominations"), @"Nomination of ""{0}"" has been reset", title);
|
|
|
|
/// <summary>
|
|
/// "Nomination was reset"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetBeatmapsetStateBeatmapsetResetNominationsCompact => new TranslatableString(getKey(@"item.beatmapset.beatmapset_state.beatmapset_reset_nominations_compact"), @"Nomination was reset");
|
|
|
|
/// <summary>
|
|
/// "New comment"
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetCommentDefault => new TranslatableString(getKey(@"item.beatmapset.comment._"), @"New comment");
|
|
|
|
/// <summary>
|
|
/// "{0} commented "{1}" on "{2}""
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetCommentCommentNew(string username, string content, string title) => new TranslatableString(getKey(@"item.beatmapset.comment.comment_new"), @"{0} commented ""{1}"" on ""{2}""", username, content, title);
|
|
|
|
/// <summary>
|
|
/// "{0} commented "{1}""
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetCommentCommentNewCompact(string username, string content) => new TranslatableString(getKey(@"item.beatmapset.comment.comment_new_compact"), @"{0} commented ""{1}""", username, content);
|
|
|
|
/// <summary>
|
|
/// "{0} replied "{1}" on "{2}""
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetCommentCommentReply(string username, string content, string title) => new TranslatableString(getKey(@"item.beatmapset.comment.comment_reply"), @"{0} replied ""{1}"" on ""{2}""", username, content, title);
|
|
|
|
/// <summary>
|
|
/// "{0} replied "{1}""
|
|
/// </summary>
|
|
public static LocalisableString ItemBeatmapsetCommentCommentReplyCompact(string username, string content) => new TranslatableString(getKey(@"item.beatmapset.comment.comment_reply_compact"), @"{0} replied ""{1}""", username, content);
|
|
|
|
/// <summary>
|
|
/// "Chat"
|
|
/// </summary>
|
|
public static LocalisableString ItemChannelDefault => new TranslatableString(getKey(@"item.channel._"), @"Chat");
|
|
|
|
/// <summary>
|
|
/// "New message"
|
|
/// </summary>
|
|
public static LocalisableString ItemChannelChannelDefault => new TranslatableString(getKey(@"item.channel.channel._"), @"New message");
|
|
|
|
/// <summary>
|
|
/// "{0} says "{1}""
|
|
/// </summary>
|
|
public static LocalisableString ItemChannelChannelPmChannelMessage(string username, string title) => new TranslatableString(getKey(@"item.channel.channel.pm.channel_message"), @"{0} says ""{1}""", username, title);
|
|
|
|
/// <summary>
|
|
/// "{0}"
|
|
/// </summary>
|
|
public static LocalisableString ItemChannelChannelPmChannelMessageCompact(string title) => new TranslatableString(getKey(@"item.channel.channel.pm.channel_message_compact"), @"{0}", title);
|
|
|
|
/// <summary>
|
|
/// "from {0}"
|
|
/// </summary>
|
|
public static LocalisableString ItemChannelChannelPmChannelMessageGroup(string username) => new TranslatableString(getKey(@"item.channel.channel.pm.channel_message_group"), @"from {0}", username);
|
|
|
|
/// <summary>
|
|
/// "Changelog"
|
|
/// </summary>
|
|
public static LocalisableString ItemBuildDefault => new TranslatableString(getKey(@"item.build._"), @"Changelog");
|
|
|
|
/// <summary>
|
|
/// "New comment"
|
|
/// </summary>
|
|
public static LocalisableString ItemBuildCommentDefault => new TranslatableString(getKey(@"item.build.comment._"), @"New comment");
|
|
|
|
/// <summary>
|
|
/// "{0} commented "{1}" on "{2}""
|
|
/// </summary>
|
|
public static LocalisableString ItemBuildCommentCommentNew(string username, string content, string title) => new TranslatableString(getKey(@"item.build.comment.comment_new"), @"{0} commented ""{1}"" on ""{2}""", username, content, title);
|
|
|
|
/// <summary>
|
|
/// "{0} commented "{1}""
|
|
/// </summary>
|
|
public static LocalisableString ItemBuildCommentCommentNewCompact(string username, string content) => new TranslatableString(getKey(@"item.build.comment.comment_new_compact"), @"{0} commented ""{1}""", username, content);
|
|
|
|
/// <summary>
|
|
/// "{0} replied "{1}" on "{2}""
|
|
/// </summary>
|
|
public static LocalisableString ItemBuildCommentCommentReply(string username, string content, string title) => new TranslatableString(getKey(@"item.build.comment.comment_reply"), @"{0} replied ""{1}"" on ""{2}""", username, content, title);
|
|
|
|
/// <summary>
|
|
/// "{0} replied "{1}""
|
|
/// </summary>
|
|
public static LocalisableString ItemBuildCommentCommentReplyCompact(string username, string content) => new TranslatableString(getKey(@"item.build.comment.comment_reply_compact"), @"{0} replied ""{1}""", username, content);
|
|
|
|
/// <summary>
|
|
/// "News"
|
|
/// </summary>
|
|
public static LocalisableString ItemNewsPostDefault => new TranslatableString(getKey(@"item.news_post._"), @"News");
|
|
|
|
/// <summary>
|
|
/// "New comment"
|
|
/// </summary>
|
|
public static LocalisableString ItemNewsPostCommentDefault => new TranslatableString(getKey(@"item.news_post.comment._"), @"New comment");
|
|
|
|
/// <summary>
|
|
/// "{0} commented "{1}" on "{2}""
|
|
/// </summary>
|
|
public static LocalisableString ItemNewsPostCommentCommentNew(string username, string content, string title) => new TranslatableString(getKey(@"item.news_post.comment.comment_new"), @"{0} commented ""{1}"" on ""{2}""", username, content, title);
|
|
|
|
/// <summary>
|
|
/// "{0} commented "{1}""
|
|
/// </summary>
|
|
public static LocalisableString ItemNewsPostCommentCommentNewCompact(string username, string content) => new TranslatableString(getKey(@"item.news_post.comment.comment_new_compact"), @"{0} commented ""{1}""", username, content);
|
|
|
|
/// <summary>
|
|
/// "{0} replied "{1}" on "{2}""
|
|
/// </summary>
|
|
public static LocalisableString ItemNewsPostCommentCommentReply(string username, string content, string title) => new TranslatableString(getKey(@"item.news_post.comment.comment_reply"), @"{0} replied ""{1}"" on ""{2}""", username, content, title);
|
|
|
|
/// <summary>
|
|
/// "{0} replied "{1}""
|
|
/// </summary>
|
|
public static LocalisableString ItemNewsPostCommentCommentReplyCompact(string username, string content) => new TranslatableString(getKey(@"item.news_post.comment.comment_reply_compact"), @"{0} replied ""{1}""", username, content);
|
|
|
|
/// <summary>
|
|
/// "Forum topic"
|
|
/// </summary>
|
|
public static LocalisableString ItemForumTopicDefault => new TranslatableString(getKey(@"item.forum_topic._"), @"Forum topic");
|
|
|
|
/// <summary>
|
|
/// "New forum reply"
|
|
/// </summary>
|
|
public static LocalisableString ItemForumTopicForumTopicReplyDefault => new TranslatableString(getKey(@"item.forum_topic.forum_topic_reply._"), @"New forum reply");
|
|
|
|
/// <summary>
|
|
/// "{0} replied to "{1}""
|
|
/// </summary>
|
|
public static LocalisableString ItemForumTopicForumTopicReplyForumTopicReply(string username, string title) => new TranslatableString(getKey(@"item.forum_topic.forum_topic_reply.forum_topic_reply"), @"{0} replied to ""{1}""", username, title);
|
|
|
|
/// <summary>
|
|
/// "{0} replied"
|
|
/// </summary>
|
|
public static LocalisableString ItemForumTopicForumTopicReplyForumTopicReplyCompact(string username) => new TranslatableString(getKey(@"item.forum_topic.forum_topic_reply.forum_topic_reply_compact"), @"{0} replied", username);
|
|
|
|
/// <summary>
|
|
/// "Legacy Forum PM"
|
|
/// </summary>
|
|
public static LocalisableString ItemLegacyPmDefault => new TranslatableString(getKey(@"item.legacy_pm._"), @"Legacy Forum PM");
|
|
|
|
/// <summary>
|
|
/// ""
|
|
/// </summary>
|
|
public static LocalisableString ItemLegacyPmLegacyPmDefault => new TranslatableString(getKey(@"item.legacy_pm.legacy_pm._"), @"");
|
|
|
|
/// <summary>
|
|
/// "{0} unread message|{0} unread messages"
|
|
/// </summary>
|
|
public static LocalisableString ItemLegacyPmLegacyPmLegacyPm(string countDelimited) => new TranslatableString(getKey(@"item.legacy_pm.legacy_pm.legacy_pm"), @"{0} unread message|{0} unread messages", countDelimited);
|
|
|
|
/// <summary>
|
|
/// "New beatmap"
|
|
/// </summary>
|
|
public static LocalisableString ItemUserUserBeatmapsetNewDefault => new TranslatableString(getKey(@"item.user.user_beatmapset_new._"), @"New beatmap");
|
|
|
|
/// <summary>
|
|
/// "New beatmap "{0}" by {1}"
|
|
/// </summary>
|
|
public static LocalisableString ItemUserUserBeatmapsetNewUserBeatmapsetNew(string title, string username) => new TranslatableString(getKey(@"item.user.user_beatmapset_new.user_beatmapset_new"), @"New beatmap ""{0}"" by {1}", title, username);
|
|
|
|
/// <summary>
|
|
/// "New beatmap "{0}""
|
|
/// </summary>
|
|
public static LocalisableString ItemUserUserBeatmapsetNewUserBeatmapsetNewCompact(string title) => new TranslatableString(getKey(@"item.user.user_beatmapset_new.user_beatmapset_new_compact"), @"New beatmap ""{0}""", title);
|
|
|
|
/// <summary>
|
|
/// "New beatmaps by {0}"
|
|
/// </summary>
|
|
public static LocalisableString ItemUserUserBeatmapsetNewUserBeatmapsetNewGroup(string username) => new TranslatableString(getKey(@"item.user.user_beatmapset_new.user_beatmapset_new_group"), @"New beatmaps by {0}", username);
|
|
|
|
/// <summary>
|
|
/// "Medals"
|
|
/// </summary>
|
|
public static LocalisableString ItemUserAchievementDefault => new TranslatableString(getKey(@"item.user_achievement._"), @"Medals");
|
|
|
|
/// <summary>
|
|
/// "New medal"
|
|
/// </summary>
|
|
public static LocalisableString ItemUserAchievementUserAchievementUnlockDefault => new TranslatableString(getKey(@"item.user_achievement.user_achievement_unlock._"), @"New medal");
|
|
|
|
/// <summary>
|
|
/// "Unlocked "{0}"!"
|
|
/// </summary>
|
|
public static LocalisableString ItemUserAchievementUserAchievementUnlockUserAchievementUnlock(string title) => new TranslatableString(getKey(@"item.user_achievement.user_achievement_unlock.user_achievement_unlock"), @"Unlocked ""{0}""!", title);
|
|
|
|
/// <summary>
|
|
/// "Unlocked "{0}"!"
|
|
/// </summary>
|
|
public static LocalisableString ItemUserAchievementUserAchievementUnlockUserAchievementUnlockCompact(string title) => new TranslatableString(getKey(@"item.user_achievement.user_achievement_unlock.user_achievement_unlock_compact"), @"Unlocked ""{0}""!", title);
|
|
|
|
/// <summary>
|
|
/// "Medals unlocked!"
|
|
/// </summary>
|
|
public static LocalisableString ItemUserAchievementUserAchievementUnlockUserAchievementUnlockGroup => new TranslatableString(getKey(@"item.user_achievement.user_achievement_unlock.user_achievement_unlock_group"), @"Medals unlocked!");
|
|
|
|
/// <summary>
|
|
/// "You're now guest of beatmap "{0}""
|
|
/// </summary>
|
|
public static LocalisableString MailBeatmapsetBeatmapOwnerChangeBeatmapOwnerChange(string title) => new TranslatableString(getKey(@"mail.beatmapset.beatmap_owner_change.beatmap_owner_change"), @"You're now guest of beatmap ""{0}""", title);
|
|
|
|
/// <summary>
|
|
/// "The discussion on "{0}" has been locked"
|
|
/// </summary>
|
|
public static LocalisableString MailBeatmapsetBeatmapsetDiscussionBeatmapsetDiscussionLock(string title) => new TranslatableString(getKey(@"mail.beatmapset.beatmapset_discussion.beatmapset_discussion_lock"), @"The discussion on ""{0}"" has been locked", title);
|
|
|
|
/// <summary>
|
|
/// "The discussion on "{0}" has new updates"
|
|
/// </summary>
|
|
public static LocalisableString MailBeatmapsetBeatmapsetDiscussionBeatmapsetDiscussionPostNew(string title) => new TranslatableString(getKey(@"mail.beatmapset.beatmapset_discussion.beatmapset_discussion_post_new"), @"The discussion on ""{0}"" has new updates", title);
|
|
|
|
/// <summary>
|
|
/// "The discussion on "{0}" has been unlocked"
|
|
/// </summary>
|
|
public static LocalisableString MailBeatmapsetBeatmapsetDiscussionBeatmapsetDiscussionUnlock(string title) => new TranslatableString(getKey(@"mail.beatmapset.beatmapset_discussion.beatmapset_discussion_unlock"), @"The discussion on ""{0}"" has been unlocked", title);
|
|
|
|
/// <summary>
|
|
/// "A new problem was reported on "{0}""
|
|
/// </summary>
|
|
public static LocalisableString MailBeatmapsetBeatmapsetProblemBeatmapsetDiscussionQualifiedProblem(string title) => new TranslatableString(getKey(@"mail.beatmapset.beatmapset_problem.beatmapset_discussion_qualified_problem"), @"A new problem was reported on ""{0}""", title);
|
|
|
|
/// <summary>
|
|
/// ""{0}" has been disqualified"
|
|
/// </summary>
|
|
public static LocalisableString MailBeatmapsetBeatmapsetStateBeatmapsetDisqualify(string title) => new TranslatableString(getKey(@"mail.beatmapset.beatmapset_state.beatmapset_disqualify"), @"""{0}"" has been disqualified", title);
|
|
|
|
/// <summary>
|
|
/// ""{0}" was promoted to loved"
|
|
/// </summary>
|
|
public static LocalisableString MailBeatmapsetBeatmapsetStateBeatmapsetLove(string title) => new TranslatableString(getKey(@"mail.beatmapset.beatmapset_state.beatmapset_love"), @"""{0}"" was promoted to loved", title);
|
|
|
|
/// <summary>
|
|
/// ""{0}" has been nominated"
|
|
/// </summary>
|
|
public static LocalisableString MailBeatmapsetBeatmapsetStateBeatmapsetNominate(string title) => new TranslatableString(getKey(@"mail.beatmapset.beatmapset_state.beatmapset_nominate"), @"""{0}"" has been nominated", title);
|
|
|
|
/// <summary>
|
|
/// ""{0}" has gained enough nominations and entered the ranking queue"
|
|
/// </summary>
|
|
public static LocalisableString MailBeatmapsetBeatmapsetStateBeatmapsetQualify(string title) => new TranslatableString(getKey(@"mail.beatmapset.beatmapset_state.beatmapset_qualify"), @"""{0}"" has gained enough nominations and entered the ranking queue", title);
|
|
|
|
/// <summary>
|
|
/// ""{0}" has been ranked"
|
|
/// </summary>
|
|
public static LocalisableString MailBeatmapsetBeatmapsetStateBeatmapsetRank(string title) => new TranslatableString(getKey(@"mail.beatmapset.beatmapset_state.beatmapset_rank"), @"""{0}"" has been ranked", title);
|
|
|
|
/// <summary>
|
|
/// ""{0}" was removed from Loved"
|
|
/// </summary>
|
|
public static LocalisableString MailBeatmapsetBeatmapsetStateBeatmapsetRemoveFromLoved(string title) => new TranslatableString(getKey(@"mail.beatmapset.beatmapset_state.beatmapset_remove_from_loved"), @"""{0}"" was removed from Loved", title);
|
|
|
|
/// <summary>
|
|
/// "Nomination of "{0}" has been reset"
|
|
/// </summary>
|
|
public static LocalisableString MailBeatmapsetBeatmapsetStateBeatmapsetResetNominations(string title) => new TranslatableString(getKey(@"mail.beatmapset.beatmapset_state.beatmapset_reset_nominations"), @"Nomination of ""{0}"" has been reset", title);
|
|
|
|
/// <summary>
|
|
/// "Beatmap "{0}" has new comments"
|
|
/// </summary>
|
|
public static LocalisableString MailBeatmapsetCommentCommentNew(string title) => new TranslatableString(getKey(@"mail.beatmapset.comment.comment_new"), @"Beatmap ""{0}"" has new comments", title);
|
|
|
|
/// <summary>
|
|
/// "You've received a new message from {0}"
|
|
/// </summary>
|
|
public static LocalisableString MailChannelChannelPm(string username) => new TranslatableString(getKey(@"mail.channel.channel.pm"), @"You've received a new message from {0}", username);
|
|
|
|
/// <summary>
|
|
/// "Changelog "{0}" has new comments"
|
|
/// </summary>
|
|
public static LocalisableString MailBuildCommentCommentNew(string title) => new TranslatableString(getKey(@"mail.build.comment.comment_new"), @"Changelog ""{0}"" has new comments", title);
|
|
|
|
/// <summary>
|
|
/// "News "{0}" has new comments"
|
|
/// </summary>
|
|
public static LocalisableString MailNewsPostCommentCommentNew(string title) => new TranslatableString(getKey(@"mail.news_post.comment.comment_new"), @"News ""{0}"" has new comments", title);
|
|
|
|
/// <summary>
|
|
/// "There are new replies in "{0}""
|
|
/// </summary>
|
|
public static LocalisableString MailForumTopicForumTopicReplyForumTopicReply(string title) => new TranslatableString(getKey(@"mail.forum_topic.forum_topic_reply.forum_topic_reply"), @"There are new replies in ""{0}""", title);
|
|
|
|
/// <summary>
|
|
/// "{0} has unlocked a new medal, "{1}"!"
|
|
/// </summary>
|
|
public static LocalisableString MailUserUserAchievementUnlockUserAchievementUnlock(string username, string title) => new TranslatableString(getKey(@"mail.user.user_achievement_unlock.user_achievement_unlock"), @"{0} has unlocked a new medal, ""{1}""!", username, title);
|
|
|
|
/// <summary>
|
|
/// "You've unlocked a new medal, "{0}"!"
|
|
/// </summary>
|
|
public static LocalisableString MailUserUserAchievementUnlockUserAchievementUnlockSelf(string title) => new TranslatableString(getKey(@"mail.user.user_achievement_unlock.user_achievement_unlock_self"), @"You've unlocked a new medal, ""{0}""!", title);
|
|
|
|
/// <summary>
|
|
/// "{0} has created new beatmaps"
|
|
/// </summary>
|
|
public static LocalisableString MailUserUserBeatmapsetNewUserBeatmapsetNew(string username) => new TranslatableString(getKey(@"mail.user.user_beatmapset_new.user_beatmapset_new"), @"{0} has created new beatmaps", username);
|
|
|
|
private static string getKey(string key) => $@"{prefix}:{key}";
|
|
}
|
|
} |