diff --git a/DysonNetwork.Pass/Account/AccountService.cs b/DysonNetwork.Pass/Account/AccountService.cs index bd6371c4..3678b008 100644 --- a/DysonNetwork.Pass/Account/AccountService.cs +++ b/DysonNetwork.Pass/Account/AccountService.cs @@ -3,7 +3,6 @@ using DysonNetwork.Pass.Affiliation; using DysonNetwork.Pass.Auth.OpenId; using DysonNetwork.Pass.Localization; using DysonNetwork.Pass.Mailer; -using DysonNetwork.Pass.Resources.Emails; using DysonNetwork.Shared.Cache; using DysonNetwork.Shared.Data; using DysonNetwork.Shared.Localization; @@ -462,10 +461,11 @@ public class AccountService( } await mailer - .SendTemplatedEmailAsync( + .SendRazorTemplateEmailAsync( account.Nick, contact.Content, localizer.Get("codeEmailTitle"), + "FactorCode", new VerificationEmailModel { Name = account.Name, diff --git a/DysonNetwork.Pass/Account/MagicSpellService.cs b/DysonNetwork.Pass/Account/MagicSpellService.cs index c1b8b9de..686862ae 100644 --- a/DysonNetwork.Pass/Account/MagicSpellService.cs +++ b/DysonNetwork.Pass/Account/MagicSpellService.cs @@ -1,7 +1,6 @@ using System.Security.Cryptography; using System.Text.Json; using DysonNetwork.Pass.Mailer; -using DysonNetwork.Pass.Resources.Emails; using DysonNetwork.Shared.Cache; using DysonNetwork.Shared.Models; using Microsoft.EntityFrameworkCore; @@ -95,10 +94,11 @@ public class MagicSpellService( switch (spell.Type) { case MagicSpellType.AccountActivation: - await email.SendTemplatedEmailAsync( + await email.SendRazorTemplateEmailAsync( contact.Account.Nick, contact.Content, localizer.Get("regConfirmTitle"), + "Welcome", new LandingEmailModel { Name = contact.Account.Name, @@ -107,10 +107,11 @@ public class MagicSpellService( ); break; case MagicSpellType.AccountRemoval: - await email.SendTemplatedEmailAsync( + await email.SendRazorTemplateEmailAsync( contact.Account.Nick, contact.Content, localizer.Get("accountDeletionTitle"), + "AccountDeletion", new AccountDeletionEmailModel { Name = contact.Account.Name, @@ -119,10 +120,11 @@ public class MagicSpellService( ); break; case MagicSpellType.AuthPasswordReset: - await email.SendTemplatedEmailAsync( + await email.SendRazorTemplateEmailAsync( contact.Account.Nick, contact.Content, localizer.Get("passwordResetTitle"), + "PasswordReset", new PasswordResetEmailModel { Name = contact.Account.Name, @@ -133,10 +135,11 @@ public class MagicSpellService( case MagicSpellType.ContactVerification: if (spell.Meta["contact_method"] is not string contactMethod) throw new InvalidOperationException("Contact method is not found."); - await email.SendTemplatedEmailAsync( + await email.SendRazorTemplateEmailAsync( contact.Account.Nick, contactMethod!, - localizer.Get("contractVerificationTitle"), + localizer.Get("contractMethodVerificationTitle"), + "ContactVerification", new ContactVerificationEmailModel { Name = contact.Account.Name, diff --git a/DysonNetwork.Pass/Resources/Emails/AccountDeletionEmail.razor b/DysonNetwork.Pass/Resources/Emails/AccountDeletionEmail.razor deleted file mode 100644 index 25a54d22..00000000 --- a/DysonNetwork.Pass/Resources/Emails/AccountDeletionEmail.razor +++ /dev/null @@ -1,112 +0,0 @@ -@using DysonNetwork.Pass.Localization -@using Microsoft.Extensions.Localization - - -
- @Localizer["AccountDeletionHeader"] -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -
-
-
- - - - -
-
- - - - -
- - Solar Network Logo - -
-

- @Localizer["UsernameFormat", Name] -

-

- @Localizer["AccountDeletionBody"] -

- -
-

- Thanks, -
- Solar Network Team -

-
- ‍ -
-

- @Localizer["AccountDeletionHint"] -

-

- @Localizer["AlternativeLinkHint"] - @Link -

-
- - - - -
-

- © 2025 Solsynth LLC. All rights - reserved. -

-
-
-
-
-
- -@code { - [Parameter] public required string Name { get; set; } - [Parameter] public required string Link { get; set; } - - [Inject] IStringLocalizer Localizer { get; set; } = null!; -} \ No newline at end of file diff --git a/DysonNetwork.Pass/Resources/Emails/ContactVerificationEmail.razor b/DysonNetwork.Pass/Resources/Emails/ContactVerificationEmail.razor deleted file mode 100644 index b4912747..00000000 --- a/DysonNetwork.Pass/Resources/Emails/ContactVerificationEmail.razor +++ /dev/null @@ -1,113 +0,0 @@ -@using DysonNetwork.Pass.Localization -@using Microsoft.Extensions.Localization -@using EmailResource = DysonNetwork.Pass.Localization.EmailResource - - -
- @Localizer["ContactVerificationHeader"] -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -
-
-
- - - - -
-
- - - - -
- - Solar Network Logo - -
-

- @Localizer["UsernameFormat", Name] -

-

- @Localizer["ContactVerificationBody"] -

- -
-

- Thanks, -
- Solar Network Team -

-
- ‍ -
-

- @Localizer["ContactVerificationHint"] -

-

- @Localizer["AlternativeLinkHint"] - @Link -

-
- - - - -
-

- © 2025 Solsynth LLC. All rights - reserved. -

-
-
-
-
-
- -@code { - [Parameter] public required string Name { get; set; } - [Parameter] public required string Link { get; set; } - - [Inject] IStringLocalizer Localizer { get; set; } = null!; -} \ No newline at end of file diff --git a/DysonNetwork.Pass/Resources/Emails/EmailLayout.razor b/DysonNetwork.Pass/Resources/Emails/EmailLayout.razor deleted file mode 100644 index ca59c390..00000000 --- a/DysonNetwork.Pass/Resources/Emails/EmailLayout.razor +++ /dev/null @@ -1,65 +0,0 @@ -@inherits LayoutComponentBase - - - - - - - - - - - - - - - - - -@ChildContent - - - -@code { - [Parameter] public RenderFragment? ChildContent { get; set; } -} \ No newline at end of file diff --git a/DysonNetwork.Pass/Resources/Emails/FactorCodeEmail.razor b/DysonNetwork.Pass/Resources/Emails/FactorCodeEmail.razor deleted file mode 100644 index 8e49e781..00000000 --- a/DysonNetwork.Pass/Resources/Emails/FactorCodeEmail.razor +++ /dev/null @@ -1,107 +0,0 @@ -@using DysonNetwork.Pass.Localization -@using Microsoft.Extensions.Localization -@using EmailResource = DysonNetwork.Pass.Localization.EmailResource - - -
- @Localizer["CodeEmailHeader"] -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -
-
-
- - - - -
-
- - - - -
- - Solar Network Logo - -
-

- @Localizer["UsernameFormat", Name] -

-

- @Localizer["CodeEmailBody"] -

-

- @Code -

-
-

- Thanks, -
- Solar Network Team -

-
- ‍ -
-

- @Localizer["CodeEmailHint"] -

-

- @Localizer["CodeEmailHintSecondary"] -

-
- - - - -
-

- © 2025 Solsynth LLC. All rights - reserved. -

-
-
-
-
-
- -@code { - [Parameter] public required string Name { get; set; } - [Parameter] public required string Code { get; set; } - - [Inject] IStringLocalizer Localizer { get; set; } = null!; - [Inject] IStringLocalizer LocalizerShared { get; set; } = null!; -} diff --git a/DysonNetwork.Pass/Resources/Emails/PasswordResetEmail.razor b/DysonNetwork.Pass/Resources/Emails/PasswordResetEmail.razor deleted file mode 100644 index 7de6321b..00000000 --- a/DysonNetwork.Pass/Resources/Emails/PasswordResetEmail.razor +++ /dev/null @@ -1,114 +0,0 @@ -@using DysonNetwork.Pass.Localization -@using Microsoft.Extensions.Localization -@using EmailResource = DysonNetwork.Pass.Localization.EmailResource - - -
- @Localizer["PasswordResetHeader"] -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -
-
-
- - - - -
-
- - - - -
- - Solar Network Logo - -
-

- @Localizer["UsernameFormat", Name] -

-

- @Localizer["PasswordResetBody"] -

- -
-

- Thanks, -
- Solar Network Team -

-
- ‍ -
-

- @Localizer["PasswordResetHint"] -

-

- @Localizer["AlternativeLinkHint"] - @Link -

-
- - - - -
-

- © 2025 Solsynth LLC. All rights - reserved. -

-
-
-
-
-
- -@code { - [Parameter] public required string Name { get; set; } - [Parameter] public required string Link { get; set; } - - [Inject] IStringLocalizer Localizer { get; set; } = null!; - [Inject] IStringLocalizer LocalizerShared { get; set; } = null!; -} \ No newline at end of file diff --git a/DysonNetwork.Pass/Resources/Emails/RegistrationConfirmEmail.razor b/DysonNetwork.Pass/Resources/Emails/RegistrationConfirmEmail.razor deleted file mode 100644 index e1a9efd2..00000000 --- a/DysonNetwork.Pass/Resources/Emails/RegistrationConfirmEmail.razor +++ /dev/null @@ -1,109 +0,0 @@ -@using Microsoft.Extensions.Localization -@using EmailResource = DysonNetwork.Pass.Localization.EmailResource - - -
- @Localizer["RegConfirmHeader"] -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -  ͏  ͏  ͏  ͏  ͏ -
-
-
- - - - -
-
- - - - -
- - Solar Network Logo - -
-

- @Localizer["UsernameFormat", Name] -

-

- @Localizer["RegConfirmBody"] -

- -
-

- Thanks, -
- Solar Network Team -

-
- ‍ -
-

- @Localizer["AlternativeLinkHint"] - @Link -

-
- - - - -
-

- © 2025 Solsynth LLC. All rights - reserved. -

-
-
-
-
-
- -@code { - [Parameter] public required string Name { get; set; } - [Parameter] public required string Link { get; set; } - - [Inject] IStringLocalizer Localizer { get; set; } = null!; -} \ No newline at end of file diff --git a/DysonNetwork.Pass/Resources/Locales/en.json b/DysonNetwork.Pass/Resources/Locales/en.json index 8ff02672..72547f82 100644 --- a/DysonNetwork.Pass/Resources/Locales/en.json +++ b/DysonNetwork.Pass/Resources/Locales/en.json @@ -22,6 +22,6 @@ "regConfirmTitle": "Confirm your registration", "emailAccountDeletionTitle": "Confirm your account deletion", "passwordResetTitle": "Reset your password", - "contactMethodVerificationTitle": "Verify Contact Method", + "contractMethodVerificationTitle": "Verify Contact Method", "codeEmailTitle": "Your email one-time-password" } diff --git a/DysonNetwork.Pass/Resources/Locales/zh-hans.json b/DysonNetwork.Pass/Resources/Locales/zh-hans.json index 09792d42..4bdf7665 100644 --- a/DysonNetwork.Pass/Resources/Locales/zh-hans.json +++ b/DysonNetwork.Pass/Resources/Locales/zh-hans.json @@ -22,6 +22,6 @@ "regConfirmTitle": "确认您的注册", "emailAccountDeletionTitle": "确认删除您的账户", "passwordResetTitle": "重置您的密码", - "contactMethodVerificationTitle": "验证联系方式", + "contractMethodVerificationTitle": "验证联系方式", "codeEmailTitle": "您的邮箱一次性密码" } diff --git a/DysonNetwork.Pass/Resources/Localization/AccountEventResource.Designer.cs b/DysonNetwork.Pass/Resources/Localization/AccountEventResource.Designer.cs deleted file mode 100644 index c9e71eef..00000000 --- a/DysonNetwork.Pass/Resources/Localization/AccountEventResource.Designer.cs +++ /dev/null @@ -1,414 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace DysonNetwork.Sphere.Resources { - using System; - - - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class AccountEventResource { - - private static System.Resources.ResourceManager resourceMan; - - private static System.Globalization.CultureInfo resourceCulture; - - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal AccountEventResource() { - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - internal static System.Resources.ResourceManager ResourceManager { - get { - if (object.Equals(null, resourceMan)) { - System.Resources.ResourceManager temp = new System.Resources.ResourceManager("DysonNetwork.Pass.Resources.Localization.AccountEventResource", typeof(AccountEventResource).Assembly); - resourceMan = temp; - } - return resourceMan; - } - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - internal static System.Globalization.CultureInfo Culture { - get { - return resourceCulture; - } - set { - resourceCulture = value; - } - } - - internal static string FortuneTipPositiveTitle_1 { - get { - return ResourceManager.GetString("FortuneTipPositiveTitle_1", resourceCulture); - } - } - - internal static string FortuneTipPositiveContent_1 { - get { - return ResourceManager.GetString("FortuneTipPositiveContent_1", resourceCulture); - } - } - - internal static string FortuneTipPositiveTitle_2 { - get { - return ResourceManager.GetString("FortuneTipPositiveTitle_2", resourceCulture); - } - } - - internal static string FortuneTipPositiveContent_2 { - get { - return ResourceManager.GetString("FortuneTipPositiveContent_2", resourceCulture); - } - } - - internal static string FortuneTipPositiveTitle_3 { - get { - return ResourceManager.GetString("FortuneTipPositiveTitle_3", resourceCulture); - } - } - - internal static string FortuneTipPositiveContent_3 { - get { - return ResourceManager.GetString("FortuneTipPositiveContent_3", resourceCulture); - } - } - - internal static string FortuneTipPositiveTitle_4 { - get { - return ResourceManager.GetString("FortuneTipPositiveTitle_4", resourceCulture); - } - } - - internal static string FortuneTipPositiveContent_4 { - get { - return ResourceManager.GetString("FortuneTipPositiveContent_4", resourceCulture); - } - } - - internal static string FortuneTipPositiveTitle_5 { - get { - return ResourceManager.GetString("FortuneTipPositiveTitle_5", resourceCulture); - } - } - - internal static string FortuneTipPositiveContent_5 { - get { - return ResourceManager.GetString("FortuneTipPositiveContent_5", resourceCulture); - } - } - - internal static string FortuneTipPositiveTitle_6 { - get { - return ResourceManager.GetString("FortuneTipPositiveTitle_6", resourceCulture); - } - } - - internal static string FortuneTipPositiveContent_6 { - get { - return ResourceManager.GetString("FortuneTipPositiveContent_6", resourceCulture); - } - } - - internal static string FortuneTipPositiveTitle_7 { - get { - return ResourceManager.GetString("FortuneTipPositiveTitle_7", resourceCulture); - } - } - - internal static string FortuneTipPositiveContent_7 { - get { - return ResourceManager.GetString("FortuneTipPositiveContent_7", resourceCulture); - } - } - - internal static string FortuneTipPositiveTitle_8 { - get { - return ResourceManager.GetString("FortuneTipPositiveTitle_8", resourceCulture); - } - } - - internal static string FortuneTipPositiveContent_8 { - get { - return ResourceManager.GetString("FortuneTipPositiveContent_8", resourceCulture); - } - } - - internal static string FortuneTipPositiveTitle_9 { - get { - return ResourceManager.GetString("FortuneTipPositiveTitle_9", resourceCulture); - } - } - - internal static string FortuneTipPositiveContent_9 { - get { - return ResourceManager.GetString("FortuneTipPositiveContent_9", resourceCulture); - } - } - - internal static string FortuneTipPositiveTitle_10 { - get { - return ResourceManager.GetString("FortuneTipPositiveTitle_10", resourceCulture); - } - } - - internal static string FortuneTipPositiveContent_10 { - get { - return ResourceManager.GetString("FortuneTipPositiveContent_10", resourceCulture); - } - } - - internal static string FortuneTipPositiveTitle_11 { - get { - return ResourceManager.GetString("FortuneTipPositiveTitle_11", resourceCulture); - } - } - - internal static string FortuneTipPositiveContent_11 { - get { - return ResourceManager.GetString("FortuneTipPositiveContent_11", resourceCulture); - } - } - - internal static string FortuneTipPositiveTitle_12 { - get { - return ResourceManager.GetString("FortuneTipPositiveTitle_12", resourceCulture); - } - } - - internal static string FortuneTipPositiveContent_12 { - get { - return ResourceManager.GetString("FortuneTipPositiveContent_12", resourceCulture); - } - } - - internal static string FortuneTipPositiveTitle_13 { - get { - return ResourceManager.GetString("FortuneTipPositiveTitle_13", resourceCulture); - } - } - - internal static string FortuneTipPositiveContent_13 { - get { - return ResourceManager.GetString("FortuneTipPositiveContent_13", resourceCulture); - } - } - - internal static string FortuneTipPositiveTitle_14 { - get { - return ResourceManager.GetString("FortuneTipPositiveTitle_14", resourceCulture); - } - } - - internal static string FortuneTipPositiveContent_14 { - get { - return ResourceManager.GetString("FortuneTipPositiveContent_14", resourceCulture); - } - } - - internal static string FortuneTipNegativeTitle_1 { - get { - return ResourceManager.GetString("FortuneTipNegativeTitle_1", resourceCulture); - } - } - - internal static string FortuneTipNegativeContent_1 { - get { - return ResourceManager.GetString("FortuneTipNegativeContent_1", resourceCulture); - } - } - - internal static string FortuneTipNegativeTitle_2 { - get { - return ResourceManager.GetString("FortuneTipNegativeTitle_2", resourceCulture); - } - } - - internal static string FortuneTipNegativeContent_2 { - get { - return ResourceManager.GetString("FortuneTipNegativeContent_2", resourceCulture); - } - } - - internal static string FortuneTipNegativeTitle_3 { - get { - return ResourceManager.GetString("FortuneTipNegativeTitle_3", resourceCulture); - } - } - - internal static string FortuneTipNegativeContent_3 { - get { - return ResourceManager.GetString("FortuneTipNegativeContent_3", resourceCulture); - } - } - - internal static string FortuneTipNegativeTitle_4 { - get { - return ResourceManager.GetString("FortuneTipNegativeTitle_4", resourceCulture); - } - } - - internal static string FortuneTipNegativeContent_4 { - get { - return ResourceManager.GetString("FortuneTipNegativeContent_4", resourceCulture); - } - } - - internal static string FortuneTipNegativeTitle_5 { - get { - return ResourceManager.GetString("FortuneTipNegativeTitle_5", resourceCulture); - } - } - - internal static string FortuneTipNegativeContent_5 { - get { - return ResourceManager.GetString("FortuneTipNegativeContent_5", resourceCulture); - } - } - - internal static string FortuneTipNegativeTitle_6 { - get { - return ResourceManager.GetString("FortuneTipNegativeTitle_6", resourceCulture); - } - } - - internal static string FortuneTipNegativeContent_6 { - get { - return ResourceManager.GetString("FortuneTipNegativeContent_6", resourceCulture); - } - } - - internal static string FortuneTipNegativeTitle_7 { - get { - return ResourceManager.GetString("FortuneTipNegativeTitle_7", resourceCulture); - } - } - - internal static string FortuneTipNegativeContent_7 { - get { - return ResourceManager.GetString("FortuneTipNegativeContent_7", resourceCulture); - } - } - - internal static string FortuneTipNegativeTitle_8 { - get { - return ResourceManager.GetString("FortuneTipNegativeTitle_8", resourceCulture); - } - } - - internal static string FortuneTipNegativeContent_8 { - get { - return ResourceManager.GetString("FortuneTipNegativeContent_8", resourceCulture); - } - } - - internal static string FortuneTipNegativeTitle_9 { - get { - return ResourceManager.GetString("FortuneTipNegativeTitle_9", resourceCulture); - } - } - - internal static string FortuneTipNegativeContent_9 { - get { - return ResourceManager.GetString("FortuneTipNegativeContent_9", resourceCulture); - } - } - - internal static string FortuneTipNegativeTitle_10 { - get { - return ResourceManager.GetString("FortuneTipNegativeTitle_10", resourceCulture); - } - } - - internal static string FortuneTipNegativeContent_10 { - get { - return ResourceManager.GetString("FortuneTipNegativeContent_10", resourceCulture); - } - } - - internal static string FortuneTipNegativeTitle_11 { - get { - return ResourceManager.GetString("FortuneTipNegativeTitle_11", resourceCulture); - } - } - - internal static string FortuneTipNegativeContent_11 { - get { - return ResourceManager.GetString("FortuneTipNegativeContent_11", resourceCulture); - } - } - - internal static string FortuneTipNegativeTitle_12 { - get { - return ResourceManager.GetString("FortuneTipNegativeTitle_12", resourceCulture); - } - } - - internal static string FortuneTipNegativeContent_12 { - get { - return ResourceManager.GetString("FortuneTipNegativeContent_12", resourceCulture); - } - } - - internal static string FortuneTipNegativeTitle_13 { - get { - return ResourceManager.GetString("FortuneTipNegativeTitle_13", resourceCulture); - } - } - - internal static string FortuneTipNegativeContent_13 { - get { - return ResourceManager.GetString("FortuneTipNegativeContent_13", resourceCulture); - } - } - - internal static string FortuneTipNegativeTitle_14 { - get { - return ResourceManager.GetString("FortuneTipNegativeTitle_14", resourceCulture); - } - } - - internal static string FortuneTipNegativeContent_14 { - get { - return ResourceManager.GetString("FortuneTipNegativeContent_14", resourceCulture); - } - } - - internal static string FortuneTipNegativeTitle_15 { - get { - return ResourceManager.GetString("FortuneTipNegativeTitle_15", resourceCulture); - } - } - - internal static string FortuneTipPositiveContent_15 { - get { - return ResourceManager.GetString("FortuneTipPositiveContent_15", resourceCulture); - } - } - - internal static string FortuneTipNegativeContent_15 { - get { - return ResourceManager.GetString("FortuneTipNegativeContent_15", resourceCulture); - } - } - - internal static string FortuneTipSpecialTitle_Birthday { - get { - return ResourceManager.GetString("FortuneTipSpecialTitle_Birthday", resourceCulture); - } - } - - internal static string FortuneTipSpecialContent_Birthday { - get { - return ResourceManager.GetString("FortuneTipSpecialContent_Birthday", resourceCulture); - } - } - } -} diff --git a/DysonNetwork.Pass/Resources/Localization/AccountEventResource.resx b/DysonNetwork.Pass/Resources/Localization/AccountEventResource.resx deleted file mode 100644 index e118db2e..00000000 --- a/DysonNetwork.Pass/Resources/Localization/AccountEventResource.resx +++ /dev/null @@ -1,204 +0,0 @@ - - - - - - - text/microsoft-resx - - - 1.3 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Gacha - - - Comes at your first roll - - - Gaming - - - Ranking up as god - - - Lottery - - - Never miss the first - - - Speech - - - Flowness at precision - - - Drawing - - - Expectation is envisioned - - - Coding - - - 0 error(s), 0 warning(s) - - - Shopping - - - No taxes and extra fees - - - Studying - - - Efficiency X - - - Music composing - - - No need to re-listen - - - Imaging - - - Perfect every shot - - - PCB welding - - - Solders, fluxes, GO! - - - After Effects - - - @ 60 fps - - - Drone shot - - - Ready to Go - - - Color grading - - - In this format, at this color - - - Gacha - - - Won't get at 80, but 200 - - - Gaming - - - Ground's the Limit - - - Lottery - - - Zero in multiple ten - - - Speech - - - Be careful what you say - - - Drawing - - - Your pen is sticky - - - Coding - - - 114 error(s), 514 warning(s) - - - Shopping - - - 245% tariff - - - Studying - - - Studying Fatigue III - - - Music composing - - - FL Studio is not responding - - - Imaging - - - Card cannot be accessed - - - PCB welding - - - Hand welding - - - After Effects - - - Baahhh! - - - Drone shot - - - Low battery level, Auto Landing in 16s - - - Color grading - - - yummy screen meow - - - Washing film - - - - 0 waterlogging - - - - “?Why is there still something in the box!“ - - - - Have a Birthday Party - - - Happy Birthday, {0}! - - diff --git a/DysonNetwork.Pass/Resources/Localization/AccountEventResource.zh-hans.resx b/DysonNetwork.Pass/Resources/Localization/AccountEventResource.zh-hans.resx deleted file mode 100644 index 606a8318..00000000 --- a/DysonNetwork.Pass/Resources/Localization/AccountEventResource.zh-hans.resx +++ /dev/null @@ -1,257 +0,0 @@ - - - - text/microsoft-resx - - - 1.3 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 抽卡 - - - - 次次出金 - - - - 游戏 - - - - 升段如破竹 - - - - 抽奖 - - - - 欧气加身 - - - - 演讲 - - - - 妙语连珠 - - - - 绘图 - - - - 灵感如泉涌 - - - - 编程 - - - - 0 error(s), 0 warning(s) - - - - 购物 - - - - 汇率低谷 - - - - 学习 - - - - 效率 200% - - - - 编曲 - - - - 灵感爆棚 - - - - 摄影 - - - - 刀锐奶化 - - - - 焊 PCB - - - - 上电,启动,好耶! - - - - AE 启动 - - - - 帧渲染时间 20ms - - - - 航拍 - - - - ”可以起飞“ - - - - 调色 - - - - 色彩准确强如怪,拼尽全力无法战胜 - - - - 抽卡 - - - - 吃大保底 - - - - 游戏 - - - - 掉分如山崩 - - - - 抽奖 - - - - 十连皆寂 - - - - 演讲 - - - - 谨言慎行 - - - - 绘图 - - - - 下笔如千斤 - - - - 编程 - - - - 114 error(s), 514 warning(s) - - - - 购物 - - - - 245% 关税 - - - - 学习 - - - - 效率 50% - - - - 编曲 - - - - FL Studio 未响应 - - - - 摄影 - - - - "No card in camera" - - - - 焊 PCB - - - - 斯~ 不烫 - - - - AE 启动 - - - - 咩~ - - - - 航拍 - - - - 谨慎飞行(姿态模式)→ 严重低电压警报 → 遥控器信号丢失 - - - - 调色 - - - - 甲:我要五彩斑斓的黑 - - - - 洗胶片 - - - - 0 水渍 - - - - “?暗盒里怎么还有!“ - - - - 过生日 - - - 生日快乐,{0}! - - diff --git a/DysonNetwork.Pass/Resources/Localization/EmailResource.Designer.cs b/DysonNetwork.Pass/Resources/Localization/EmailResource.Designer.cs deleted file mode 100644 index 4c51f5a2..00000000 --- a/DysonNetwork.Pass/Resources/Localization/EmailResource.Designer.cs +++ /dev/null @@ -1,90 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace DysonNetwork.Sphere.Resources.Pages.Emails { - using System; - - - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class EmailResource { - - private static System.Resources.ResourceManager resourceMan; - - private static System.Globalization.CultureInfo resourceCulture; - - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal EmailResource() { - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - internal static System.Resources.ResourceManager ResourceManager { - get { - if (object.Equals(null, resourceMan)) { - System.Resources.ResourceManager temp = new System.Resources.ResourceManager("DysonNetwork.Sphere.Resources.Localization.EmailResource", typeof(EmailResource).Assembly); - resourceMan = temp; - } - return resourceMan; - } - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - internal static System.Globalization.CultureInfo Culture { - get { - return resourceCulture; - } - set { - resourceCulture = value; - } - } - - internal static string LandingHeader1 { - get { - return ResourceManager.GetString("LandingHeader1", resourceCulture); - } - } - - internal static string LandingPara1 { - get { - return ResourceManager.GetString("LandingPara1", resourceCulture); - } - } - - internal static string LandingPara2 { - get { - return ResourceManager.GetString("LandingPara2", resourceCulture); - } - } - - internal static string LandingPara3 { - get { - return ResourceManager.GetString("LandingPara3", resourceCulture); - } - } - - internal static string LandingButton1 { - get { - return ResourceManager.GetString("LandingButton1", resourceCulture); - } - } - - internal static string LandingPara4 { - get { - return ResourceManager.GetString("LandingPara4", resourceCulture); - } - } - - internal static string EmailLandingTitle { - get { - return ResourceManager.GetString("EmailLandingTitle", resourceCulture); - } - } - } -} diff --git a/DysonNetwork.Pass/Resources/Localization/EmailResource.resx b/DysonNetwork.Pass/Resources/Localization/EmailResource.resx deleted file mode 100644 index f92ba775..00000000 --- a/DysonNetwork.Pass/Resources/Localization/EmailResource.resx +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - - - text/microsoft-resx - - - 1.3 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Welcome to the Solar Network! - - - We're happy to have you joining our community! Please confirm your registeration in order to activate your account to unlock all the features available. - - - Confirm Registration - - - Confirm your registration - - - Account Deletion Confirmation - - - We've received a request to delete your Solar Network account. We're sorry to see you go. To confirm your account deletion, please click the button below. Please note that this action is permanent and cannot be undone. - - - Confirm Account Deletion - - - If you did not request to delete your account, please ignore this email or contact our support team immediately. - - - Confirm your account deletion - - - Reset your password - - - Reset Password - - - Password Reset Request - - - If you didn't request this, you can ignore this email safety. - - - Verify Contact Method - - - Verify Contact Method - - - Thank you for updating your contact method on the Solar Network. To ensure your account security, we need to verify this change. Please click the button below to verify your contact method: - - - Verify - - - If you didn't request this change, please contact our support team immediately. - - - Your email one-time-password - - - Email One-time-password - - - Someone trying to use email auth factor to authorize an access request. If that is you, enter the code below to continue. - - - This code will expire in 30 minutes. - - - If you didn't request this, you can ignore this email safely - - - Dear, {0} - - - If you're having trouble clicking the button, copy and paste the following URL into your web browser: - - - We recieved a request to reset your Solar Network account password. Click the button below to continue and reset it. - - \ No newline at end of file diff --git a/DysonNetwork.Pass/Resources/Localization/EmailResource.zh-hans.resx b/DysonNetwork.Pass/Resources/Localization/EmailResource.zh-hans.resx deleted file mode 100644 index f192dfa0..00000000 --- a/DysonNetwork.Pass/Resources/Localization/EmailResource.zh-hans.resx +++ /dev/null @@ -1,92 +0,0 @@ - - - text/microsoft-resx - - - 1.3 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 欢迎来到 Solar Network! - - - 尊敬的 - - - 确认注册 - - - 确认你的注册 - - - 账户删除确认 - - - 我们收到了删除您 Solar Network 账户的请求。我们很遗憾看到您的离开。请点击下方按钮确认删除您的账户。请注意,此操作是永久性的,无法撤销。 - - - 确认删除账户 - - - 如果您并未请求删除账户,请忽略此邮件或立即联系我们的支持团队。 - - - 确认删除您的账户 - - - 密码重置请求 - - - 重置密码 - - - 如果您并未请求重置密码,你可以安全地忽略此邮件。 - - - 重置您的密码 - - - 验证您的联系方式 - - - 验证您的联系方式 - - - 感谢您更新 Solar Network 上的联系方式。为确保您的账户安全,我们需要验证此更改。请点击下方按钮验证您的联系方式。 - - - 验证 - - - 如果您没有请求此更改,请立即联系我们的支持团队。 - - - 您的一次性邮件验证码 - - - 邮件一次性验证码 - - - 有人正在尝试使用邮件验证码作为验证因子授权访问。如果那位用户就是您,输入下方的验证码来继续访问。 - - - 验证码会在 30 分钟后过期 - - - 如果您未申请过本验证码,您可以安全的忽略这封邮件 - - - 尊敬的 {0} - - - 如果您无法点击上面的按钮,您也可以尝试复制下面的连接到浏览器访问 - - - 我们收到了重置您 Solar Network 账户密码的请求。请点击下方按钮重置您的密码 - - \ No newline at end of file diff --git a/DysonNetwork.Pass/Resources/Localization/NotificationResource.Designer.cs b/DysonNetwork.Pass/Resources/Localization/NotificationResource.Designer.cs deleted file mode 100644 index 1bc64f71..00000000 --- a/DysonNetwork.Pass/Resources/Localization/NotificationResource.Designer.cs +++ /dev/null @@ -1,216 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace DysonNetwork.Sphere.Resources.Localization { - using System; - - - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class NotificationResource { - - private static System.Resources.ResourceManager resourceMan; - - private static System.Globalization.CultureInfo resourceCulture; - - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal NotificationResource() { - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - internal static System.Resources.ResourceManager ResourceManager { - get { - if (object.Equals(null, resourceMan)) { - System.Resources.ResourceManager temp = new System.Resources.ResourceManager("DysonNetwork.Pass.Resources.Localization.NotificationResource", typeof(NotificationResource).Assembly); - resourceMan = temp; - } - return resourceMan; - } - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - internal static System.Globalization.CultureInfo Culture { - get { - return resourceCulture; - } - set { - resourceCulture = value; - } - } - - internal static string ChatInviteTitle { - get { - return ResourceManager.GetString("ChatInviteTitle", resourceCulture); - } - } - - internal static string ChatInviteBody { - get { - return ResourceManager.GetString("ChatInviteBody", resourceCulture); - } - } - - internal static string ChatInviteDirectBody { - get { - return ResourceManager.GetString("ChatInviteDirectBody", resourceCulture); - } - } - - internal static string RealmInviteTitle { - get { - return ResourceManager.GetString("RealmInviteTitle", resourceCulture); - } - } - - internal static string RealmInviteBody { - get { - return ResourceManager.GetString("RealmInviteBody", resourceCulture); - } - } - - internal static string PostSubscriptionTitle { - get { - return ResourceManager.GetString("PostSubscriptionTitle", resourceCulture); - } - } - - internal static string PostReactTitle { - get { - return ResourceManager.GetString("PostReactTitle", resourceCulture); - } - } - - internal static string PostReactBody { - get { - return ResourceManager.GetString("PostReactBody", resourceCulture); - } - } - - internal static string PostReactContentBody { - get { - return ResourceManager.GetString("PostReactContentBody", resourceCulture); - } - } - - internal static string PostReplyTitle { - get { - return ResourceManager.GetString("PostReplyTitle", resourceCulture); - } - } - - internal static string PostOnlyMedia { - get { - return ResourceManager.GetString("PostOnlyMedia", resourceCulture); - } - } - - internal static string AuthCodeTitle { - get { - return ResourceManager.GetString("AuthCodeTitle", resourceCulture); - } - } - - internal static string AuthCodeBody { - get { - return ResourceManager.GetString("AuthCodeBody", resourceCulture); - } - } - - internal static string SubscriptionAppliedTitle { - get { - return ResourceManager.GetString("SubscriptionAppliedTitle", resourceCulture); - } - } - - internal static string SubscriptionAppliedBody { - get { - return ResourceManager.GetString("SubscriptionAppliedBody", resourceCulture); - } - } - - internal static string OrderPaidTitle { - get { - return ResourceManager.GetString("OrderPaidTitle", resourceCulture); - } - } - - internal static string OrderPaidBody { - get { - return ResourceManager.GetString("OrderPaidBody", resourceCulture); - } - } - - internal static string NewLoginTitle { - get { - return ResourceManager.GetString("NewLoginTitle", resourceCulture); - } - } - - internal static string NewLoginBody { - get { - return ResourceManager.GetString("NewLoginBody", resourceCulture); - } - } - - internal static string FriendRequestTitle { - get { - return ResourceManager.GetString("FriendRequestTitle", resourceCulture); - } - } - - internal static string FriendRequestBody { - get { - return ResourceManager.GetString("FriendRequestBody", resourceCulture); - } - } - - internal static string OrderReceivedTitle { - get { - return ResourceManager.GetString("OrderReceivedTitle", resourceCulture); - } - } - - internal static string OrderReceivedBody { - get { - return ResourceManager.GetString("OrderReceivedBody", resourceCulture); - } - } - - internal static string TransactionNewTitle { - get { - return ResourceManager.GetString("TransactionNewTitle", resourceCulture); - } - } - - internal static string TransactionNewBodyPlus { - get { - return ResourceManager.GetString("TransactionNewBodyPlus", resourceCulture); - } - } - - internal static string TransactionNewBodyMinus { - get { - return ResourceManager.GetString("TransactionNewBodyMinus", resourceCulture); - } - } - - internal static string GiftClaimedTitle { - get { - return ResourceManager.GetString("GiftClaimedTitle", resourceCulture); - } - } - - internal static string GiftClaimedBody { - get { - return ResourceManager.GetString("GiftClaimedBody", resourceCulture); - } - } - } -} diff --git a/DysonNetwork.Pass/Resources/Localization/NotificationResource.resx b/DysonNetwork.Pass/Resources/Localization/NotificationResource.resx deleted file mode 100644 index 2bb6d4d1..00000000 --- a/DysonNetwork.Pass/Resources/Localization/NotificationResource.resx +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - - - - text/microsoft-resx - - - 1.3 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, - PublicKeyToken=b77a5c561934e089 - - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, - PublicKeyToken=b77a5c561934e089 - - - - New Chat Invitation - - - You just got invited to join {0} - - - {0} sent an direct message invitation to you - - - New Realm Invitation - - - You just got invited to join {0} - - - {0} just posted {1} - - - {0} reacted your post - - - {0} added a reaction {1} to your post - - - {0} added a reaction {1} to your post {2} - - - {0} replied your post - - - shared media - - - Disposable Verification Code - - - {0} is your disposable code, it will expires in 5 minutes - - - Subscription {0} just activated for your account - - - Thank for supporting the Solar Network! Your {0} days {1} subscription just begun, feel free to explore the newly unlocked features! - - - Order {0} recipent - - - Paid order {2} with {0} {1} - - - New login detected - - - Your account logged on to a device named {0} at {1} - - - {0} requested to be your friend - - - You can go to relationships page and decide accept their request or not. - - - Order {0} recipent - - - Received {2} payment of {0} {1} - - - Transaction {0} - - - {0} {1} added to your wallet - - - {0} {1} removed from your wallet - - - Someone claimed your gift - - - Your gift {0} has been claimed by {1} - - \ No newline at end of file diff --git a/DysonNetwork.Pass/Resources/Localization/NotificationResource.zh-hans.resx b/DysonNetwork.Pass/Resources/Localization/NotificationResource.zh-hans.resx deleted file mode 100644 index 01a313fc..00000000 --- a/DysonNetwork.Pass/Resources/Localization/NotificationResource.zh-hans.resx +++ /dev/null @@ -1,102 +0,0 @@ - - - text/microsoft-resx - - - 1.3 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, - PublicKeyToken=b77a5c561934e089 - - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, - PublicKeyToken=b77a5c561934e089 - - - - 新聊天邀请 - - - 你刚被邀请加入聊天 {} - - - {0} 向你发送了一个私聊邀请 - - - 新加入领域邀请 - - - 你刚被邀请加入领域 {0} - - - {0} 有新帖子 - - - {0} 反应了你的帖子 - - - {0} 给你的帖子添加了一个 {1} 的反应 - - - {0} 给你的帖子添加了一个 {1} 的反应 {2} - - - {0} 回复了你的帖子 - - - 分享媒体 - - - 一次性验证码 - - - {0} 是你的一次性验证码,它将会在五分钟内过期 - - - {0} 的订阅激活成功 - - - 感谢你支持 Solar Network 的开发!你的 {0} 天 {1} 订阅刚刚开始,接下来来探索新解锁的新功能吧! - - - 订单收据 {0} - - - 已支付订单 {2} 的 {0} {1} - - - 检测到新登陆 - - - 您的帐号在位于 {1} 的设备 {0} 上刚刚登陆了 - - - {0} 请求成为您的好友 - - - 您可以前往人际关系页面来决定时候要接受他们的邀请。 - - - 订单收据 {0} - - - 收到订单 {2} 支付的 {0} {1} - - - 交易 {0} - - - {0} {1} 添加到了您的钱包 - - - {0} {1} 从您的钱包移除 - - - 有人领取了你的礼物 - - - 你的礼物 {0} 已被 {1} 领取 - - \ No newline at end of file diff --git a/DysonNetwork.Pass/Resources/Localization/SharedResource.Designer.cs b/DysonNetwork.Pass/Resources/Localization/SharedResource.Designer.cs deleted file mode 100644 index 0793e32d..00000000 --- a/DysonNetwork.Pass/Resources/Localization/SharedResource.Designer.cs +++ /dev/null @@ -1,48 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace DysonNetwork.Sphere.Resources { - using System; - - - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class SharedResource { - - private static System.Resources.ResourceManager resourceMan; - - private static System.Globalization.CultureInfo resourceCulture; - - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal SharedResource() { - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - internal static System.Resources.ResourceManager ResourceManager { - get { - if (object.Equals(null, resourceMan)) { - System.Resources.ResourceManager temp = new System.Resources.ResourceManager("DysonNetwork.Sphere.Resources.Localization.SharedResource", typeof(SharedResource).Assembly); - resourceMan = temp; - } - return resourceMan; - } - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - internal static System.Globalization.CultureInfo Culture { - get { - return resourceCulture; - } - set { - resourceCulture = value; - } - } - } -} diff --git a/DysonNetwork.Pass/Resources/Localization/SharedResource.resx b/DysonNetwork.Pass/Resources/Localization/SharedResource.resx deleted file mode 100644 index a4c5284f..00000000 --- a/DysonNetwork.Pass/Resources/Localization/SharedResource.resx +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - text/microsoft-resx - - - 1.3 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/DysonNetwork.Pass/Resources/Localization/SharedResource.zh-hans.resx b/DysonNetwork.Pass/Resources/Localization/SharedResource.zh-hans.resx deleted file mode 100644 index 0db19739..00000000 --- a/DysonNetwork.Pass/Resources/Localization/SharedResource.zh-hans.resx +++ /dev/null @@ -1,14 +0,0 @@ - - - text/microsoft-resx - - - 1.3 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file