🌐 Localizable notification & email

This commit is contained in:
2025-05-17 18:50:14 +08:00
parent 6728bd5607
commit b5226a72f2
17 changed files with 404 additions and 17 deletions

View File

@ -28,7 +28,7 @@ namespace DysonNetwork.Sphere.Resources {
internal static System.Resources.ResourceManager ResourceManager {
get {
if (object.Equals(null, resourceMan)) {
System.Resources.ResourceManager temp = new System.Resources.ResourceManager("DysonNetwork.Sphere.Resources.SharedResource", typeof(SharedResource).Assembly);
System.Resources.ResourceManager temp = new System.Resources.ResourceManager("DysonNetwork.Sphere.Resources.Localization.SharedResource", typeof(SharedResource).Assembly);
resourceMan = temp;
}
return resourceMan;
@ -44,5 +44,23 @@ namespace DysonNetwork.Sphere.Resources {
resourceCulture = value;
}
}
internal static string EmailLinkHint {
get {
return ResourceManager.GetString("EmailLinkHint", resourceCulture);
}
}
internal static string EmailFooter1 {
get {
return ResourceManager.GetString("EmailFooter1", resourceCulture);
}
}
internal static string EmailFooter2 {
get {
return ResourceManager.GetString("EmailFooter2", resourceCulture);
}
}
}
}