{
  "plugin.description.short": "Modelize the data structure of your API.",
  "plugin.description.long":
    "Modelize the data structure of your API. Create new fields and relations in just a minute. The files are automatically created and updated in your project.",
  "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": "(Not saved)",
  "from": "from",
  "home.contentTypeBuilder.name": "Content Types",
  "home.contentTypeBuilder.description": "Create and update your own Content Types.",
  "home.emptyContentType.title": "There are no Content Types available",
  "home.emptyContentType.description":
    "Create your first Content Type to be able to retrieve data from your API.",

  "home.emptyAttributes.title": "There are no fields yet",
  "home.emptyAttributes.description": "Add your first field to your new Content Type",

  "button.contentType.create": "Create Content Type",
  "button.contentType.add": "Add Content Type",
  "button.attributes.add": "Add New Field",

  "error.validation.required": "This value input is required.",
  "error.validation.regex": "The value does not match the regex.",
  "error.validation.max": "The value is too high.",
  "error.validation.min": "The value is too low.",
  "error.validation.maxLength": "The value is too long.",
  "error.validation.minLength": "The value is too short.",
  "error.contentTypeName.taken": "This name already exists",
  "error.attribute.taken": "This field name already exists",
  "error.attribute.key.taken": "This value already exists",
  "error.attribute.sameKeyAndName": "Can't be equal",
  "error.validation.minSupMax": "Can't be superior",

  "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": "Allow multiple files",
  "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":
    "Otherwise, the value will be editable through a basic textarea field",
  "form.attribute.item.settings.name": "Settings",
  "form.attribute.item.requiredField": "Required field",
  "form.attribute.item.uniqueField": "Unique field",
  "form.attribute.item.minimum": "Minimum value",
  "form.attribute.item.minimumLength": "Minimum length",
  "form.attribute.item.maximumLength": "Maximum length",
  "form.attribute.item.maximum": "Maximum value",
  "form.attribute.item.requiredField.description":
    "You won't be able to create an entry if this field is empty",
  "form.attribute.item.uniqueField.description":
    "You won't be able to create an entry if there is an existing entry with identical content",
  "form.attribute.item.defineRelation.fieldName": "Field name",
  "form.attribute.item.customColumnName": "Custom column names",
  "form.attribute.item.customColumnName.description":
    "This is useful to rename database column names in a more comprehensive format for the API's responses",
  "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": "Default value",
  "form.attribute.settings.default.checkboxLabel": "Set to true",

  "form.button.cancel": "Cancel",
  "form.button.continue": "Continue",
  "form.button.save": "Save",

  "form.contentType.item.connections": "Connection",
  "form.contentType.item.name": "Name",
  "form.contentType.item.name.description": "Content Type names should be singular: {link}",
  "form.contentType.item.name.link.description": "Check out our documentation",
  "form.contentType.item.description": "Description",
  "form.contentType.item.description.placeholder": "Write your little description here...",
  "form.contentType.item.collectionName": "Collection Name",
  "form.contentType.item.collectionName.inputDescription":
    "Useful when the name of your Content Type and your table name differ",

  "menu.section.contentTypeBuilder.name.plural": "Content Types",
  "menu.section.contentTypeBuilder.name.singular": "Content Type",
  "menu.section.documentation.name": "Documentation",
  "menu.section.documentation.guide": "Read more about Content Types in our",
  "menu.section.documentation.guideLink": "guide.",
  "menu.section.documentation.tutorial": "Check out our",
  "menu.section.documentation.tutorialLink": "tutorial video.",

  "modelPage.contentHeader.emptyDescription.description":
    "There is no description for this 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": "Don't forget to create the table `{modelName}` in your database",
  "noTableWarning.infos": "More info",

  "notification.error.message": "An error occurred",
  "notification.info.contentType.creating.notSaved":
    "Please save your current Content Type before creating a new one",
  "notification.info.optimized": "This plugin is optimized with your localStorage",
  "notification.success.message.contentType.edit": "Your Content Type has been updated",
  "notification.success.message.contentType.create": "Your Content Type has been created",
  "notification.success.contentTypeDeleted": "The Content Type has been deleted",
  "notification.info.enumeration": "This field is not editable for the moment...😮",

  "popUpForm.attributes.string.description": "Titles, names, paragraphs, list of names",
  "popUpForm.attributes.text.description": "Descriptions, text paragraphs, articles ",
  "popUpForm.attributes.boolean.description": "Yes or no, 1 or 0, true or false",
  "popUpForm.attributes.number.description": "Everything that is number",
  "popUpForm.attributes.date.description": "Event date, opening hours",
  "popUpForm.attributes.json.description": "Data in JSON format",
  "popUpForm.attributes.media.description": "Images, videos, PDFs and other files",
  "popUpForm.attributes.relation.description": "Refers to a Content Type",
  "popUpForm.attributes.email.description": "User's email...",
  "popUpForm.attributes.password.description": "User password...",

  "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": "Add New",
  "popUpForm.edit": "Edit",
  "popUpForm.field": "Field",
  "popUpForm.create.contentType.header.title": "Add New Content Type",
  "popUpForm.choose.attributes.header.title": "Add New Field",
  "popUpForm.edit.contentType.header.title": "Edit Content Type",

  "popUpForm.navContainer.relation": "Define relation",
  "popUpForm.navContainer.base": "Base settings",
  "popUpForm.navContainer.advanced": "Advanced settings",

  "popUpRelation.title": "Relation",

  "popUpWarning.button.cancel": "Cancel",
  "popUpWarning.button.confirm": "Confirm",
  "popUpWarning.title": "Please confirm",
  "popUpWarning.bodyMessage.contentType.delete":
    "Are you sure you want to delete this Content Type?",
  "popUpWarning.bodyMessage.attribute.delete": "Are you sure you want to delete this field?",

  "table.contentType.title.plural": "Content Types are available",
  "table.contentType.title.singular": "Content Type is available",
  "table.contentType.head.name": "Name",
  "table.contentType.head.description": "Description",
  "table.contentType.head.fields": "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"
}
