103 lines
4.4 KiB
Dart
103 lines
4.4 KiB
Dart
import 'package:get/get.dart';
|
|
|
|
class SolianMessages extends Translations {
|
|
@override
|
|
Map<String, Map<String, String>> get keys => {
|
|
'en_US': {
|
|
'okay': 'Okay',
|
|
'next': 'Next',
|
|
'page': 'Page',
|
|
'home': 'Home',
|
|
'apply': 'Apply',
|
|
'cancel': 'Cancel',
|
|
'confirm': 'Confirm',
|
|
'delete': 'Delete',
|
|
'errorHappened': 'An error occurred',
|
|
'email': 'Email',
|
|
'username': 'Username',
|
|
'nickname': 'Nickname',
|
|
'password': 'Password',
|
|
'account': 'Account',
|
|
'personalize': 'Personalize',
|
|
'friend': 'Friend',
|
|
'aspectRatio': 'Aspect Ratio',
|
|
'aspectRatioSquare': 'Square',
|
|
'aspectRatioPortrait': 'Portrait',
|
|
'aspectRatioLandscape': 'Landscape',
|
|
'signin': 'Sign in',
|
|
'signinCaption': 'Sign in to create post, start a realm, message your friend and more!',
|
|
'signinRiskDetected':
|
|
'Risk detected, click Next to open a webpage and signin through it to pass security check.',
|
|
'signup': 'Sign up',
|
|
'signupCaption': 'Create an account on Solarpass and then get the access of entire Solar Network!',
|
|
'signout': 'Sign out',
|
|
'riskDetection': 'Risk Detected',
|
|
'matureContent': 'Mature Content',
|
|
'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?!',
|
|
'postReaction': 'Reactions of the Post',
|
|
'reactAdd': 'React',
|
|
'reactCompleted': 'Your reaction has been added',
|
|
'reactUncompleted': 'Your reaction has been removed',
|
|
'attachmentAdd': 'Attach attachments',
|
|
'attachmentAddGalleryPhoto': 'Gallery photo',
|
|
'attachmentAddGalleryVideo': 'Gallery video',
|
|
'attachmentAddCameraPhoto': 'Capture photo',
|
|
'attachmentAddCameraVideo': 'Capture video',
|
|
'attachmentAddFile': 'Attach file',
|
|
'attachmentSetting': 'Adjust attachment',
|
|
'attachmentAlt': 'Alternative text',
|
|
},
|
|
'zh_CN': {
|
|
'okay': '确认',
|
|
'next': '下一步',
|
|
'cancel': '取消',
|
|
'confirm': '确认',
|
|
'delete': '删除',
|
|
'page': '页面',
|
|
'home': '首页',
|
|
'apply': '应用',
|
|
'errorHappened': '发生错误了',
|
|
'email': '邮件地址',
|
|
'username': '用户名',
|
|
'nickname': '显示名',
|
|
'password': '密码',
|
|
'account': '账号',
|
|
'personalize': '个性化',
|
|
'friend': '好友',
|
|
'aspectRatio': '纵横比',
|
|
'aspectRatioSquare': '方型',
|
|
'aspectRatioPortrait': '竖型',
|
|
'aspectRatioLandscape': '横型',
|
|
'signin': '登录',
|
|
'signinCaption': '登录以发表帖子、文章、创建领域、和你的朋友聊天,以及获取更多功能!',
|
|
'signinRiskDetected': '检测到风险,点击下一步按钮来打开一个网页,并通过在其上面登录来通过安全检查。',
|
|
'signup': '注册',
|
|
'signupCaption': '在 Solarpass 注册一个账号以获得整个 Solar Network 的存取权!',
|
|
'signout': '登出',
|
|
'riskDetection': '检测到风险',
|
|
'matureContent': '评级内容',
|
|
'matureContentCaption': '该内容已被评级为家长指导级或以上,这可能说明内容包含一系列不友好的成分',
|
|
'postAction': '发表',
|
|
'postPublishing': '发表帖子',
|
|
'postIdentityNotify': '你将会以本身份发表帖子',
|
|
'postContentPlaceholder': '发生什么事了?!',
|
|
'postReaction': '帖子的反应',
|
|
'reactAdd': '作出反应',
|
|
'reactCompleted': '你的反应已被添加',
|
|
'reactUncompleted': '你的反应已被移除',
|
|
'attachmentAdd': '附加附件',
|
|
'attachmentAddGalleryPhoto': '相册照片',
|
|
'attachmentAddGalleryVideo': '相册视频',
|
|
'attachmentAddCameraPhoto': '拍摄图片',
|
|
'attachmentAddCameraVideo': '拍摄视频',
|
|
'attachmentAddFile': '附加文件',
|
|
'attachmentSetting': '调整附件',
|
|
'attachmentAlt': '替代文字',
|
|
}
|
|
};
|
|
}
|