add simplify chineses translation for plugins

This commit is contained in:
Zhuang 2018-04-30 22:09:53 +08:00
parent 97531cc3d2
commit 7634ff5602
7 changed files with 447 additions and 1 deletions

View File

@ -119,7 +119,7 @@
"components.Input.error.contentTypeName.taken": "此名称已经存在",
"components.Input.error.attribute.taken": "此字段名称已经存在",
"components.Input.error.attribute.key.taken": "此值已经存在",
"components.Input.error.attribute.sameKeyAndName": "不能重复",
"components.Input.error.attribute.sameKeyAndName": "不能相等",
"components.Input.error.validation.minSupMax": "最小值超过最大值了",
"components.Input.error.custom-error": "{errorMessage} ",

View File

@ -0,0 +1,55 @@
{
"plugin.description.short": "快速查看、编辑和删除数据库中的数据。",
"plugin.description.long": "快速查看、编辑和删除数据库中的数据。",
"containers.Home.pluginHeaderTitle": "内容管理器",
"containers.Home.introduction": "要编辑您的条目,请转到左边菜单中的特定链接。这个插件没有合适的方法来编辑设置,它仍然在积极的开发中。",
"containers.Home.pluginHeaderDescription": "通过一个强大而漂亮的界面管理你的条目。",
"containers.Edit.submit": "保存",
"containers.Edit.editing": "编辑...",
"containers.Edit.delete": "删除",
"containers.Edit.reset": "重置",
"containers.Edit.returnList": "返回列表",
"containers.List.addAnEntry": "增加新的 {entity}",
"containers.List.pluginHeaderDescription": "找到 {label} 条目",
"containers.List.pluginHeaderDescription.singular": "找到 {label} 条目",
"components.LimitSelect.itemsPerPage": "每页显示数目",
"containers.List.errorFetchRecords": "错误",
"EditRelations.title": "关系数据",
"emptyAttributes.title": "还没有字段",
"emptyAttributes.description": "为你的内容类型添加第一个字段",
"emptyAttributes.button": "转到内容类型生成器",
"error.schema.generation": "Schema生成过程中发生错误。",
"error.records.count": "获取记录数count时发生错误。",
"error.records.fetch": "获取记录时发生错误。",
"error.record.fetch": "获取记录时发生错误。",
"error.record.create": "创建记录时发生错误",
"error.record.update": "更新记录时发生错误",
"error.record.delete": "删除记录时发生错误",
"error.model.fetch": "获取models配置时发生错误",
"error.validation.required": "必填项",
"error.validation.regex": "格式错误",
"error.validation.max": "超过最大值",
"error.validation.min": "小于最小值",
"error.validation.maxLength": "长度太长",
"error.validation.minLength": "长度太短",
"error.contentTypeName.taken": "该名称已被使用",
"error.attribute.taken": "该名称已被使用",
"error.attribute.key.taken": "该值已存在",
"error.attribute.sameKeyAndName": "不能相等",
"error.validation.minSupMax": "最小值大于最大值。",
"notification.error.relationship.fetch": "获取关联数据时发生错误",
"success.record.delete": "删除",
"success.record.save": "保存",
"pageNotFound": "页面未找到",
"popUpWarning.button.cancel": "取消",
"popUpWarning.button.confirm": "确认",
"popUpWarning.title": "请确认",
"popUpWarning.bodyMessage.contentType.delete": "确实要删除此条目吗?"
}

View File

