Payment and subscription notification

This commit is contained in:
2025-06-23 01:34:53 +08:00
parent 049a5c9b6f
commit feb612afcd
6 changed files with 143 additions and 16 deletions

View File

@ -134,5 +134,29 @@ namespace DysonNetwork.Sphere.Resources.Localization {
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);
}
}
}
}

View File

@ -63,4 +63,17 @@
<data name="AuthCodeBody" xml:space="preserve">
<value>{0} is your disposable code, it will expires in 5 minutes</value>
</data>
<data name="SubscriptionAppliedTitle" xml:space="preserve">
Subscription {0} just activated for your account
</data>
<data name="SubscriptionAppliedBody" xml:space="preserve">
Thank for supporting the Solar Network! Your {0} days {1} subscription just begun,
feel free to explore the newly unlocked features!
</data>
<data name="OrderPaidTitle" xml:space="preserve">
Order {0} recipent
</data>
<data name="OrderPaidBody" xml:space="preserve">
{0} {1} was removed from your wallet to pay {2}
</data>
</root>

View File

@ -56,4 +56,17 @@
<data name="AuthCodeBody" xml:space="preserve">
<value>{0} 是你的一次性验证码,它将会在五分钟内过期</value>
</data>
<data name="SubscriptionAppliedTitle" xml:space="preserve">
{0} 的订阅激活成功
</data>
<data name="SubscriptionAppliedBody" xml:space="preserve">
感谢你支持 Solar Network 的开发!你的 {0} 天 {1} 订阅刚刚开始,
接下来来探索新解锁的新功能吧!
</data>
<data name="OrderPaidTitle" xml:space="preserve">
订单回执 {0}
</data>
<data name="OrderPaidBody" xml:space="preserve">
{0} {1} 已从你的帐户中扣除来支付 {2}
</data>
</root>