Solian/lib/translations.dart

69 lines
3.0 KiB
Dart
Raw Normal View History

2024-05-18 10:17:16 +00:00
import 'package:get/get.dart';
class SolianMessages extends Translations {
@override
Map<String, Map<String, String>> get keys => {
'en_US': {
2024-05-18 16:56:32 +00:00
'next': 'Next',
2024-05-18 10:17:16 +00:00
'page': 'Page',
'home': 'Home',
2024-05-18 16:56:32 +00:00
'errorHappened': 'An error occurred',
'email': 'Email',
'username': 'Username',
'nickname': 'Nickname',
'password': 'Password',
2024-05-18 10:17:16 +00:00
'account': 'Account',
2024-05-18 16:56:32 +00:00
'personalize': 'Personalize',
'friend': 'Friend',
'signin': 'Sign in',
'signinCaption': 'Sign in to create post, start a realm, message your friend and more!',
2024-05-19 10:01:00 +00:00
'signinRiskDetected':
'Risk detected, click Next to open a webpage and signin through it to pass security check.',
2024-05-18 16:56:32 +00:00
'signup': 'Sign up',
'signupCaption': 'Create an account on Solarpass and then get the access of entire Solar Network!',
'signout': 'Sign out',
'riskDetection': 'Risk Detected',
2024-05-18 14:23:36 +00:00
'matureContent': 'Mature Content',
2024-05-19 10:01:00 +00:00
'matureContentCaption': 'The content is rated and may not suitable for everyone to view',
'postAction': 'Post',
'postPublishing': 'Post a post',
'postIdentityNotify': 'You will post this post as',
'postContentPlaceholder': 'What\'s happened?!',
2024-05-19 12:30:50 +00:00
'postReaction': 'Reactions of the Post',
'reactAdd': 'React',
'reactCompleted': 'Your reaction has been added',
'reactUncompleted': 'Your reaction has been removed'
2024-05-18 10:17:16 +00:00
},
'zh_CN': {
2024-05-18 16:56:32 +00:00
'next': '下一步',
2024-05-18 10:17:16 +00:00
'page': '页面',
'home': '首页',
2024-05-18 16:56:32 +00:00
'errorHappened': '发生错误了',
'email': '邮件地址',
'username': '用户名',
'nickname': '显示名',
'password': '密码',
2024-05-18 10:17:16 +00:00
'account': '账号',
2024-05-18 16:56:32 +00:00
'personalize': '个性化',
'friend': '好友',
'signin': '登录',
'signinCaption': '登录以发表帖子、文章、创建领域、和你的朋友聊天,以及获取更多功能!',
'signinRiskDetected': '检测到风险,点击下一步按钮来打开一个网页,并通过在其上面登录来通过安全检查。',
'signup': '注册',
'signupCaption': '在 Solarpass 注册一个账号以获得整个 Solar Network 的存取权!',
'signout': '登出',
'riskDetection': '检测到风险',
2024-05-19 10:01:00 +00:00
'matureContent': '评级内容',
'matureContentCaption': '该内容已被评级为家长指导级或以上,这可能说明内容包含一系列不友好的成分',
'postAction': '发表',
'postPublishing': '发表帖子',
'postIdentityNotify': '你将会以本身份发表帖子',
'postContentPlaceholder': '发生什么事了?!',
2024-05-19 12:30:50 +00:00
'postReaction': '帖子的反应',
'reactAdd': '作出反应',
'reactCompleted': '你的反应已被添加',
'reactUncompleted': '你的反应已被移除'
2024-05-18 10:17:16 +00:00
}
};
}