@ -0,0 +1,174 @@
{
"plugin.description.short": "给你的API的数据结构建模",
"plugin.description.long":
"给你的API的数据结构建模. 快速的创造新的字段(fields)和关系(relations)。将会自动在项目中创建和更新文件。",
"attribute.string": "String",
"attribute.text": "Text",
"attribute.boolean": "Boolean",
"attribute.float": "Float",
"attribute.integer": "integer",
"attribute.decimal": "Decimal",
"attribute.date": "Date",
"attribute.json": "JSON",
"attribute.media": "Media",
"attribute.email": "Email",
"attribute.password": "Password",
"attribute.relation": "Relation",
"attribute.enumeration": "Enumeration",
"attribute.WYSIWYG": "Text (WYSIWYG)",
"contentType.temporaryDisplay": "(未保存)",
"from": "from",
"home.contentTypeBuilder.name": "Content Types",
"home.contentTypeBuilder.description": "创建和更新自己Content Types.",
"home.emptyContentType.title": "没有可用的Content Types",
"home.emptyContentType.description":
"创建第一个Content Type以便能够从API中检索数据。",
"home.emptyAttributes.title": "还没有字段",
"home.emptyAttributes.description": "为你的新Content Type添加第一个字段",
"button.contentType.create": "创建Content Type",
"button.contentType.add": "增加Content Type",
"button.attributes.add": "增加New字段",
"error.validation.required": "必填项",
"error.validation.regex": "格式错误",
"error.validation.max": "超过最大值",
"error.validation.min": "低于最小值",
"error.validation.maxLength": "超过最大长度",
"error.validation.minLength": "小于最小长度",
"error.contentTypeName.taken": "名称已存在",
"error.attribute.taken": "字段名称已存在",
"error.attribute.key.taken": "该值已存在",
"error.attribute.sameKeyAndName": "不能相等",
"error.validation.minSupMax": "最小值大于最大值。",
"form.attribute.item.textarea.name": "Name",
"form.attribute.item.number.name": "Name",
"form.attribute.item.date.name": "Name",
"form.attribute.item.media.name": "Name",
"form.attribute.item.media.multiple": "允许多个文件",
"form.attribute.item.json.name": "Name",
"form.attribute.item.boolean.name": "Name",
"form.attribute.item.string.name": "Name",
"form.attribute.item.appearance.name": "Appearance",
"form.attribute.item.appearance.label": "Display as a WYSIWYG",
"form.attribute.item.appearance.description":
"否则,该值将通过基本文本字段进行编辑。",
"form.attribute.item.settings.name": "设置",
"form.attribute.item.requiredField": "必须的",
"form.attribute.item.uniqueField": "唯一的",
"form.attribute.item.minimum": "最小值",
"form.attribute.item.minimumLength": "最小长度",
"form.attribute.item.maximumLength": "最大长度",
"form.attribute.item.maximum": "最大值",
"form.attribute.item.requiredField.description":
"如果此字段为空,则无法创建条目。",
"form.attribute.item.uniqueField.description":
"如果存在具有相同内容的现有条目,则无法创建条目。",
"form.attribute.item.defineRelation.fieldName": "Field name",
"form.attribute.item.customColumnName": "Custom column names",
"form.attribute.item.customColumnName.description":"修改数据库列名使得API返回更容易理解。",
"form.attribute.item.number.type": "Number format",
"form.attribute.item.number.type.integer": "integer (ex: 10)",
"form.attribute.item.number.type.float": "float (ex: 3.33333333)",
"form.attribute.item.number.type.decimal": "decimal (ex: 2.22)",
"form.attribute.settings.default": "默认值",
"form.attribute.settings.default.checkboxLabel": "Set to true",
"form.button.cancel": "取消",
"form.button.continue": "继续",
"form.button.save": "保存",
"form.contentType.item.connections": "连接",
"form.contentType.item.name": "名称",
"form.contentType.item.name.description": "Content Type names should be singular: {link}",
"form.contentType.item.name.link.description": "查看我们的文档",
"form.contentType.item.description": "描述",
"form.contentType.item.description.placeholder": "在这里写下你的描述...",
"form.contentType.item.collectionName": "Collection Name",
"form.contentType.item.collectionName.inputDescription":
"当你的Content Type和你的数据库表名不一样的时候",
"menu.section.contentTypeBuilder.name.plural": "Content Types",
"menu.section.contentTypeBuilder.name.singular": "Content Type",
"menu.section.documentation.name": "Documentation",
"menu.section.documentation.guide": "阅读更多关于我们的Content Types",
"menu.section.documentation.guideLink": "guide.",
"menu.section.documentation.tutorial": "看看我们的",
"menu.section.documentation.tutorialLink": "教程视频。",
"modelPage.contentHeader.emptyDescription.description": "该Content Type没有任何描述",
"modelPage.contentType.list.title.plural": "fields",
"modelPage.contentType.list.title.singular": "field",
"modelPage.contentType.list.title.including": "including",
"modelPage.contentType.list.relationShipTitle.plural": "relationships",
"modelPage.contentType.list.relationShipTitle.singular": "relationship",
"modelPage.attribute.relationWith": "Relation with",
"noTableWarning.description": "不要忘了在数据库里创建表 `{modelName}`",
"noTableWarning.infos": "更多信息",
"notification.error.message": "发生错误",
"notification.info.contentType.creating.notSaved":
"在创建新Content Type之前请保存当前Content Type",
"notification.info.optimized": "这个插件是用本地存储优化的",
"notification.success.message.contentType.edit": "你的Content Type已更新",
"notification.success.message.contentType.create": "你的Content Type已创建",
"notification.success.contentTypeDeleted": "这个Content Type已被删除",
"notification.info.enumeration": "这个字段暂时不可编辑...😮",
"popUpForm.attributes.string.description": "标题、名称、段落、名称列表",
"popUpForm.attributes.text.description": "描述、文本段落、文章",
"popUpForm.attributes.boolean.description": "Yes or no, 1 or 0, true or false",
"popUpForm.attributes.number.description": "所有数字",
"popUpForm.attributes.date.description": "活动日期、开放时间",
"popUpForm.attributes.json.description": "JSON格式的数据",
"popUpForm.attributes.media.description": "图像视频PDF文件和其他文件",
"popUpForm.attributes.relation.description": "引用其它 Content Type",
"popUpForm.attributes.email.description": "用户email...",
"popUpForm.attributes.password.description": "用户密码...",
"popUpForm.attributes.string.name": "String",
"popUpForm.attributes.text.name": "Text",
"popUpForm.attributes.boolean.name": "Boolean",
"popUpForm.attributes.date.name": "Date",
"popUpForm.attributes.json.name": "JSON",
"popUpForm.attributes.media.name": "Media",
"popUpForm.attributes.number.name": "Number",
"popUpForm.attributes.relation.name": "Relation",
"popUpForm.attributes.email.name": "Email",
"popUpForm.attributes.password.name": "Password",
"popUpForm.create": "增加新的",
"popUpForm.edit": "编辑",
"popUpForm.field": "字段",
"popUpForm.create.contentType.header.title": "增加新的 Content Type",
"popUpForm.choose.attributes.header.title": "增加新字段",
"popUpForm.edit.contentType.header.title": "编辑 Content Type",
"popUpForm.navContainer.relation": "定义关联关系",
"popUpForm.navContainer.base": "基础设置",
"popUpForm.navContainer.advanced": "高级设置",
"popUpRelation.title": "关联",
"popUpWarning.button.cancel": "取消",
"popUpWarning.button.confirm": "确认",
"popUpWarning.title": "请确认",
"popUpWarning.bodyMessage.contentType.delete":
"确实要删除此 Content Type 吗?",
"popUpWarning.bodyMessage.attribute.delete": "确实要删除此字段吗?",
"table.contentType.title.plural": "Content Types 是可用的",
"table.contentType.title.singular": "Content Type 是可用的",
"table.contentType.head.name": "名称",
"table.contentType.head.description": "描述",
"table.contentType.head.fields": "字段",
"relation.oneToOne": "has one",
"relation.oneToMany": "belongs to many",
"relation.manyToOne": "has many",
"relation.manyToMany": "has and belongs to many",
"relation.attributeName.placeholder": "Ex: author, category, tag"
}

