diff --git a/assets/translations/en-US.json b/assets/translations/en-US.json index 8632dc9..48e5f50 100644 --- a/assets/translations/en-US.json +++ b/assets/translations/en-US.json @@ -594,12 +594,11 @@ "needHelp": "Need Help?", "needHelpLaunch": "Check out our Goatpedia!", "walletCreate": "Create a Wallet", - "walletCreateSubtitle": "Create a wallet to start using Solar Coins", - "walletCreateTerms": "By creating a wallet, you agree to Solar Wallet's Extra Terms of Service.", + "walletCreateSubtitle": "Create a wallet to start using Source Points", "walletCreatePassword": "Set a payment password for your new wallet below", - "walletCurrencyShort": "Credit", + "walletCurrencyShort": "SRC", "walletCurrency": { - "one": "{} Social Credit Point", - "other": "{} Social Credit Points" + "one": "{} Source Point", + "other": "{} Source Points" } } diff --git a/assets/translations/zh-CN.json b/assets/translations/zh-CN.json index c01cc86..fca0f78 100644 --- a/assets/translations/zh-CN.json +++ b/assets/translations/zh-CN.json @@ -591,9 +591,12 @@ "totpNeverShare": "永远不要分享这个 QR Code", "needHelp": "需要帮助?", "needHelpLaunch": "查看我们的山羊维基!", - "walletCurrencyShort": "信用点", + "walletCreate": "创建钱包", + "walletCreateSubtitle": "创建于一个钱包来开始使用源点。", + "walletCreatePassword": "在下方设置你的付款密码", + "walletCurrencyShort": "点", "walletCurrency": { - "one": "{} 社会信用点", - "other": "{} 社会信用点" + "one": "{} 源点", + "other": "{} 源点" } } diff --git a/lib/screens/notification.dart b/lib/screens/notification.dart index e5f4cdd..9af48cf 100644 --- a/lib/screens/notification.dart +++ b/lib/screens/notification.dart @@ -38,9 +38,11 @@ class _NotificationScreenState extends State { static const Map kNotificationTopicIcons = { 'passport.security.alert': Symbols.gpp_maybe, + 'passport.security.otp': Symbols.password, 'interactive.subscription': Symbols.subscriptions, 'interactive.feedback': Symbols.add_reaction, 'messaging.callStart': Symbols.call_received, + 'wallet.transaction.new': Symbols.receipt, }; Future _fetchNotifications() async { diff --git a/lib/screens/wallet.dart b/lib/screens/wallet.dart index 9ff84cb..ded99db 100644 --- a/lib/screens/wallet.dart +++ b/lib/screens/wallet.dart @@ -265,8 +265,6 @@ class _CreateWalletWidgetState extends State<_CreateWalletWidget> { const Gap(12), Text('walletCreate', style: Theme.of(context).textTheme.titleLarge).tr(), Text('walletCreateSubtitle', style: Theme.of(context).textTheme.bodyMedium).tr(), - const Gap(4), - Text('walletCreateTerms', style: Theme.of(context).textTheme.bodySmall).tr(), const Gap(8), Align( alignment: Alignment.centerRight,