mirror of
https://github.com/tooot-app/app
synced 2025-06-05 22:19:13 +02:00
28
src/i18n/zh-Hans/components/mediaSelector.json
Normal file
28
src/i18n/zh-Hans/components/mediaSelector.json
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
{
|
||||||
|
"title": "选择媒体",
|
||||||
|
"options": {
|
||||||
|
"library": "从相册上传",
|
||||||
|
"photo": "拍摄照片",
|
||||||
|
"cancel": "$t(common:buttons.cancel)"
|
||||||
|
},
|
||||||
|
"library": {
|
||||||
|
"alert": {
|
||||||
|
"title": "无权限",
|
||||||
|
"message": "需要读取相册权限才能上传附件",
|
||||||
|
"buttons": {
|
||||||
|
"settings": "去更新设置",
|
||||||
|
"cancel": "$t(common:buttons.cancel)"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"photo": {
|
||||||
|
"alert": {
|
||||||
|
"title": "无权限",
|
||||||
|
"message": "需要使用相机权限才能上传附件",
|
||||||
|
"buttons": {
|
||||||
|
"settings": "去更新设置",
|
||||||
|
"cancel": "$t(common:buttons.cancel)"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@@ -62,7 +62,7 @@
|
|||||||
"poll": {
|
"poll": {
|
||||||
"option": {
|
"option": {
|
||||||
"placeholder": {
|
"placeholder": {
|
||||||
"accessibilityLabel": "选项{{index}}",
|
"accessibilityLabel": "投票选项 {{index}}",
|
||||||
"single": "单选项",
|
"single": "单选项",
|
||||||
"multiple": "多选项"
|
"multiple": "多选项"
|
||||||
}
|
}
|
||||||
@@ -104,33 +104,6 @@
|
|||||||
"attachment": {
|
"attachment": {
|
||||||
"accessibilityLabel": "上传附件",
|
"accessibilityLabel": "上传附件",
|
||||||
"accessibilityHint": "当有任何附件时,投票功能将被禁用",
|
"accessibilityHint": "当有任何附件时,投票功能将被禁用",
|
||||||
"actions": {
|
|
||||||
"options": {
|
|
||||||
"library": "从相册上传",
|
|
||||||
"photo": "拍摄上传",
|
|
||||||
"cancel": "$t(common:buttons.cancel)"
|
|
||||||
},
|
|
||||||
"library": {
|
|
||||||
"alert": {
|
|
||||||
"title": "无读取权限",
|
|
||||||
"message": "需要读取相册权限才能上传附件",
|
|
||||||
"buttons": {
|
|
||||||
"settings": "去更新设置",
|
|
||||||
"cancel": "取消上传"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"photo": {
|
|
||||||
"alert": {
|
|
||||||
"title": "无拍照权限",
|
|
||||||
"message": "需要使用相机权限才能上传附件",
|
|
||||||
"buttons": {
|
|
||||||
"settings": "去更新设置",
|
|
||||||
"cancel": "取消上传"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"failed": {
|
"failed": {
|
||||||
"alert": {
|
"alert": {
|
||||||
"title": "上传失败",
|
"title": "上传失败",
|
||||||
|
@@ -10,8 +10,8 @@
|
|||||||
"cancel": "$t(common:buttons.cancel)"
|
"cancel": "$t(common:buttons.cancel)"
|
||||||
},
|
},
|
||||||
"save": {
|
"save": {
|
||||||
"function": "保存图片",
|
"succeed": "图片保存成功",
|
||||||
"success": "图片保存成功"
|
"failed": "保存图片失败"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -52,8 +52,20 @@
|
|||||||
"push": {
|
"push": {
|
||||||
"name": "推送通知"
|
"name": "推送通知"
|
||||||
},
|
},
|
||||||
|
"profile": {
|
||||||
|
"name": "修改个人资料"
|
||||||
|
},
|
||||||
|
"profileName": {
|
||||||
|
"name": "修改昵称"
|
||||||
|
},
|
||||||
|
"profileNote": {
|
||||||
|
"name": "修改简介"
|
||||||
|
},
|
||||||
|
"profileFields": {
|
||||||
|
"name": "修改附加信息"
|
||||||
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
"name": "设置"
|
"name": "应用设置"
|
||||||
},
|
},
|
||||||
"switch": {
|
"switch": {
|
||||||
"name": "切换账号"
|
"name": "切换账号"
|
||||||
@@ -71,13 +83,73 @@
|
|||||||
"XXL": "超大号"
|
"XXL": "超大号"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"profile": {
|
||||||
|
"cancellation": {
|
||||||
|
"title": "更改尚未保存",
|
||||||
|
"message": "您的更改尚未保存。是否放弃保存更改?",
|
||||||
|
"buttons": {
|
||||||
|
"cancel": "$t(common:buttons.cancel)",
|
||||||
|
"discard": "不保存"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"feedback": {
|
||||||
|
"succeed": "{{type}}已更新",
|
||||||
|
"failed": "{{type}}更新失败,请重试"
|
||||||
|
},
|
||||||
|
"root": {
|
||||||
|
"name": {
|
||||||
|
"title": "昵称"
|
||||||
|
},
|
||||||
|
"avatar": {
|
||||||
|
"title": "头像",
|
||||||
|
"description": "将在下一版中启用"
|
||||||
|
},
|
||||||
|
"banner": {
|
||||||
|
"title": "横幅",
|
||||||
|
"description": "将在下一版中启用"
|
||||||
|
},
|
||||||
|
"note": {
|
||||||
|
"title": "简介"
|
||||||
|
},
|
||||||
|
"fields": {
|
||||||
|
"title": "附加信息",
|
||||||
|
"total": "{{count}} 项",
|
||||||
|
"total_plural": "{{count}} 项"
|
||||||
|
},
|
||||||
|
"visibility": {
|
||||||
|
"title": "嘟文默认可见范围",
|
||||||
|
"options": {
|
||||||
|
"public": "公开",
|
||||||
|
"unlisted": "不公开",
|
||||||
|
"private": "仅关注者",
|
||||||
|
"cancel": "$t(common:buttons.cancel)"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sensitive": {
|
||||||
|
"title": "媒体默认设为敏感"
|
||||||
|
},
|
||||||
|
"lock": {
|
||||||
|
"title": "锁嘟",
|
||||||
|
"description": "你需要手动审核所有关注请求"
|
||||||
|
},
|
||||||
|
"bot": {
|
||||||
|
"title": "机器人帐户",
|
||||||
|
"description": "来自这个帐户的绝大多数操作都是自动进行的,并且可能无人监控"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"fields": {
|
||||||
|
"group": "第 {{index}} 组",
|
||||||
|
"label": "标签",
|
||||||
|
"content": "内容"
|
||||||
|
}
|
||||||
|
},
|
||||||
"push": {
|
"push": {
|
||||||
"enable": {
|
"enable": {
|
||||||
"direct": "启用推送通知",
|
"direct": "启用推送通知",
|
||||||
"settings": "在系统设置中启用"
|
"settings": "在系统设置中启用"
|
||||||
},
|
},
|
||||||
"global": {
|
"global": {
|
||||||
"heading": "启用tooot推送通知",
|
"heading": "启用 {{acct}}",
|
||||||
"description": "通知消息将经由tooot服务器转发"
|
"description": "通知消息将经由tooot服务器转发"
|
||||||
},
|
},
|
||||||
"decode": {
|
"decode": {
|
||||||
@@ -112,6 +184,9 @@
|
|||||||
"empty": "无公告"
|
"empty": "无公告"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"update": {
|
||||||
|
"title": "更新至最新版本"
|
||||||
|
},
|
||||||
"logout": {
|
"logout": {
|
||||||
"button": "退出当前账号",
|
"button": "退出当前账号",
|
||||||
"alert": {
|
"alert": {
|
||||||
@@ -125,13 +200,6 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
"push": {
|
|
||||||
"heading": "$t(me.stacks.push.name)",
|
|
||||||
"content": {
|
|
||||||
"enabled": "已启用",
|
|
||||||
"disabled": "已禁用"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"fontsize": {
|
"fontsize": {
|
||||||
"heading": "$t(me.stacks.fontSize.name)",
|
"heading": "$t(me.stacks.fontSize.name)",
|
||||||
"content": {
|
"content": {
|
||||||
|
Reference in New Issue
Block a user