View File

@ -0,0 +1,4 @@
{
"plugin.description.short": "发送电子邮件。",
"plugin.description.long": "发送电子邮件。"
}

View File

@ -0,0 +1,36 @@
{
"ConfigPage.title": "上传-设置",
"ConfigPage.description": "配置上传插件",
"EditForm.Input.number.label": "最大文件限制 (单位:MB)",
"EditForm.Input.select.label": "Providers",
"EditForm.Input.select.inputDescription": "文件可以上传到服务器上,也可以上传到外部存储服务供应商。",
"EditForm.Input.toggle.label": "启用文件上传",
"EmptyLi.message": "没有上传的文件",
"EntriesNumber.number": "找到 {number} 个文件",
"EntriesNumber.number.plural": "找到 {number} 个文件",
"HomePage.title": "上传",
"HomePage.description": "发现所有上传的文件",
"HomePage.InputSearch.placeholder": "搜索文件…",
"Li.linkCopied": "链接复制到剪贴板",
"ListHeader.type": "类型",
"ListHeader.hash": "Hash",
"ListHeader.name": "文件名",
"ListHeader.updated": "更新时间",
"ListHeader.size": "大小",
"ListHeader.related": "Related to",
"PluginInputFile.text": "将文件拖放到该区域或 {link} 文件上传",
"PluginInputFile.link": "浏览",
"PluginInputFile.loading": "您的文件正在上传…",
"notification.config.success": "设置已更新",
"notification.delete.success": "文件已被删除",
"notification.dropFile.success": "您的文件已上传",
"notification.dropFiles.success": "{number} 个文件已上传"
}

