tooot/src/i18n/zh-Hans/screens/sharedCompose.ts

158 lines
4.1 KiB
TypeScript
Raw Normal View History

2021-01-19 01:13:45 +01:00
export default {
heading: {
left: {
button: '退出编辑',
alert: {
title: '确认退出编辑?',
buttons: {
2021-02-07 00:39:11 +01:00
save: '保存草稿',
delete: '删除草稿',
cancel: '继续编辑'
2021-01-19 01:13:45 +01:00
}
}
},
right: {
button: {
default: '发嘟嘟',
conversation: '发私信',
reply: '发布回复',
edit: '发嘟嘟'
},
alert: {
2021-03-09 00:47:40 +01:00
default: {
title: '发布失败',
button: '返回重试'
},
removeReply: {
title: '回复的嘟文不存在',
description: '回复的嘟文可能已被删除。确认移除回复嘟文的关联?',
cancel: '$t(common:buttons.cancel)',
confirm: '移除关联'
}
2021-01-19 01:13:45 +01:00
}
}
},
content: {
root: {
header: {
2021-01-20 00:39:39 +01:00
postingAs: '以 @{{acct}}@{{domain}} 发嘟',
2021-01-19 01:13:45 +01:00
spoilerInput: {
placeholder: '折叠部分的警告信息'
},
textInput: {
2021-01-20 00:39:39 +01:00
placeholder: '想说点什么呢'
2021-01-19 01:13:45 +01:00
}
},
footer: {
attachments: {
2021-01-20 00:39:39 +01:00
sensitive: '标记附件为敏感内容'
2021-01-19 01:13:45 +01:00
},
poll: {
option: {
placeholder: {
single: '单选项',
multiple: '多选项'
}
},
multiple: {
heading: '可选项',
options: {
single: '单选',
multiple: '多选',
cancel: '$t(common:buttons.cancel)'
}
},
expiration: {
heading: '有效期',
options: {
'300': '5分钟',
'1800': '30分钟',
'3600': '1小时',
'21600': '6小时',
'86400': '1天',
'259200': '3天',
'604800': '7天',
cancel: '$t(common:buttons.cancel)'
}
}
}
},
actions: {
attachment: {
actions: {
options: {
library: '从相册上传',
photo: '拍摄上传',
cancel: '$t(common:buttons.cancel)'
},
library: {
alert: {
title: '无读取权限',
2021-01-20 00:39:39 +01:00
message: '需要读取相册权限才能上传附件',
2021-01-19 01:13:45 +01:00
buttons: {
2021-01-20 00:39:39 +01:00
settings: '去更新设置',
2021-01-19 01:13:45 +01:00
cancel: '取消上传'
}
}
},
photo: {
alert: {
title: '无拍照权限',
2021-01-20 00:39:39 +01:00
message: '需要使用相机权限才能上传附件',
2021-01-19 01:13:45 +01:00
buttons: {
2021-01-20 00:39:39 +01:00
settings: '去更新设置',
2021-01-19 01:13:45 +01:00
cancel: '取消上传'
}
}
}
},
failed: {
alert: {
title: '上传失败',
button: '返回重试'
}
}
},
visibility: {
title: '嘟文可见范围',
options: {
public: '公开',
unlisted: '不公开',
private: '仅关注者',
direct: '私信',
cancel: '$t(common:buttons.cancel)'
}
}
2021-02-07 00:39:11 +01:00
},
drafts: '草稿 ({{count}})'
2021-01-19 01:13:45 +01:00
},
editAttachment: {
header: {
2021-02-07 00:39:11 +01:00
title: '编辑附件',
2021-01-19 01:13:45 +01:00
right: {
failed: {
2021-02-07 00:39:11 +01:00
title: '编辑失败',
2021-01-19 01:13:45 +01:00
button: '返回重试'
}
}
},
content: {
altText: {
heading: '为附件添加文字说明',
placeholder:
'你可以为附件添加文字说明,以便更多人可以查看他们(包括视力障碍或视力受损人士)。\n\n优质的描述应该简洁明了但要准确地描述照片中的内容以便用户理解其含义。'
},
imageFocus: '在预览图上拖动圆圈,以选择缩略图的焦点'
}
2021-02-07 00:39:11 +01:00
},
draftsList: {
header: {
title: '草稿'
},
content: {
textEmpty: '无正文内容'
}
2021-01-19 01:13:45 +01:00
}
}
}