Merge pull request #4406 from mhelmetag/add_en_translations_for_uuid_and_icon

Add uuid attribute translations and uuid icon for content builder
This commit is contained in:
Jim LAURIE 2019-11-06 17:28:37 +01:00 committed by GitHub
commit fc4e48ef8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -18,6 +18,7 @@
"attribute.richtext": "Rich text",
"attribute.string": "String",
"attribute.text": "Text",
"attribute.uuid": "Uuid",
"button.attributes.add": "Add New Field",
"button.attributes.add.another": "Add Another Field",
"button.contentType.add": "Add a Content Type",
@ -169,8 +170,10 @@
"popUpForm.attributes.richtext.name": "Rich text",
"popUpForm.attributes.string.description": "Titles, names, paragraphs, list of names",
"popUpForm.attributes.string.name": "String",
"popUpForm.attributes.text.description": "Descriptions, text paragraphs, articles ",
"popUpForm.attributes.text.description": "Descriptions, text paragraphs, articles",
"popUpForm.attributes.text.name": "Text",
"popUpForm.attributes.uuid.description": "Unique identifier",
"popUpForm.attributes.uuid.name": "Uuid",
"popUpForm.choose.attributes.header.title": "Add New Field",
"popUpForm.choose.attributes.header.subtitle.model": "Select a field for your content type",
"popUpForm.choose.attributes.header.subtitle.group": "Select a field for your group",

View File

@ -11,6 +11,7 @@ import relation from '../assets/icons/attributes/icon_relation.png';
import richtext from '../assets/icons/attributes/icon_text.png';
import string from '../assets/icons/attributes/icon_string.png';
import text from '../assets/icons/attributes/icon_text.png';
import uuid from '../assets/icons/attributes/icon_uuid.png';
const attributeIcons = {
boolean,
@ -26,6 +27,7 @@ const attributeIcons = {
richtext,
string,
text,
uuid,
};
export default attributeIcons;