View File

@ -0,0 +1,177 @@
{
"Auth.form.button.register-success": "再次发送",
"Auth.form.button.forgot-password.success": "再次发送",
"Auth.form.button.forgot-password": "发送电子邮件",
"Auth.form.button.reset-password": "修改密码",
"Auth.form.button.login": "登陆",
"Auth.form.button.register": "准备开始",
"Auth.form.error.noAdminAccess": "你无法访问管理面板。",
"Auth.form.forgot-password.email.label": "输入你的电子邮件",
"Auth.form.forgot-password.email.label.success": "电子邮件已成功发送到",
"Auth.form.forgot-password.email.placeholder": "mysuperemail@gmail.com",
"Auth.header.register.description": "要完成安装并保护您的应用程序请通过输入必要的信息来创建第一个用户root管理员。",
"Auth.form.header.login": "strapi",
"Auth.form.header.forgot-password": "strapi",
"Auth.form.header.register": "欢迎!",
"Auth.form.header.register-success": "strapi",
"Auth.form.login.password.label": "密码",
"Auth.form.login.rememberMe.label": "记住我",
"Auth.form.login.username.label": "用户名",
"Auth.form.login.username.placeholder": "John Doe",
"Auth.form.register.email.label": "邮箱",
"Auth.form.register.email.placeholder": "johndoe@gmail.com",
"Auth.form.register.username.label": "用户名",
"Auth.form.register.username.placeholder": "John Doe",
"Auth.form.register.password.label": "密码",
"Auth.form.register.confirmPassword.label": "确认密码",
"Auth.form.register.news.label": "让我了解新特性和即将到来的改进。",
"Auth.form.register-success.email.label": "电子邮件已发送成功到",
"Auth.form.register-success.email.placeholder": "mysuperemail@gmail.com",
"Auth.form.error.email.provide": "请提供您的用户名或电子邮件。",
"Auth.form.error.email.invalid": "此电子邮件无效。",
"Auth.form.error.password.provide": "请提供您的密码。",
"Auth.form.error.invalid": "标识符或密码无效。",
"Auth.form.error.password.local": "此用户从未设置本地密码,请通过帐户创建过程中使用的第三方供应商登录。",
"Auth.form.error.password.format": "您的密码不能包含符号 `$` 超过三次。",
"Auth.form.error.user.not-exist": "此电子邮件不存在。",
"Auth.form.error.code.provide": "提供代码的代码不正确。",
"Auth.form.error.password.matching": "密码不匹配。",
"Auth.form.error.params.provide": "提供错误的参数。",
"Auth.form.error.username.taken": "用户名已被使用",
"Auth.form.error.email.taken": "邮箱已被使用",
"Auth.link.forgot-password": "忘记密码了吗?",
"Auth.link.ready": "准备好登陆?",
"BoundRoute.title": "绑定路由到",
"components.Input.error.password.noMatch": "密码不匹配",
"Controller.input.label": "{label} ",
"Controller.selectAll": "选择全部",
"EditForm.inputSelect.label.role": "认证用户的默认角色",
"EditForm.inputSelect.description.role": "新验证身份的用户将被赋予所选角色。",
"EditForm.inputSelect.subscriptions.label": "管理订阅配额",
"EditForm.inputSelect.subscriptions.description": "限制每个每小时IP的订阅数。",
"EditForm.inputSelect.durations.label": "持续时间",
"EditForm.inputSelect.durations.description": "用户无法订阅的时间段。",
"EditForm.inputToggle.label.email": "每个电子邮件地址一个帐户",
"EditForm.inputToggle.label.sign-up": "启用注册",
"EditForm.inputToggle.description.email": "不允许用户使用不同的认证提供者(绑定的相同的电子邮件地址)来创建多个帐户。",
"EditForm.inputToggle.description.sign-up": "当禁用OFF注册过程将被禁止。任何人无论使用任何的供应商都不可以订阅。",
"EditPage.cancel": "取消",
"EditPage.submit": "保存",
"EditPage.form.roles": "角色详情",
"EditPage.form.roles.label.description": "描述",
"EditPage.form.roles.label.name": "名称",
"EditPage.form.roles.label.users": "与此角色相关联的用户数: ({number})",
"EditPage.form.roles.name.error": "此值是必需的。",
"EditPage.header.title": "{name} ",
"EditPage.header.title.create": "创建一个新角色",
"EditPage.header.description": "{description} ",
"EditPage.header.description.create": " ",
"EditPage.notification.permissions.error": "获取权限(permission)时出错",
"EditPage.notification.policies.error": "获取鉴权策略(policies)时出错",
"EditPage.notification.role.error": "获取角色时出错",
"HeaderNav.link.advancedSettings": "高级设置",
"HeaderNav.link.emailTemplates": "电子邮件模板",
"HeaderNav.link.providers": "提供者",
"HeaderNav.link.roles": "角色和权限",
"HomePage.header.title": "角色和权限",
"HomePage.header.description": "定义用户的角色和权限。",
"InputSearch.placeholder": "搜索用户",
"List.button.roles": "添加新角色",
"List.button.providers": "添加新供应商",
"List.title.emailTemplates.singular": "{number} 电子邮件模板是可用的",
"List.title.emailTemplates.plural": "{number} 电子邮件模板是可用的",
"List.title.providers.disabled.singular": "{number} 被禁用",
"List.title.providers.disabled.plural": "{number} 被禁用",
"List.title.providers.enabled.singular": "{number} 个供应商被启用, ",
"List.title.providers.enabled.plural": "{number} 个供应商被启用, ",
"List.title.roles.singular": "{number} 个角色可用",
"List.title.roles.plural": "{number} 角色可用",
"notification.error.delete": "删除数据时出错",
"notification.error.fetch": "获取数据时出错",
"notification.error.fetchUser": "获取用户时出错",
"notification.info.emailSent": "电子邮件已发送",
"notification.success.delete": "该项已被删除",
"notification.success.submit": "设置已被更新",
"plugin.description.short": "使用基于JWT的完整身份验证过程保护API",
"plugin.description.long": "使用基于JWT的完整身份验证过程来保护API。这个插件还有一个ACL策略允许你管理用户组之间的权限。",
"Plugin.permissions.application.description": "定义所有项目的允许操作。",
"Plugin.permissions.plugins.description": "定义 {name} 插件所有允许的操作。",
"Plugins.header.title": "权限",
"Plugins.header.description": "下面只列出路由绑定的操作。",
"Policies.InputSelect.empty": "没有",
"Policies.InputSelect.label": "允许执行以下操作:",
"Policies.header.hint": "选择应用程序或插件的操作然后点击COG图标显示绑定的路由",
"Policies.header.title": "高级设置",
"Email.template.validation_email": "电子邮件地址验证",
"Email.template.reset_password": "重置密码",
"Email.template.success_register": "注册成功",
"Auth.advanced.allow_register": "",
"PopUpForm.button.cancel": "取消",
"PopUpForm.button.save": "保存",
"PopUpForm.header.add.providers": "增加新的供应商(Provider)",
"PopUpForm.header.edit.email-templates": "编辑电子邮件模版",
"PopUpForm.header.edit.providers": "编译 {provider} 供应商",
"PopUpForm.inputSelect.providers.label": "选择供应商",
"PopUpForm.Email.options.from.name.label": "Shipper name",
"PopUpForm.Email.options.from.email.label": "Shipper email",
"PopUpForm.Email.options.response_email.label": "Response email",
"PopUpForm.Email.options.object.label": "主题",
"PopUpForm.Email.options.message.label": "消息",
"PopUpForm.Email.validation_email.options.object.placeholder": "请确认您的电子邮件地址 %APP_NAME%",
"PopUpForm.Email.reset_password.options.object.placeholder": "请确认您的电子邮件地址 %APP_NAME%",
"PopUpForm.Email.success_register.options.object.placeholder": "请确认您的电子邮件地址 %APP_NAME%",
"PopUpForm.Email.validation_email.options.message.placeholder": "<p>请点击此链接验证您的帐户</p>",
"PopUpForm.Email.reset_password.options.message.placeholder": "<p>请点击此链接验证您的帐户</p>",
"PopUpForm.Email.success_register.options.message.placeholder": "<p>请点击此链接验证您的帐户</p>",
"PopUpForm.Email.options.from.email.placeholder": "johndoe@gmail.com",
"PopUpForm.Email.options.response_email.placeholder": "johndoe@gmail.com",
"PopUpForm.Email.options.from.name.placeholder": "John Doe",
"PopUpForm.Providers.enabled.label": "启用",
"PopUpForm.Providers.enabled.description": "如果禁用,用户将无法使用此供应商。",
"PopUpForm.Providers.key.label": "Client ID",
"PopUpForm.Providers.key.placeholder": "TEXT",
"PopUpForm.Providers.secret.label": "Client Secret",
"PopUpForm.Providers.secret.placeholder": "TEXT",
"PopUpForm.Providers.redirectURL.front-end.label": "重定向URL",
"PopUpForm.Providers.facebook.providerConfig.redirectURL": "Facebook应用中配置的重定向URL",
"PopUpForm.Providers.google.providerConfig.redirectURL": "Google应用中配置的重定向URL",
"PopUpForm.Providers.github.providerConfig.redirectURL": "GitHub应用中配置的重定向URL",
"PopUpForm.Providers.linkedin2.providerConfig.redirectURL": "Linkedin应用中配置的重定向URL",
"PopUpForm.Providers.twitter.providerConfig.redirectURL": "Twitter应用中配置的重定向URL",
"PopUpForm.Providers.callback.placeholder": "TEXT",
"PopUpForm.Email.email_templates.inputDescription": "如果你不确定如何使用变量, {link}",
"PopUpForm.Email.link.documentation": "看看我们的文档。"
}